tokens
sequence
ner_tags
sequence
[ "Why", "is", "this", "error", "occurring", "?" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "Thank", "you" ]
[ "O", "O" ]
[ "There", "are", "multiple", "things", "here", "that", "are", "not", "ok", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "First", "of", "all", ",", "you", "do", "n't", "initialize", "the", "Point", ",", "so", "it", "has", "some", "random", "data", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "random", "data", "is", "not", "so", "random", ",", "because", "in", "the", "loop", "the", "memory", "allocation", "is", "always", "the", "same", ",", "so", "the", "variable", "will", "have", "the", "data", "of", "the", "last", "loop", "." ]
[ "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", "O", "O", "O", "O", "O" ]
[ "In", "operator>>(...)", "here", "you", "have", "a", "\"", "return", "is", "\"", ",", "if", "the", "first", "char", "is", "not", "a", "'", "(", "'" ]
[ "O", "B-Code_Block", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Type", "O", "O", "O", "B-Value", "B-Value", "B-Value" ]
[ "so", "you", "jump", "out", "of", "there", "without", "setting", "p.x", "and", "p.y", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "B-Variable", "O" ]
[ "The", "function", "skip_to_character(...)", "is", "another", "thing", "that", "is", "n't", "ok", ",", "besides", "the", "fact", "that", "it", "is", "hard", "to", "read", "and", "a", "really", "bad", "way", "to", "use", "a", "for", "loop", ",", "there", "wo", "n't", "be", "a", "'", "C", "'", "when", "you", "enter", "\"", "9", ",", "99", ")", "\"", "so", "i", "guess", "here", "you", "get", "the", "\"", "No", "input", "\"", "output", "." ]
[ "O", "O", "B-Function", "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", "B-Code_Block", "O", "O", "O", "O", "O", "O", "O", "B-Value", "I-Value", "B-Value", "O", "O", "O", "B-Value", "I-Value", "I-Value", "I-Value", "I-Value", "B-Value", "O", "O", "O", "O", "O", "O", "O", "B-Value", "I-Value", "I-Value", "I-Value", "O", "O" ]
[ "And", "now", "to", "the", "for", "loop", "in", "you", "main", ":" ]
[ "O", "O", "O", "O", "B-Code_Block", "O", "O", "O", "O", "O" ]
[ "Here", "is", "what", "happens", ":" ]
[ "O", "O", "O", "O", "O" ]
[ "you", "create", "a", "Point", "p", "without", "initializing", "it" ]
[ "O", "O", "O", "B-Class", "B-Variable", "O", "O", "O" ]
[ "your", "read", "garbage", "out", "of", "the", "stream", "and", "p", "wo", "n't", "be", "set" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O" ]
[ "you", "skip", "garbage" ]
[ "O", "O", "O" ]
[ "you", "push", "your", "uninitialized", "Point", "p", "into", "the", "vector" ]
[ "O", "O", "O", "O", "B-Class", "B-Variable", "O", "O", "B-Data_Type" ]
[ "If", "you", "do", "n't", "believe", "me", "that", "there", "is", "no", "data", "in", "p", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O" ]
[ "Try", "to", "initialize", "it", "with", "0", "or", "something", "else", "and", "check", "the", "output", ":" ]
[ "O", "O", "O", "O", "O", "B-Value", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "have", "a", "process", "that", "loads", "a", "dynamic", "library", "when", "it", "starts", "(", "dlopen/dlsym", "etc", ")", ",", "and", "I", "can" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O" ]
[ "send", "some", "message", "to", "it", "while", "it", "'s", "running", "to", "let", "the", "process", "unload", "the", "previous", ".so(dlclose)", "and", "load" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-File_Type", "O", "O" ]
[ "a", "new", "one", "." ]
[ "O", "O", "O", "O" ]
[ "Here", "the", "question", "becomes", ",", "while", "the", "process", "is", "running", ",", "if", "I", "transfer", "a", "new", ".so", "using", "nc", "like", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-File_Type", "O", "B-Code_Block", "O", "O" ]
[ "If", "I", "give", "nc", "the", "same", "filename", "which", "has", "been", "loaded", "by", "the", "process", ",", "then", "the", "process", "got", "segv" ]
[ "O", "O", "O", "B-Code_Block", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Error_Name" ]
[ "immediately", "after", "the", "above", "command", "being", "executed", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Another", "case", "that", "will", "cause", "process", "crash", "is", "when", "I", "package", "the", ".so", "file", "into", "an", "rpm", "package", "and" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-File_Type", "O", "O", "O", "B-Application", "O", "O" ]
[ "the", ".so", "file", "in", "the", "rpm", "is", "the", "same", ",", "then", "yum", "update", "XXX", "will", "cause", "the", "process", "crash", "too", "." ]
[ "O", "B-File_Type", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "B-Application", "O", "B-Value", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "'ve", "been", "told", "that", "there", "'s", "a", "way", "to", "load", "the", ".so", "file", "into", "memory", "to", "avoid", "the", "problem", ",", "but", "failed" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-File_Type", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "to", "find", "any", "resource", "related", "to", "it", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Any", "thoughts", "will", "be", "thankful", "." ]
[ "O", "O", "O", "O", "O", "O" ]
[ "I", "get", "this", "error", "when", "I", "try", "to", "import", "a", "file", "outside", "webpack", "root", "directory" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "B-File_Name", "O" ]
[ "I", "have", "something", "like", "this" ]
[ "O", "O", "O", "O", "O" ]
[ "in", "main.js", "I", "'m", "trying", "to", "import", "Shared", "from", "'", "../shared/index", "'" ]
[ "O", "B-File_Name", "O", "O", "O", "O", "B-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block" ]
[ "I", "tried", "to", "include", "this", "shared", "directory", "in", "all", "my", "loaders", "but", "still", "no", "luck" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "You", "need", "to", "install", "the", "plugin", "\"", "transform-runtime", "\"" ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Application", "O" ]
[ "I", "need", "to", "get", "the", "14", "days", "average", "Col", "1", "and", "update", "Col", "2", "of", "the", "same", "table", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "I-Variable", "O", "O", "B-Variable", "I-Variable", "O", "O", "O", "B-Data_Structure", "O" ]
[ "So", "if", "you", "look", "at", "Col", "2", ",", "I", "need", "to", "get", "that", "18.2", "%", "average", "percentage", "with", "Col", "1", "data", "between", "10/29", "and", "11/15", "date", "range", "on", "column", "today", "." ]
[ "O", "O", "O", "O", "O", "B-Variable", "I-Variable", "O", "O", "O", "O", "O", "O", "B-Value", "I-Value", "O", "O", "O", "B-Variable", "I-Variable", "O", "O", "B-Value", "O", "B-Value", "O", "O", "O", "B-Data_Structure", "B-Value", "O" ]
[ "I", "am", "so", "confused", "as", "to", "how", "to", "group", "this", "kind", "of", "function", "in", "an", "update", "statement", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Code_Block", "O", "O" ]
[ "Anyone", "has", "a", "clue", "?" ]
[ "O", "O", "O", "O", "O" ]
[ "TABLE", "1" ]
[ "B-Variable", "I-Variable" ]
[ "It", "is", "recommended", "to", "store", "the", "average", "value", "as", "decimal", "instead", "of", "varchar", ",", "as", "%", "can", "be", "added", "in", "presentation", "layer", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Type", "O", "O", "B-Data_Type", "O", "O", "B-Code_Block", "O", "O", "O", "O", "O", "O", "O" ]
[ "Here", "is", "the", "query", "that", "does", "the", "calculation", ",", "substring", "and", "cast", "was", "needed", "as", "average", "column", "is", "varchar", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "O", "B-Data_Type", "O" ]
[ "EDIT", ":" ]
[ "O", "O" ]
[ "removed", "substring", "logic", ",", "as", "they", "are", "float", "columns", ",", "as", "per", "OP", "comments", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Data_Type", "B-Data_Structure", "O", "O", "O", "O", "O", "O" ]
[ "EDIT", ":" ]
[ "O", "O" ]
[ "As", "this", "needs", "to", "be", "done", "for", "each", "date", ",", "it", "can", "be", "done", "using", "cursor" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Type", "O", "O", "O", "O", "O", "O", "B-Code_Block" ]
[ "I", "ca", "n't", "made", "Swipe", "action", "work", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "did", "browsed", "through", "the", "web", "for", "a", "few", "days", "and", "found", "many", "similar", "questions", "but", "there", "is", "no", "working", "answer", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Also", "I", "have", "tried", "TouchAction", "class", ",", "does", "n't", "work", "as", "well", "." ]
[ "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "have", "Appium", "Version", "1.4.13", "(", "Draco", ")", "and", "using", "Java", ",", "TestNG", "framework", "." ]
[ "O", "O", "B-Application", "B-Version", "I-Version", "O", "O", "O", "O", "O", "B-Language", "O", "B-Library", "O", "O" ]
[ "btw", "I", "made", "scrolling", "work", "using", "(", "you", "can", "use", "the", "same", "logic", "as", "a", "pull", "to", "refresh", ")", "here", "is", "code", "sample", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "//Method", "names", "explain", "themselves", "." ]
[ "O", "O", "O", "O", "O" ]
[ "I", "hope", "it", "works", "." ]
[ "O", "O", "O", "O", "O" ]
[ "driver.swipe(startingXCoordinate,StartingYCoordinate,EndXCoordinate,EndYCoordinate,timeForSwipe)", ";" ]
[ "B-Function", "I-Function" ]
[ "here", ",", "you", "are", "swipe", "from", "100th", "X", "coordinate", "to", "450th", "X", "coordinate.that", "is", "why", "Y", "coordinates", "are", "same", "for", "starting", "and", "ending", "points", "(", "200", "and", "200", ")", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "B-Variable", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "last", "parameter", "2", "indicates", ",", "swipe", "action", "will", "performs", "2", "seconds", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Actually", "we", "have", "to", "mention", "2000", "milliseconds", "for", "2", "seconds", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "So", ",", "I", "have", "an", "image", "like", "this", ":", "http://imgur.com/qBGvP" ]
[ "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O" ]
[ "It", "always", "looks", "like", "that", ",", "although", "the", "numbers", "might", "differ", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "It", "'s", "a", "gif", ",", "the", "background", "is", "transparent", ",", "and", "the", "numbers", "white", "." ]
[ "O", "O", "O", "B-File_Type", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "need", "some", "way", "to", "parse", "it", "to", "numbers", "to", "be", "used", "in", "a", "script", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Any", "ideas", "how", "I", "can", "solve", "this", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "If", "the", "font", "is", "monospace", "and", "the", "position", "of", "the", "number", "in", "the", "image", "is", "constant", ",", "it", "should", "be", "trivial", "to", "break", "down", "the", "image", "into", "individual", "digits", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O" ]
[ "Then", ",", "output", "each", "image", "to", "some", "format", "(", "PNG", "is", "probably", "best", ")", "and", "compare", "the", "files", "." ]
[ "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "B-File_Type", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "This", "works", "best", "if", "you", "have", "the", "same", "script", "save", "known", "digits", "and", "then", "compare", "them", "to", "the", "actual", "case", "data", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "If", "this", "is", "not", "possible", ",", "you", "will", "have", "to", "do", "a", "pixel-for-pixel", "comparison", ",", "which", "is", "n't", "that", "big", "of", "a", "problem", "on", "such", "small", "images", "." ]
[ "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", "B-User_Interface_Element", "O" ]
[ "Essentially", "you", "'re", "making", "an", "extremely", "primitive", "OCR", "by", "having", "a", "program", "that", "'s", "along", "the", "lines", "of", "\"", "this", "is", "what", "the", "digits", "look", "like", ",", "so", "what", "number", "is", "this", "?", "\"" ]
[ "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", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "have", "a", "situation", "where", "I", "have", "2", "tables", "'", "users", "'", "and", "'", "roles", "'", "table", "where", "they", "are", "related", "to", "each", "other", "by", "many", "to", "many", "relationship", ",", "many", "to", "many", "relationship", "stored", "in", "the", "3rd", "table", "called", "'", "UserRoles", "'", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "O", "B-Variable", "O", "O", "O", "B-Variable", "O", "B-Data_Structure", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "O", "O", "B-Variable", "O", "O" ]
[ "I", "want", "to", "write", "a", "query", "to", "show", "distinct", "users", "but", "show", "all", "the", "roles", "associated", "with", "a", "particular", "user", "in", "one", "single", "row", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "O" ]
[ "For", "example", ",", "the", "3", "tables", "as", "follows", ":" ]
[ "O", "O", "O", "O", "O", "B-Data_Structure", "O", "O", "O" ]
[ "so", "how", "can", "I", "write", "a", "query", "that", "displays", "a", "row", "as", "below", "with", "roles", "separated", "with", "semicolons", "for", "every", "users", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "If", "we", "are", "to", "believe", "your", "question", "exactly", "and", "assume", "you", "are", "using", "MySQL", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O" ]
[ "I", "have", "my", "web", "application", "asp.net", "everything", "is", "working", "well", "but", "when", "i", "publish", "it", "from", "another", "computer", "to", "localhost", "it", "throws", "an", "error" ]
[ "O", "O", "O", "O", "O", "B-Library", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Device", "O", "O", "O", "O", "O", "O" ]
[ "and", "also", "Uncaught", "ReferenceError", ":", "WebForm_FireDefaultButton", "is", "not", "defined" ]
[ "O", "O", "B-Output_Block", "I-Output_Block", "I-Output_Block", "I-Output_Block", "I-Output_Block", "I-Output_Block", "I-Output_Block" ]
[ "in", "my", "code", "behind", "i", "have", "textbox1.Focus()" ]
[ "O", "O", "O", "O", "O", "O", "B-Function" ]
[ "so", "what", "'s", "the", "problem", "and", "how", "to", "fix", "it", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "This", "happens", "also", "when", "webresource.axd", "file", "is", "inaccessible", "." ]
[ "O", "O", "O", "O", "B-File_Name", "O", "O", "O", "O" ]
[ "Sometimes", "Firewall", "policy", "of", "Web", "Server", "can", "create", "this", "issue", "." ]
[ "O", "B-Application", "O", "O", "B-Application", "I-Application", "O", "O", "O", "O", "O" ]
[ "Please", "ensure", "this", "file", "is", "accessible", "." ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "If", "this", "file", "is", "accessible", "then", "look", "solutions", "provided", "in", "other", "answers", "of", "this", "question", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Try", "to", "turn", "off", "the", "ISAPI", "filters", "." ]
[ "O", "O", "O", "O", "O", "B-File_Name", "I-File_Name", "O" ]
[ "I", "am", "working", "with", "two", "branches", "test", "and", "main", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Code_Block", "O", "B-Code_Block", "O" ]
[ "So", ",", "being", "on", "the", "main", "branch", ",", "I", "did", ":" ]
[ "O", "O", "O", "O", "O", "B-Code_Block", "O", "O", "O", "O", "O" ]
[ "And", "everything", "went", "fine", "." ]
[ "O", "O", "O", "O", "O" ]
[ "All", "the", "changes", "were", "merged", "." ]
[ "O", "O", "O", "O", "O", "O" ]
[ "Then", "to", "push", "it", "to", "the", "remote", "main", ",", "I", "did", ":" ]
[ "O", "O", "B-Code_Block", "O", "O", "O", "O", "B-Code_Block", "O", "O", "O", "O" ]
[ "But", "it", "seems", "like", "that", "did", "nothing", ",", "it", "said", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "do", "n't", "think", "it", "should", "be", "showing", "zero", "above", "as", "Total", "if", "the", "push", "did", "go", "through", "fine", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Code_Block", "O", "O", "O", "O", "O" ]
[ "How", "can", "I", "push", "my", "main", "branch", "?" ]
[ "O", "O", "O", "O", "O", "B-Code_Block", "O", "O" ]
[ "That", "just", "means", "git", "does", "not", "write", "any", "objects", "." ]
[ "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O" ]
[ "That", "happens", "when", "all", "objects", "are", "already", "on", "remote", "and", "when", "you", "merge", "you", "just", "move", "label", "'", "main", "'", "to", "the", "latest", "commit", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Code_Block", "O", "O", "O", "O", "B-Code_Block", "O" ]
[ "I", "just", "made", "a", "quick", "test", "to", "prove", "that", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "have", "implemented", "the", "jQuery", "UI", "Menu", "on", "this", "page", ":", "http://dormfair.com/about.php" ]
[ "O", "O", "O", "O", "B-Library", "B-Class", "I-Class", "O", "O", "O", "O", "O" ]
[ "As", "you", "can", "see", ",", "the", "border", "color", "everywhere", "on", "the", "website", "is", "light", "blue", "(", "#B7DDF2", ")" ]
[ "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "BUT", "the", "border", "color", "in", "the", "jQuery", "UI", "menu", "is", "grey", "." ]
[ "O", "O", "B-User_Interface_Element", "O", "O", "O", "B-Library", "B-Class", "I-Class", "O", "B-Value", "O" ]
[ "I", "'ve", "been", "trying", "to", "change", "that", "grey", "to", "color", "to", "#B7DDF2", "for", "a", "long", "time", "to", "no", "avail", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "'ve", "searched", "the", "web", "and", "StackOverflow", "as", "well", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Website", "O", "O", "O" ]
[ "Hope", "someone", "can", "help", "!" ]
[ "O", "O", "O", "O", "O" ]
[ "Your", "menu", "'s", "border", "color", "is", "being", "called", "from", "the", ".ui-widget-content", "class", "on", "line", "800", "in", "jquery-ui.css", "." ]
[ "O", "B-User_Interface_Element", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "B-File_Name", "O" ]
[ "You", "can", "modify", "it", "from", "there", "." ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "was", "able", "to", "fix", "it", "by", "adding", "border", ":", "1px", "solid", "#B7DDF2", "to", "the", "CSS", "of", "nav", "(", "or", ".ui-menu", "ui-widget", "ui-widget-content", "ui-corner-all", ")", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "O", "O", "B-Language", "O", "B-Code_Block", "O", "O", "B-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "O", "O" ]
[ "(", "CSS", ")" ]
[ "O", "B-Language", "O" ]
[ "or" ]
[ "O" ]