tokens
sequence
ner_tags
sequence
[ "Player1", "____playerScore1" ]
[ "O", "O" ]
[ "row+", "1", "." ]
[ "O", "O", "O" ]
[ "Player2", "____playerScore2" ]
[ "O", "O" ]
[ "row+", "1", "." ]
[ "O", "O", "O" ]
[ "Player3", "____playerScore3" ]
[ "O", "O" ]
[ "......", "." ]
[ "O", "O" ]
[ "Thank", "you", "for", "your", "help", "," ]
[ "O", "O", "O", "O", "O", "O" ]
[ "Harry", "." ]
[ "B-User_Name", "O" ]
[ "Assuming", "you", "'re", "talking", "about", "a", "UITable", "..", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Class", "O", "O" ]
[ "I", "'m", "using", "this", "approach", "in", "a", "current", "project", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Creating", "a", "grid", "view", "in", "iOS" ]
[ "O", "O", "O", "O", "O", "B-Operating_System" ]
[ "It", "'s", "very", "straightforward", ",", "assuming", "you", "know", "your", "way", "around", "table", "controllers", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "code", "on", "the", "blog", "post", "explains", "how", "it", "'s", "put", "together", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "For", "each", "row", ",", "you", "simply", "setup", "the", "cells", "." ]
[ "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O" ]
[ "Checkout", "UITableView", ":" ]
[ "O", "B-Class", "O" ]
[ "http://www.littlecomputers.net/2009/?page_id=549" ]
[ "O" ]
[ "http://www.icodeblog.com/2008/08/08/iphone-programming-tutorial-populating-uitableview-with-an-nsarray/" ]
[ "O" ]
[ "And", "also", "customizing", "the", "table", "view", "cells", ":" ]
[ "O", "O", "O", "O", "B-Class", "I-Class", "B-User_Interface_Element", "O" ]
[ "http://cocoawithlove.com/2009/04/easy-custom-uitableview-drawing.html" ]
[ "O" ]
[ "Hope", "those", "helps" ]
[ "O", "O", "O" ]
[ "edit", ":", "I", "pasted", "the", "wrong", "link", "in", "my", "initial", "post", "(", "one", "for", "mono", "touch", "-", "meant", "to", "include", "on", "for", "UITableView", "over", "array", ")" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "I-Application", "O", "O", "O", "O", "O", "O", "B-Class", "O", "B-Data_Structure", "O" ]
[ "I", "have", "seen", "too", "much", "C#", "and", "C++", "code", "where", "the", "variable", "naming", "convention", "seems", "to", "ask", "programmers", "to", "write", "variable", "names", "using", "underscore", "before", "the", "text", "of", "the", "variable", "." ]
[ "O", "O", "O", "O", "O", "B-Language", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "e.gr", "." ]
[ "O", "O" ]
[ "What", "'s", "the", "rationale", "supporting", "that", "convention", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "Microsoft", "Guidelines", "for", "member", "naming", "specifies", "that", "you", "do", "not", "use", "prefixes", "for", "fields", "." ]
[ "O", "B-Website", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "You", "can", "read", "Microsoft", "'s", "guidelines", "for", "names", "here", "." ]
[ "O", "O", "O", "B-Website", "O", "O", "O", "O", "O", "O" ]
[ "This", "just", "applies", "to", "C#", ",", "of", "course", "." ]
[ "O", "O", "O", "O", "B-Language", "O", "O", "O", "O" ]
[ "In", "C#", "I", "usually", "prefix", "with", "_", "private", "fields", "but", "never", "local", "variables", "." ]
[ "O", "B-Language", "O", "O", "O", "O", "B-Value", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "rationale", "behind", "this", "is", "that", "when", "I", "need", "a", "private", "variable", "I", "type", "_", "and", "the", "Intellisense", "filters", "the", "list", "and", "it", "is", "easier", "to", "find", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Value", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "This", "way", "I", "am", "also", "able", "to", "distinguish", "between", "private", "from", "local", "variables", "and", "I", "no", "longer", "need", "to", "type", "this.variablename", "for", "class", "fields", "but", "simply", "_variablename", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "B-Variable", "O" ]
[ "I", "want", "to", "show", "a", "note/label", "on", "my", "tableview", "background", "when/if", "there", "is", "no", "data", "to", "load", ",", "or", "data", "is", "being", "fetched", "etc", "." ]
[ "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "B-Class", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "ca", "n't", "see", "what", "am", "I", "doing", "wrong", "here", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Xcode", "is", "showing", "a", "warning", "\"", "Will", "never", "be", "executed", "\"", "on", "this", "line", "of", "code", ":", "if", "mostUpTodateNewsItemsFromRealm", "?", ".", "count", "<", "1", "{" ]
[ "B-Application", "O", "O", "O", "O", "B-Output_Block", "I-Output_Block", "I-Output_Block", "I-Output_Block", "I-Output_Block", "I-Output_Block", "O", "O", "O", "O", "O", "O", "B-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block" ]
[ "Here", "is", "the", "method", "." ]
[ "O", "O", "O", "O", "O" ]
[ "Your", "code", "first", "created", "a", "constant", ":" ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "And", "then", "you", "check", "whether", "it", "is", "less", "than", "1", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Value", "O" ]
[ "Since", "it", "is", "a", "constant", ",", "it", "will", "never", "change", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "This", "means", "that", "the", "if", "clause", "will", "always", "be", "executed", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Thus", ",", "the", "else", "clause", "will", "never", "be", "executed", "." ]
[ "O", "O", "O", "B-Code_Block", "O", "O", "O", "O", "O", "O" ]
[ "So", "first", "you", "need", "to", "make", "this", "constant", "variable", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Then", "just", "change", "this", ":" ]
[ "O", "O", "O", "O", "O" ]
[ "to", "this", ":" ]
[ "O", "O", "O" ]
[ "This", "way", ",", "numberOFChannelSubscribedToIs", "can", "be", "some", "number", "other", "than", "0", "." ]
[ "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "B-Value", "O" ]
[ "And", "the", "else", "clause", "can", "be", "executed", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "var", "and", "let", "are", "very", "different", "!" ]
[ "B-Data_Type", "O", "B-Data_Type", "O", "O", "O", "O" ]
[ "Any", "suggestion", "please", ".......", "." ]
[ "O", "O", "O", "O", "O" ]
[ "This", "is", "where", "I", "completely", "stucked", "." ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "have", "no", "code", "to", "show", "what", "I", "have", "tried", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Cause", "I", "could", "n't", "think", "of", "a", "way", "to", "figure", "this", "out", "in", "sql", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O" ]
[ "Somebody", "suggested", "me", "to", "use", "pivot", "(", "new", "to", "the", "concept", "...", "couldn", "'", "t", "figure", "it", "out", ")", "." ]
[ "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "4", "steps", "of", "Col5", "makes", "a", "complete", "cycle", "." ]
[ "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O" ]
[ "I", "have", "multiple", "steps", "processed", "and", "need", "the", "timing", "of", "a", "complete", "cycle", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "1", "step", "of", "a", "cycle", "may", "begin", "before", "completion", "of", "other", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Table", "A" ]
[ "B-Variable", "I-Variable" ]
[ "Expected", "OutPut", "Table", "(", "Result", ")", ":" ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "To", "me", ",", "it", "looks", "like", "the", "cycles", "are", "determined", "by", "combinations", "of", "four", "\"", "steps", "\"", "with", "the", "same", "tag", "in", "col6", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O" ]
[ "The", "data", "in", "the", "example", "only", "has", "one", "cycle", "per", "code", ",", "but", "the", "comments", "suggest", "there", "might", "be", "more", "than", "one", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "How", "can", "we", "identify", "which", "cycle", "for", "a", "given", "code", "a", "record", "belongs", "to", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Well", ",", "one", "way", "is", "to", "assume", "that", "all", "the", "cycles", "with", "that", "code", "are", "complete", "and", "just", "enumerate", "the", "records", "by", "col6", ",", "col5", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "B-Variable", "O" ]
[ "This", "additional", "cycle", "sequence", "number", "is", "then", "used", "for", "aggregation", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "For", "enumerating", "the", "sequences", ",", "I", "further", "assume", "that", "the", "dates", "are", "increasing", "over", "time", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Although", "a", "pivot", "can", "be", "used", "in", "this", "case", ",", "I", "think", "the", "aggregation", "method", "might", "be", "a", "bit", "clearer", ":" ]
[ "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "Query", ":" ]
[ "O", "O", "O" ]
[ "The", "Output", ":" ]
[ "O", "O", "O" ]
[ "You", "can", "choose", "which", "columns", "you", "require", "and", "which", "columns", "to", "remove", "in", "your", "final", "select", "." ]
[ "O", "O", "O", "O", "B-Data_Structure", "O", "O", "O", "O", "B-Data_Structure", "O", "O", "O", "O", "O", "O", "O" ]
[ "(", "regarding", "col3", ",", "Col4", ",", "Col4", "1)" ]
[ "O", "O", "B-Variable", "O", "B-Variable", "O", "B-Variable", "I-Variable" ]
[ "****", "Based", "on", "the", "logic", "explained", "in", "the", "comments*******" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "/", "*", "Provided", "sample", "Data", "*", "/" ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "/", "*Query", "assuming", "each", "Cycle", "happens", "in", "the", "same", "minute", "*", "/" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "OUTPUT", ":" ]
[ "O", "O" ]
[ "Can", "I", "build", "nested", "conditions", "using", "the", "SelectQuery", "object", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O" ]
[ "I", "want", "to", "get", ":" ]
[ "O", "O", "O", "O", "O" ]
[ "If", "you", "inline", "all", "conditions", "/", "predicates.", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ ".", ".", "then", "you", "can", "supply", "them", "just", "like", "that", "to", "your", "SelectQuery", "object", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O" ]
[ "I", "'ve", "added", "some", "whitespace", "for", "improved", "readability" ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "If", "you", "want", "to", "perform", "dynamic", "query", "building.", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ ".", ".", "Then", "you", "can", "create", "your", "predicate", "in", "various", "steps", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Both", "approaches", "are", "completely", "equivalent", "." ]
[ "O", "O", "O", "O", "O", "O" ]
[ "I", "'m", "looking", "at", "the", "documentation", "now", "and", "it", "looks", "like", "you", "can", "use", "the", "addConditions", "methods", "with", "an", "OR", "operator", "to", "accomplish", "your", "nested", "query", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "B-Code_Block", "O", "O", "O", "O", "O", "O", "O" ]
[ "There", "are", "4", "different", "overloaded", "methods", "with", "addConditions", "but", "the", "last", "two", "allow", "you", "to", "supply", "an", "operator", "(", "in", "your", "case", "OR", ")", "and", "one", "of", "those", "allows", "you", "to", "string", "together", "multiple", "conditions", "using", "a", "supplied", "operator", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Code_Block", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Type", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "So", "all", "you", "need", "to", "do", "is", "break", "apart", "your", "nested", "statements", "into", "separate", "conditions", "and", "then", "link", "them", "together", "with", "your", "addConditions", "(", "[Collection", "of", "Conditions", "]", ",", "OR", ")", "statement", "." ]
[ "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", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "B-Code_Block", "I-Code_Block", "I-Code_Block", "O", "O" ]
[ "Here", "i", "am", "using", "function", "to", "print", "the", "values", "to", "div", "with", "id", "=", "\"", "mylist", "\"", ".i", "am", "using", "the", "loop", "and", "calling", "the", "printList()", "function", "with", "the", "value", "and", "i", "am", "printing", "the", "value", "in", "printList()", "but", "its", "not", "working.how", "can", "i", "do", "this", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-HTML_XML_Tag", "O", "B-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Javascript", ":" ]
[ "B-Language", "O" ]
[ "and", "also", "i", "want", "to", "add", "delay", "for", "printing", "the", "values", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "This", "should", "work", "." ]
[ "O", "O", "O", "O" ]
[ "Basically", ",", "you", "only", "append", "other", "DOM", "Node", "(", "as", "child", ")", "to", "DOM", "Nodes", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "so", "you", "use", "document.createTextNode()", "to", "create", "node", "and", "document.appendChild()", "to", "add", "it", "as", "a", "child", "to", "existing", "node", "." ]
[ "O", "O", "O", "B-Function", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Problem", "is", "document.write", "returns", "nothing", ",", "also", "using", "it", "is", "not", "recommended", "." ]
[ "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Secondly", "dom", "does", "not", "have", "function", "append", ",", "instead", "it", "is", "appendChild", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O" ]
[ "Try", "document.createTextNode", "and", "appendChild", ":" ]
[ "O", "B-Function", "O", "B-Function", "O" ]
[ "You", "may", "also", "try", "innerHTML", ":" ]
[ "O", "O", "O", "O", "B-Function", "O" ]
[ "I", "have", "a", "string", "as", "below", ":" ]
[ "O", "O", "O", "B-Data_Type", "O", "O", "O" ]
[ "I", "need", "to", "extract", "the", "episode", "number", "(", "1", "5)", "from", "it", "using", "ruby", "regex", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Value", "I-Value", "O", "O", "O", "B-Language", "O", "O" ]
[ "How", "can", "I", "do", "it", "?" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "Just", "match", "the", "last", "number", "." ]
[ "O", "O", "O", "O", "O", "O" ]
[ "This", "will", "work", ":" ]
[ "O", "O", "O", "O" ]
[ "In", "this", "question", "I", "asked", ",", "how", "I", "can", "generate", "shades", "of", "one", "color", "responsive", "to", "the", "number", "of", "div", "'s", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-HTML_XML_Tag", "O", "O" ]
[ "@DonJuwe", "came", "up", "with", "a", "perfectly", "working", "solution", "and", "demo", ":", "http://jsbin.com/xakifequ/1/edit" ]
[ "B-User_Name", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "However", "when", "I", "'m", "trying", "to", "use", "the", "code", "from", "the", "jsfiddle", "or", "JSBin", "it", "just", "does", "n't", "work", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "B-Application", "O", "O", "O", "O", "O", "O" ]
[ "So", "I", "downloaded", "the", "source", "code", "from", "JSBin", ",", "opened", "the", ".html-file", "and", "what", "I", "got", "was", "this", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "B-File_Type", "O", "O", "O", "O", "O", "O", "O" ]