tokens
sequence
ner_tags
sequence
[ "and", "here", "is", "my", "loginlayout", ":" ]
[ "O", "O", "O", "O", "B-Variable", "O" ]
[ "I", "'m", "new", "to", "android", "so", "I", "really", "do", "n't", "know", "how", "to", "do", "that", "." ]
[ "O", "O", "O", "O", "B-Operating_System", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "already", "develop", "login", "and", "register", "with", "PHP", "and", "MySQL", "by", "following", "tutorials", ",", "but", "it", "uses", "activity", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O" ]
[ "You", "asked", "kind", "of", "an", "involved", "question", ",", "especially", "without", "being", "able", "to", "see", "your", "server", "side", "code", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O" ]
[ "Since", "you", "mentioned", "needing", "source", "code", ",", "here", "is", "the", "official", "Android", "Developers", "training", "with", "source", "code", "examples", ",", "http://developer.android.com/training/basics/network-ops/connecting.html" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Operating_System", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "'ll", "copy", "the", "relevant", "code", "in", "here", "," ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Having", "done", "this", "a", "few", "times", ",", "though", ",", "I", "'d", "like", "to", "point", "out", "some", "things", "that", "will", "likely", "bite", "you", "when", "you", "try", "to", "implement", "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" ]
[ "Android", "requires", "you", "to", "do", "anything", "that", "calls", "a", "web", "server", "in", "a", "background", "thread", "." ]
[ "B-Operating_System", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O" ]
[ "http://developer.android.com/training/multiple-threads/index.html" ]
[ "O" ]
[ "You", "are", "probably", "going", "to", "need", "some", "kind", "of", "authentication", ",", "especially", "if", "PHP", "side", "you", "used", "e.g", ".", "Drupal", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "B-Library", "O" ]
[ "I", "would", "find", "out", "if", "your", "PHP", "framework", "requires", "e.g", ".", "Session", "auth", "with", "a", "CRLF", "token", "or", "OAuth", "or", "a", "similar", "scheme", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "O", "B-Value", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Authentication", "will", "involve", "three", "steps", ":" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "**", "Sign", "in" ]
[ "O", "O", "O" ]
[ "**", "Retrieve", "a", "cookie", "or", "token" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "**", "Send", "the", "token", "in", "along", "with", "your", "content", "in", "your", "headers" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Finally", "you", "are", "going", "to", "need", "some", "sort", "of", "data", "encapsulation", "layer", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "like", "JSON", ",", "some", "folks", "like", "XML", "." ]
[ "O", "O", "B-File_Type", "O", "O", "O", "O", "B-File_Type", "O" ]
[ "The", "GSON", "library", ",", "which", "you", "can", "learn", "more", "about", "here", ",", "https://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/com/google/gson/Gson.html", ",", "is", "the", "most", "user", "and", "beginner", "friendly", "JSON", "library", "I", "know", "of", "." ]
[ "O", "B-Library", "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", "O", "O" ]
[ "In", "practice", "I", "usually", "use", "Android", "'s", "built-in", "JSONArray", "and", "JSONObject", "though", "." ]
[ "O", "O", "O", "O", "O", "B-Operating_System", "O", "O", "B-Class", "O", "B-Class", "O", "O" ]
[ "Here", "is", "good", "example", "for", "the" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "http://www.androidhive.info/2012/05/how-to-connect-android-with-php-mysql/" ]
[ "O" ]
[ "Overall", "steps", "to", "do", ":" ]
[ "O", "O", "O", "O", "O" ]
[ "Create", "Web-service", "for", "login", "in", "PHP" ]
[ "O", "O", "O", "O", "O", "B-Language" ]
[ "Call", "that", "Web-service", "form", "android", "Fragment" ]
[ "O", "O", "O", "O", "B-Operating_System", "B-Class" ]
[ "Get", "response", "and", "parse", "it" ]
[ "O", "O", "O", "O", "O" ]
[ "Show", "the", "Result", "to", "User" ]
[ "O", "O", "O", "O", "O" ]
[ "see", "this", "link", "for", "working", "with", "Fragments" ]
[ "O", "O", "O", "O", "O", "O", "B-Class" ]
[ "I", "am", "trying", "to", "use", "rich", "text", "in", "a", "QComboBox", "but", "it", "does", "not", "support", "it", "." ]
[ "O", "O", "O", "O", "O", "B-Data_Type", "I-Data_Type", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O" ]
[ "Perhaps", "I", "should", "write", "a", "subclass", "?" ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "But", "I", "am", "unsure", "on", "what", "I", "would", "need", "to", "override", "as", "I", "have", "never", "done", "anything", "like", "this", "before", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Please", "help", "." ]
[ "O", "O", "O" ]
[ "Thanks", "!" ]
[ "O", "O" ]
[ "I", "think", "custom", "delegate", "class", "is", "the", "answer", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "solution", "is", "to", "simply", "replace", "standard", "drawing", "routine", "with", "your", "own", "(", "using", "i.e", ".", "QLabel", ")", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O" ]
[ "There", "was", "a", "similar", "question", "here", ":", "QListView/QListWidget", "with", "custom", "items", "and", "custom", "item", "widgets" ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element" ]
[ "When", "validating", "an", "XML", "DOMDocument", "with", "a", "scheme", ":" ]
[ "O", "O", "O", "B-Language", "B-Class", "O", "O", "O", "O" ]
[ "I", "get", "a", "warning", "message", "like", ":" ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "Warning", ":", "DOMDocument::schemaValidate()", ":", "Element", "'", "foo", "'", ":", "This", "element", "is", "not", "expected", "." ]
[ "O", "O", "B-Function", "O", "O", "O", "B-Code_Block", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Expected", "is", "one", "of", "(", "{url}foo", ",", "{url}bar", ")", "." ]
[ "O", "O", "O", "O", "O", "B-Code_Block", "I-Code_Block", "I-Code_Block", "O", "O" ]
[ "What", "is", "the", "difference", "between", "'", "foo", "'", "and", "'{url}foo'", "and", "how", "to", "fix", "this", "warning", "?" ]
[ "O", "O", "O", "O", "O", "O", "B-Code_Block", "O", "O", "B-Code_Block", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "notation", "{url}foo", "is", "used", "to", "refer", "to", "an", "expanded", "name", "whose", "namespace", "part", "is", "url", "and", "whose", "local", "name", "part", "is", "foo", "." ]
[ "O", "O", "B-Code_Block", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "B-Variable", "O" ]
[ "It", "'s", "sometimes", "referred", "to", "as", "'", "Clark", "notation", "'", "for", "James", "Clark", ",", "who", "promoted", "it", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Name", "I-User_Name", "O", "O", "O", "O", "O" ]
[ "When", "this", "notation", "is", "in", "use", ",", "unqualified", "names", "are", "sometimes", "referred", "to", "using", "the", "notation", "{}foo", "and", "sometimes", "(", "as", "in", "your", "error", "message", ")", "using", "the", "notation", "foo", "." ]
[ "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", "O", "O", "O", "O", "O", "B-Variable", "O" ]
[ "The", "error", "message", "is", "telling", "you", "that", "it", "has", "found", "an", "element", "with", "the", "unqualified", "name", "foo", ",", "at", "a", "location", "where", "it", "was", "expecting", "a", "namespace-qualfied", "element", "named", "either", "foo", "or", "bar", "in", "the", "namespace", "url", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "B-Variable", "O", "O", "O", "B-Variable", "O" ]
[ "Probable", "cause", ":", "the", "XML", "instance", "lacks", "a", "required", "namespace", "declaration", "." ]
[ "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O" ]
[ "How", "to", "classify", "strings", "using", "r" ]
[ "O", "O", "O", "B-Data_Type", "O", "B-Language" ]
[ "My", "text", "file", "is", "such", "a", "structure", "." ]
[ "O", "B-File_Type", "O", "O", "O", "O", "O", "O" ]
[ "I", "want", "to", "distinguish", "day", "/", "month", "/", "year", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "know", "there", "are", "commands", "." ]
[ "O", "O", "O", "O", "O", "O" ]
[ "\"", "strsplit", "\"", ",", "\"", "str_split", "\"" ]
[ "O", "B-Function", "O", "O", "O", "B-Function", "O" ]
[ "But", "I", "do", "not", "know", "how", "to", "write", "day", "/", "month", "/", "year", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "If", "you", "categorize", "it", ",", "the", "data", "is", "not", "what", "I", "want", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "What", "should", "I", "do", "?" ]
[ "O", "O", "O", "O", "O" ]
[ "I", "would", "appreciate", "it", "if", "you", "could", "answer", "me", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "You", "need", "to", "specify", "a", "pattern", "for", "dates", "more", "completely", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "stringr", "and", "rebus", "packages", "are", "really", "helpful", "and", "intuitive", "." ]
[ "B-Library", "O", "B-Library", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "want", "to", "move", "my", "MVC", "application", "from", "Azure", "to", "an", "in-house", "server", "." ]
[ "O", "O", "O", "O", "O", "B-Algorithm", "O", "O", "B-Application", "O", "O", "O", "B-Application", "O" ]
[ "How", "do", "I", "export", "the", "SSL", "certificate", "associated", "with", "the", "App", "to", "install", "it", "on", "the", "local", "server", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O" ]
[ "Is", "it", "at", "all", "possible", "?" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "NO", "." ]
[ "O", "O" ]
[ "There", "is", "no", "way", "to", "get", "certificate", "out", "of", "Windows", "Azure", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "I-Application", "O" ]
[ "Question", "is", "how", "it", "(", "the", "certificate", ")", "appeared", "in", "the", "Azure", "at", "first", "place", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O" ]
[ "It", "was", "certainly", "not", "uploaded", "by", "Microsoft", "people", "or", "some", "magic", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Website", "O", "O", "O", "O", "O" ]
[ "It", "is", "a", "developer", "who", "packed", "the", "deployment", "package", "to", "include", "the", "certificate", "reference", "(", "thumbprint", ")", "and", "service", "administrator", "(", "or", "co-admin", ")", "who", "uploaded", "the", "original", "certificate", "in", "the", "Azure", "." ]
[ "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", "B-Application", "O" ]
[ "So", "contact", "that", "people", "(", "whom", "might", "be", "just", "you", "?", ")" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "and", "ask", "for", "the", "original", "certificate", "." ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "If", "certificate", "is", "lost", ",", "contact", "the", "original", "issuer", "(", "certification", "authority", ")", "for", "a", "copy", ",", "if", "you", "were", "the", "one", "to", "originally", "requested", "." ]
[ "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" ]
[ "If", "you", "did", "not", "originally", "requested", "the", "certificate", ",", "there", "might", "have", "been", "a", "reason", "behind", "that", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Given", "an", "array", ",", "I", "need", "to", "find", "the", "indices", "of", "nearest", "non-coprime", "number", "(", "i.e", ".", "GCD(Ai,", "Aj)", ">", "1", ",", "for", "any", "Ai", "and", "Aj", "in", "the", "array", ",", "i", "!=", "j", ")", "Example", ",", "let", "the", "array", "be" ]
[ "O", "O", "B-Data_Structure", "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", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "O", "O", "O", "O", "O", "B-Data_Structure", "O" ]
[ "The", "answer", "will", "be" ]
[ "O", "O", "O", "O" ]
[ "I", "'ve", "written", "this", "brute", "force", "code", "(", "which", "is", "O(n^2))", "using", "Binary", "GCD", "method", ",", "which", "is", "not", "very", "efficient", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Algorithm", "I-Algorithm", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "'m", "wondering", "if", "there", "'s", "a", "faster", "way", "to", "do", "this", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Particularly", "in", "O(NlogN)" ]
[ "O", "O", "O" ]
[ "If", "you", "know", "your", "max", "value", "for", "your", "numbers", "and", "can", "afford", "to", "keep", "a", "list", "of", "primes", ",", "then", "factoring", "them", "may", "be", "a", "better", "solution", "for", "the", "average/random", "case", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Otherwise", ",", "worst", "case", "complexity", ",", "it", "'s", "still", "O(N*N)", "-", "think", "\"", "all", "of", "them", "are", "primes", "\"", "for", "the", "worst", "case", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Approach", ":" ]
[ "O", "O" ]
[ "factor", "them", "and", "store", "a", "Map[N]", "+", "int", "closestNeigh[]" ]
[ "O", "O", "O", "O", "O", "B-Code_Block", "O", "O", "O" ]
[ "take", "a", "factor", "and", "O(N)", "determine", "for", "each", "of", "them", "the", "closest", "that", "contain", "that", "factor", "(", "prefix/sufix", "sums", "will", "be", "involved", ")" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "eliminate", "that", "factor", "from", "all", "the", "factor", "maps" ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "take", "the", "next", "factor", "." ]
[ "O", "O", "O", "O", "O" ]
[ "Adjust", "the", "closest", "neighbor", "index", "only", "if", "new", "one", "is", "closest", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "This", "may", "bring", "some", "\"", "relief", "\"", "on", "the", "line", "of", "O", "(", "N*", "<num_distict_factors>", ")", ",", "but", "again", "if", "<num_distict_factors>", "==", "N", "(", "all", "primes", ")", ",", "then", "it", "is", "still", "O(N*N)" ]
[ "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", "O", "O", "O", "O", "B-Code_Block", "I-Code_Block", "I-Code_Block", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "If", "you", "are", "willing", "to", "get", "into", "factorization", ",", "one", "could", "traverse", "the", "list", ",", "once", "from", "the", "left", ",", "factoring", "each", "number", ",", "hashing", "the", "index", "of", "each", "new", "prime", "(", "with", "the", "prime", "as", "the", "key", ")", ",", "updating", "the", "index", "of", "each", "prime", "already", "seen", ",", "and", ",", "of", "course", ",", "noting", "the", "nearest", "seen", "prime", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "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", "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" ]
[ "Since", "this", "traversal", "would", "miss", "the", "nearest", "on", "the", "right", ",", "conduct", "another", "traversal", "from", "the", "right", "to", "update", "any", "nearer", "shared", "prime", ",", "using", "the", "factor", "lists", "already", "saved", "." ]
[ "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", "B-Data_Structure", "O", "O", "O" ]
[ "I", "just", "read", "any", "image", "and", "could", "not", "get", "the", "correct", "colors", "." ]
[ "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "'ve", "tried", "several", "images", "with", "several", "formats", "." ]
[ "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O" ]
[ "Please", "advice", "how", "to", "receive", "the", "correct", "colors", "in", "WriteableBitmap.GetPixels()" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function" ]
[ "In", "the", "following", "example", ",", "I", "just", "cloned", "the", "image", "by", "reading", "out", "the", "source", "pixel", "by", "pixel", "and", "putting", "this", "pixel", "to", "the", "new", "writeablebitmap", "on", "same", "position", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O" ]
[ "Like", "cloning", "." ]
[ "O", "O", "O" ]
[ "There", "is", "a", "fault", "in", "the", "Writeablebitmap", "Ex", "compiled", "/", "downloadable", "version", "1.0.2", "(", "others", "version", "until", "V", "1.0.5", "untested", ")", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "B-Version", "O", "O", "O", "O", "B-Version", "I-Version", "O", "O", "O" ]
[ "By", "using", "the", "sourcecode", "of", "writeablebitmapex", "Version", "1.0.5", ",", "the", "method", "works", "as", "it", "should", "." ]
[ "O", "O", "O", "O", "O", "B-Class", "O", "B-Version", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "have", "one", "table", "and", "i", "am", "iterating", "tr", "on", "click", "of", "button" ]
[ "O", "O", "O", "B-Data_Structure", "O", "O", "O", "O", "B-HTML_XML_Tag", "O", "O", "O", "B-User_Interface_Element" ]
[ "This", "is", "page", "X" ]
[ "O", "O", "B-User_Interface_Element", "B-Variable" ]
[ "I", "want", "the", "all", "iterated", "tr", "to", "be", "in", "new", "page", "Y", "." ]
[ "O", "O", "O", "O", "O", "B-HTML_XML_Tag", "O", "O", "O", "O", "B-User_Interface_Element", "B-Variable", "O" ]
[ "Here", "is", "my", "controller", "." ]
[ "O", "O", "O", "O", "O" ]
[ "I", "am", "very", "new", "in", "angular", "so", "my", "bad", "if", "code", "is", "not", "as", "per", "standard" ]
[ "O", "O", "O", "O", "O", "B-Library", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Add", "developer", "to", "the", "$rootScope", "and", "pass", "that", "value", "to", "your", "local", "scope" ]
[ "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "And", "on", "second", "page", "use", "this", "$rootScope", "to", "populate", "local", "$scope", "and", "add", "new", "ones", "to", "it", ",", "it", "will", "be", "also", "accessible", "to", "first", "one", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Here", "is", "a", "little", "example", "on", "jsfiddle", "http://jsfiddle.net/ae8neq3k/" ]
[ "O", "O", "O", "O", "O", "O", "B-Application", "O" ]
[ "I", "have", "the", "following", "multidimensional", "array", "called", "$responses", "and", "it", "looks", "like", "this", "when", "I", "do", "a", "print_r" ]
[ "O", "O", "O", "O", "O", "B-Data_Structure", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function" ]