tokens
list
ner_tags
list
[ "Model", "Generated", "automatically", "using", "http://json2csharp.com/" ]
[ "O", "O", "O", "O", "O" ]
[ "I", "hope", "this", "complete", "example", "helps", "you", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Have", "a", "good", "day", "!" ]
[ "O", "O", "O", "O", "O" ]
[ "I", "have", "a", "table", "with", "players", "and", "scores", "(", "Name:Mike", "Score:10", ",", "Name:Peter", "Score:5", ",", "etc", ")", "and", "a", "View", "with", "3", "pictures", "of", "a", "bronze", ",", "silver", "and", "gold", "medal", "." ]
[ "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "B-Value", "I-Value", "O", "B-Value", "I-Value", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "B-Value", "O", "B-Value", "O", "B-Value", "O", "O" ]
[ "Underneath", "each", "picture", "I", "want", "to", "display", "the", "playername(s)", "of", "the", "winners", "each", "week", "/", "round", "." ]
[ "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Could", "well", "be", "that", "there", "are", "multiple", "bronze", ",", "silver", "or", "gold", "scores", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "In", "my", "TotalViewModel", "I", "have", "an", "ObservableCollection", "for", "all", "the", "Total", "Scores", ":" ]
[ "O", "O", "B-Class", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O" ]
[ "I", "wanted", "to", "use", "a", "IEnumerable", "because", "of", "the", "multiple", "numbers", "one", ",", "two", ",", "three", "score", ":" ]
[ "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "DataContext", "of", "my", "View", "is", "working", "fine", "for", "the", "straightforward", "bindings", ",", "it", "'s", "set", "in", "the", "UserControl", ":" ]
[ "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O" ]
[ "But", "the", "results", "are", "n't", "displayed", "in", "my", "DataGrid", "(", "guess", "I", "'m", "making", "a", "stupid", "mistake", "here", ")", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "So", "I", "have", "2", "questions", ":" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "How", "do", "I", "get", "the", "desired", "collection", "of", "number", "1/2/3", "scores", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "How", "do", "I", "get", "them", "in", "my", "View", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Thanks", "." ]
[ "O", "O" ]
[ "Well", "I", "wont", "get", "into", "the", "data", "binding", "bit", "but", "a", "linq", "query", "to", "extract", "the", "top", "three", "could", "be", "something", "like", "this", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Library", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "You", "'re", "binding", "to", "FirstOne", "so", "you", "need", "to", "do", "a", "propertychanged", "for", "that", "property", "." ]
[ "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O" ]
[ "The", "following", "program" ]
[ "O", "O", "O" ]
[ "fails", "to", "compile", "on", "both", "g++", "5.4", "and", "clang", "3.8", "(", "Ubuntu", "64-bit", ")", "." ]
[ "O", "O", "O", "O", "O", "B-Application", "B-Version", "O", "B-Application", "B-Version", "O", "B-Operating_System", "B-Version", "O", "O" ]
[ "g++", "output" ]
[ "B-Application", "O" ]
[ "clang", "output" ]
[ "B-Application", "O" ]
[ "The", "diagnostics", "vary", "a", "little", "in", "form", ",", "but", "are", "related", "to", "the", "same", "issue", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "There", "is", "a", "clash", "with", "the", "standard", "C", "function", "clock", "and", "the", "struct", "of", "the", "same", "name", "defined", "in", "the", "program", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "B-Function", "O", "O", "B-Data_Structure", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "relevant", "declaration", "from", "time.h", ":" ]
[ "O", "O", "O", "O", "B-File_Name", "O" ]
[ "The", "question", "is", ":", "should", "n't", "such", "symbols", "be", "in", "the", "std", "namespace", ",", "since", "the", "program", "includes", "<ctime>", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "B-Library", "O" ]
[ "Interestingly", ",", "that", "very", "declaration", "sits", "a", "couple", "of", "lines", "after", "a", "macro", "which", "reads", "__BEGIN_NAMESPACE_STD", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Code_Block", "O" ]
[ "In", "addition", ",", "in", "<ctime>", ",", "one", "can", "see", ":" ]
[ "O", "O", "O", "O", "B-Library", "O", "O", "O", "O", "O" ]
[ "Is", "there", "some", "kind", "of", "bug", "here", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Thank", "you", "." ]
[ "O", "O", "O" ]
[ "Yes", ",", "and", "they", "are", "." ]
[ "O", "O", "O", "O", "O", "O" ]
[ "Unfortunately", ",", "the", "C++", "standard", "also", "allows", "implementations", "to", "put", "names", "from", "C-library", "derived", "headers", "in", "the", "global", "namespace", "." ]
[ "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "O", "B-Library", "O", "B-File_Type", "O", "O", "B-Data_Type", "O", "O" ]
[ "In", "this", "case", ",", "you", "get", "std::clock", "and", "::clock", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Library", "O", "B-Library", "O" ]
[ "This", "applies", "to", "all", "the", "<c*>", "C++", "headers", "with", "a", "corresponding", "<*.h>", "version", "in", "C", "." ]
[ "O", "O", "O", "O", "O", "B-Library", "B-Language", "B-File_Type", "O", "O", "O", "B-Library", "O", "O", "B-Language", "O" ]
[ "I", "want", "to", "open", "a", "pdf", "file", "on", "my", "html", "document", ",", "but", "the", "file", "wo", "n't", "open", "." ]
[ "O", "O", "O", "O", "O", "B-File_Type", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Chrome", "said" ]
[ "B-Application", "O" ]
[ "Please", "help", "." ]
[ "O", "O", "O" ]
[ "the", "pdf", "and", "the", "html", "are", "on", "the", "same", "location", "on", "the", "localhost", "of", "my", "computer", "." ]
[ "O", "B-File_Type", "O", "O", "B-File_Type", "O", "O", "O", "O", "O", "O", "O", "B-Code_Block", "O", "O", "B-Device", "O" ]
[ "After", "Struggling", "with", "this", "problem", "i", "came", "to", "solution", ",", "By", "Referring", "this", "Link", "Here", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Hope", "this", "help", "someone", "." ]
[ "O", "O", "O", "O", "O" ]
[ "JS", ":" ]
[ "B-Language", "O" ]
[ "HTML" ]
[ "B-Language" ]
[ "below", "code", "are", "working", "for", "PDF", "in", "chrome", "browser" ]
[ "O", "O", "O", "O", "O", "B-File_Type", "O", "B-Application", "I-Application" ]
[ "I", "have", "a", "Gridview", "and", "the", "columns", "defined", "like", "below", "." ]
[ "O", "O", "O", "B-Class", "O", "O", "B-HTML_XML_Tag", "O", "O", "O", "O" ]
[ "When", "I", "run", "the", "program", "I", "get", "the", "error" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Can", "anyone", "help", "me", "solving", "this", "?" ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "Nothing", "seems", "to", "be", "wrong", "with", "your", "markup", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "only", "thing", "I", "would", "recommend", "is", "ending", "the", "Label", "control", "immediately", "and", "trying", "it", "again", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-HTML_XML_Tag", "O", "O", "O", "O", "O", "O", "O" ]
[ "In", "the", "past", "I", "have", "seen", "issues", "when", "Tab", ",", "Â", "or", "some", "unintentional", "characters", "come", "in", "between", "some", "of", "the", "templated", "controls", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Keyboard_IP", "O", "B-Keyboard_IP", "I-Keyboard_IP", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Check", "if", "you", "have", "any", "such", "characters", "by", "redoing", "every", "line", "from", "scratch", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "This", "question", "is", "a", "little", "old", ",", "but", "for", "the", "others", "who", "encounter", "this", "problem", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "This", "problem", "can", "caused", "by", "not", "putting", "white", "space", "between", "properties", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "For", "example", ":" ]
[ "O", "O", "O" ]
[ "I", "wanted", "to", "know", "whether", "it", "is", "possible", "to", "copy", "particular", "div", "'s", "content", "as", "an", "input", "element", "'s", "value", "automatically", "when", "page", "is", "loaded", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-HTML_XML_Tag", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O" ]
[ "base", "on", "brso05", "'s", "answer", "," ]
[ "O", "O", "B-User_Name", "O", "O", "O" ]
[ "document.getElementById(\"myInput\").value", "=", "document.getElementById(\"myDiv\").innerHTML", ";" ]
[ "B-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block" ]
[ "Maybe", "something", "like", "this", ":" ]
[ "O", "O", "O", "O", "O" ]
[ "I", "have", "the", "list", "of", "records", "in", "the", "subject", "table", "then", "I", "want", "to", "add", "to", "group_concat", "of", "yii2", "bind", "methods", "." ]
[ "O", "O", "O", "B-Data_Structure", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "B-Library", "O", "O", "O" ]
[ "but", "I", "have", "to", "get", "the", "single", "value", "only", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "want", "result", "is", "\"", "English", ",", "maths", "\"", "but", "my", "result", "is", "\"", "English", "\"", "only", "?" ]
[ "O", "O", "O", "O", "B-Value", "I-Value", "I-Value", "I-Value", "I-Value", "O", "O", "O", "O", "B-Value", "I-Value", "I-Value", "O", "O" ]
[ "you", "should", "assign", "a", "name", "to", "the", "result", "using", "alias", ".", ".", "eg", "g_sname" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable" ]
[ "you", "could", "also", "try", "using", "column()" ]
[ "O", "O", "O", "O", "O", "B-Function" ]
[ "I", "got", "an", "HTML", "with", "a", "button", "show", "details", "which", "opens", "up", "a", "lot", "of", "information", "." ]
[ "O", "O", "O", "B-Language", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "need", "to", "convert", "that", "page", "into", "pdf", ",", "therefore", "I", "use", "wkhtmltopdf", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-File_Type", "O", "O", "O", "O", "B-Application", "O" ]
[ "The", "problem", "is", "in", "the", "PDF", "the", "details", "wo", "n't", "show", "up", "because", "the", "button", "was", "n't", "clicked", "." ]
[ "O", "O", "O", "O", "O", "B-File_Type", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O" ]
[ "The", "second", "problem", "is", "I", "ca", "n't", "change", "the", "html", "because", "it", "is", "automatically", "generated", "by", "a", "tool", "called", "OpenSCAP", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O" ]
[ "Maybe", "you", "got", "an", "idea", "how", "I", "can", "show", "this", "details", "in", "the", "pdf", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-File_Type", "O" ]
[ "I", "'m", "working", "on", "SLES", "11", "." ]
[ "O", "O", "O", "O", "B-Operating_System", "B-Version", "O" ]
[ "my", "command", "is" ]
[ "O", "O", "O" ]
[ "So", "I", "am", "using", "the", "code", "that", "I", "got", "off", "W3C", "here", ":", "http://www.w3schools.com/php/php_ajax_database.asp" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Website", "O", "O", "O" ]
[ "modified", "it", "to", "fit", "with", "my", "file", "names", "and", "database", "etc", ",", "however", "I", "am", "having", "a", "weird", "issue", "with", "echoing", "my", "responses", "to", "look", "correct", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "For", "every", "product", "that", "collects", "from", "the", "product", "database", "it", "needs", "to", "print", "it", "in", "a", "section", "tag", "like", "so", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-HTML_XML_Tag", "O", "O", "O", "O" ]
[ "However", "this", "code", "is", "n't", "working", "anymore", ",", "the", "closest", "I", "have", "gotten", "is", "it", "to", "only", "display", "one", "and", "then", "breaks", "the", "rest", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "the", "PHP", "echo", "is", "being", "returned", "into", "the", "following", "div", "tag" ]
[ "O", "B-Language", "B-Function", "O", "O", "O", "O", "O", "O", "B-HTML_XML_Tag", "O" ]
[ "so", "I", "have", "tried", "changing", "my", "CSS", "to", "stuff", "like", "article", ">", ".txtHint", ">", "#sideWays", "or", "even", "just", "making", "the", "#sideWays", "css", "the", "same", "as", ".txtHint", "to", "skip", "the", ">", "#sideWays", "...
[ "O", "O", "O", "O", "O", "O", "B-Language", "O", "O", "O", "B-HTML_XML_Tag", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Lang...
[ "I", "'m", "not", "sure", "why", "but", "changing", "the", "keyword", "echo", "to", "print", "fixed", "the", "issue", "of", "it", "not", "recognising", "my", "html", "tags", "and", "applying", "the", "CSS", "to", "them", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Code_Block", "O", "B-Code_Block", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "B-Language", "O", "O", "O" ]
[ "Trying", "to", "create", "an", "smart", "watch", "application", "opening", "a", "web", "view", "which", "runs", "some", "javascript", "code", "." ]
[ "O", "O", "O", "O", "B-Device", "I-Device", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "O" ]
[ "I", "get", "a", "crazy", ":" ]
[ "O", "O", "O", "O", "O" ]
[ "Here", "is", "MWE", "." ]
[ "O", "O", "O", "O" ]
[ "MainActivity.java", ":" ]
[ "B-File_Name", "O" ]
[ "activity_main.xml", ":" ]
[ "B-File_Name", "O" ]
[ "And", "here", "is", "the", "full", "error", "I", "get", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "have", "checked", "other", "threads", "about", "this", "error", "but", "I", "am", "in", "particular", "confused", "about", "this", "\"", "line", "0", "\"", "on", "the", "xml", "file", "error", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-File_Type", "O", "O", "O" ]
[ "Would", "anyone", "know", "why", "this", "is", "happening", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Thanks", "in", "advance" ]
[ "O", "O", "O" ]
[ "Android", "Wear", "does", "not", "support", "WebView", "." ]
[ "B-Operating_System", "I-Operating_System", "O", "O", "O", "B-Class", "O" ]
[ "More", "concretely", ",", "examine", "the", "original", "exception", ":" ]
[ "O", "O", "O", "O", "O", "O", "B-Class", "O" ]
[ "Since", "Android", "4.4", "or", "thereabouts", ",", "WebView", "is", "provided", "by", "the", "\"", "System", "WebView", "\"", "app", ",", "which", "means", "Android", "has", "to", "do", "some", "gyrations", "to", "get", "its", "hand", "on", "the", "gut...
[ "O", "B-Operating_System", "B-Version", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "B-Application", "I-Application", "O", "O", "O", "O", "O", "B-Operating_System", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", ...
[ "Here", ",", "NullWebViewFactoryProvider", "means", "\"", "we", "do", "not", "have", "a", "System", "WebView", "to", "use", "\"", "." ]
[ "O", "O", "B-Error_Name", "O", "O", "O", "O", "O", "O", "O", "B-Application", "I-Application", "O", "O", "O", "O" ]
[ "I", "have", "an", "input", "field", "that", "is", "setting", "the", "interval", "in", "days", "to", "run", "a", "script", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "'m", "looking", "for", "a", "way", "to", "set", "the", "cronjob", "command", "(", "ie", ":", "*", "*", "*", "*", "*", ")", "using", "a", "PHP", "based", "on", "the", "number", "of", "days", "set", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "B-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Is", "there", "a", "way", "to", "do", "this", "or", "does", "it", "have", "to", "be", "manually", "setup", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Something", "like", ":" ]
[ "O", "O", "O" ]
[ "if", "i", "understand", "you", "correct", "." ]
[ "O", "O", "O", "O", "O", "O" ]
[ "you", "want", "a", "function", "that", "given", "amount", "of", "days", "will", "return", "the", "string", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Type", "O" ]
[ "*", "/5", "*", "*", "*", "*", "/home/user/test.pl" ]
[ "B-File_Name", "I-File_Name", "I-File_Name", "I-File_Name", "I-File_Name", "I-File_Name", "I-File_Name" ]
[ ". ", "-", "minute", "(", "0", "-", "59", ")" ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "|", ". --", "-", "hour", "(", "0", "-", "2", "3)" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Value" ]
[ "|", "|", ". ----", "-", "day", "of", "month", "(", "1", "-", "3", "1)" ]
[ "O", "O", "O", "O", "O", "O", "B-Value", "I-Value", "I-Value", "I-Value", "I-Value", "I-Value" ]
[ "|", "|", "|", ". -", "-", "month", "(", "1", "-", "1", "2)", "OR", "jan", ",", "feb", ",", "mar", ",", "apr", "..", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Value", "I-Value", "I-Value", "I-Value", "I-Value", "I-Value", "I-Value", "O", "B-Value", "O", "B-Value", "O", "B-Value", "I-Value", "I-Value" ]
[ "|", "|", "|", "|", ".----", "-", "day", "of", "week", "(", "0", "-", "6", ")", "(", "Sunday", "=", "0", "or", "7", ")", "OR", "sun", ",", "mon", ",", "tue", ",", "wed", ",", "thu", ",", "fri", ",", "sat" ]
[ "O", "O", "O", "O", "O", "O", "B-Value", "I-Value", "I-Value", "I-Value", "I-Value", "I-Value", "I-Value", "I-Value", "O", "B-Value", "I-Value", "I-Value", "O", "B-Value", "O", "O", "B-Value", "O", "B-Value", "O", "B-Value", "O", "B-Value", "O", "B-Value",...
[ "|", "|", "|", "|", "|" ]
[ "O", "O", "O", "O", "O" ]