tokens
sequence
ner_tags
sequence
[ "Breakpoints", "I", "have", "set", "in", "onResume()", "of", "an", "Activity", "class", "B", "are", "executing", ",", "so", "there", "'s", "something", "wrong", "with", "how", "Android", "Studio", "is", "choosing", "to", "execute", "breakpoints", "." ]
[ "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "I-Application", "O", "O", "O", "O", "O", "O" ]
[ "My", "issue", "seems", "similar", "to", "this", ":", "Android", "Studio", "breakpoints", "not", "working", "in", "doinbackground" ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Application", "I-Application", "O", "O", "O", "O", "B-Function" ]
[ "I", "'ve", "tried", "that", "user", "'s", "workaround", "but", "with", "no", "luck", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "deleted", "my", ".gradle", ",", "and", ".AndroidStudioPreview", "folders", ",", "then", "restarted", "my", "computer", "and", "restarted", "Android", "Studio", "." ]
[ "O", "O", "O", "B-File_Name", "O", "O", "B-File_Name", "O", "O", "O", "O", "O", "B-Device", "O", "O", "B-Application", "I-Application", "O" ]
[ "My", "breakpoints", "are", "working", "properly", "now", "." ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "So", "it", "was", "an", "issue", "with", "Android", "Studio", ",", "and", "the", "nuclear", "option", "worked", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Application", "I-Application", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "have", "two", "dataframes", "." ]
[ "O", "O", "O", "B-Data_Structure", "O" ]
[ "The", "first", "is", "my", "main", "pool", ",", "and", "the", "second", "is", "a", "\"", "list", "\"", "of", "names", "that", "I", "want", "to", "filter", "on", "." ]
[ "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "main", ":" ]
[ "O", "O" ]
[ "list1", "(", "currently", "in", "a", "dataframe", ")" ]
[ "B-Variable", "O", "O", "O", "O", "B-Data_Structure", "O" ]
[ "I", "want", "to", "use", "dplyr::filter", "and", "the", "%in%", "operator", "to", "subset", "the", "main", "pool", ":" ]
[ "O", "O", "O", "O", "B-Function", "O", "O", "B-Code_Block", "O", "O", "O", "O", "B-Variable", "O", "O" ]
[ "I", "thought", "the", "above", "would", "work", ",", "but", "it", "'s", "creating", "a", "0", "row", "dataframe", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Value", "B-Data_Structure", "I-Data_Structure", "O" ]
[ "Richard", "'s", "suggestion", "worked", "!" ]
[ "B-User_Name", "O", "O", "O", "O" ]
[ "I", "'m", "developing", "a", "single-page", "web", "application", "using", "Backbone", "and", "Laravel", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Library", "O", "B-Library", "O" ]
[ "I", "'ve", "set", "my", "router", "to", "use", "pushState", "and", "configured", "Laravel", "to", "send", "all", "other", "requests", "to", "the", "main", "view", "of", "the", "backbone", "application", ",", "where", "backbone", "takes", "care", "of", "the", "routing", "." ]
[ "O", "O", "O", "O", "B-Device", "O", "O", "B-Function", "O", "O", "B-Library", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Library", "O", "O", "O", "B-Library", "O", "O", "O", "O", "O", "O" ]
[ "My", "problem/question", "is", "as", "follows", ":" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "I", "have", "a", "route", "called", "'", "dashboard", "'", ",", "this", "route", "is", "the", "main", "application", "view", "and", "is", "shown", "after", "login", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "It", "uses", "a", "collection", "called", "Clients", "." ]
[ "O", "O", "O", "B-Class", "O", "B-Class", "O" ]
[ "The", "Dash.Views.Dashboard", "view", "takes", "care", "of", "all", "the", "views", "in", "the", "application", ",", "when", "calling", "the", "renderDashboard()", ";", "method", ",", "it", "starts", "rendering", "all", "client", "views", "." ]
[ "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O" ]
[ "This", "is", "where", "it", "gets", "interesting", "." ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "code", "for", "rendering", "all", "the", "client", "views", "is", "as", "follows", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "with", "the", "above", "code", ",", "it", "works", "in", "all", "cases", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "With", "that", "i", "mean", "when", "I", "log", "in", "first", "and", "the", "application", "routes", "me", "to", "the", "dashboard", "view", "all", "the", "clients", "gets", "rendered", "and", "appended", "to", "the", "DOM", ",", "the", "same", "thing", "happens", "when", "I", "access", "/dashboard", "immediately", "(", "afther", "the", "application", "checks", "if", "i", "'m", "logged", "in", ")", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "B-Application", "O", "O", "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", "O", "O" ]
[ "But", ",", "when", "I", "use", "the", "following", "code", "it", "does", "n't", "load", "the", "client", "views", "when", "I", "first", "log", "in", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O" ]
[ "It", "does", "load", "the", "client", "views", "when", "i", "access", "/dashboard", "directly", "." ]
[ "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O" ]
[ "It", "took", "me", "a", "while", "to", "figure", "out", "that", "the", "fix", "of", "the", "problem", "was", "that", "I", "had", "to", "replace", "this", ".", "$el", "with", "$(this.el)", ",", "but", "I", "alway", "'s", "thought", "it", "did", "n't", "matter", "because", "they", "are", "essentially", "the", "same", ",", "or", "am", "I", "wrong", "in", "this", "assumption", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "I-Variable", "I-Variable", "O", "B-Variable", "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" ]
[ "Can", "someone", "explain", "to", "me", "this", "weird", "behaviour", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "As", "requested", ",", "here", "is", "my", "global", "Dashboard", "view" ]
[ "O", "O", "O", "O", "O", "O", "B-Data_Type", "B-Class", "O" ]
[ "I", "'d", "guess", "that", "your", "problem", "is", "right", "here", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "If", "there", "is", "no", ".dashboard", "then", "you", "directly", "assign", "to", "this.el", "and", "that", "'s", "a", "mistake", "as", "it", "wo", "n't", "update", "this", ".", "$", "el", "." ]
[ "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "I-Variable", "I-Variable", "I-Variable", "O" ]
[ "The", "result", "is", "that", "this.el", "and", "this", ".", "$el", "reference", "different", "things", "and", "nothing", "works", "." ]
[ "O", "O", "O", "O", "B-Variable", "O", "B-Variable", "I-Variable", "I-Variable", "O", "O", "O", "O", "O", "O", "O" ]
[ "You", "should", "use", "setElement", "to", "change", "a", "view", "'s", "el", ":" ]
[ "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "B-Variable", "O" ]
[ "So", "you", "should", "be", "saying", "this", ":" ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "ca", "n't", "work", "this", "out", "." ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "Or", "am", "I", "missing", "something", "?" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "It", "does", "n't", "seem", "to", "work", "?" ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "it", "wo", "n't", "know", "about", "the", "old", "params", "unless", "you", "merge", "them", "in", "and", "send", "them", "on", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "From", "the", "documentation", ":" ]
[ "O", "O", "O", "O" ]
[ "You", "'re", "passing", "a", "String", "as", "the", "first", "argument", ",", "so", "it", "'s", "using", "the", "3rd", "option", "." ]
[ "O", "O", "O", "O", "B-Data_Type", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Your", "second", "parameter", "is", "interpreted", "as", "the", "value", "for", "the", "response_status", "parameter", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O" ]
[ "So", ",", "if", "your", "redirect", "is", "an", "internal", "one", "(", "to", "the", "same", "app", ")", ",", "you", "do", "n't", "need", "to", "specify", "the", "scheme", "and", "hostname", "." ]
[ "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" ]
[ "Just", "use" ]
[ "O", "O" ]
[ "If", "it", "'s", "an", "external", "URL", ",", "build", "the", "complete", "URL", "before", "redirecting", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Hi", "i", "have", "created", "app", "using", "altbeacon", "reference", "app", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Library", "O", "O", "O" ]
[ "And", "i", "want", "to", "call", "didEnterRegion", "using", "bootstrap", "notifier", "when", "app", "sees", "beacon", "in", "background", "." ]
[ "O", "O", "O", "O", "O", "B-Function", "O", "B-Class", "I-Class", "O", "O", "O", "B-Device", "O", "O", "O" ]
[ "But", "i", "dont", "want", "it", "to", "scan", "background", "every", "5", "minutes", ",", "i", "want", "my", "app", "react", "to", "new", "beacon", "immediately", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Device", "O", "O" ]
[ "Is", "there", "some", "way", "to", "do", "this", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "My", "Code", ":" ]
[ "O", "O", "O" ]
[ "}" ]
[ "B-Code_Block" ]
[ "You", "can", "increase", "the", "frequency", "of", "background", "scans", "with", "the", "following", "code", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "This", "will", "make", "the", "background", "detection", "times", "as", "fast", "as", "in", "the", "foreground", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "But", "be", "forewarned", ",", "this", "will", "make", "your", "app", "use", "lots", "of", "battery", "power", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "You", "can", "tweak", "the", "between", "scan", "period", "to", "your", "tolerance", "for", "battery", "drain", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "As", "you", "noted", ",", "the", "default", "is", "5", "minutes", "(", "5*3600l", ")", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Android", "L", "has", "new", "scanning", "APIs", "which", "promise", "to", "help", "improve", "this", "tradeoff", "between", "detection", "timers", "and", "battery", "usage", "." ]
[ "B-Operating_System", "B-Version", "O", "O", "B-Library", "I-Library", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "But", "for4.3", "and", "4.4", "apps", ",", "you", "need", "to", "make", "a", "judgment", "call", "." ]
[ "O", "B-Version", "O", "B-Version", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "'m", "using", "Java", "6", "." ]
[ "O", "O", "O", "B-Language", "B-Version", "O" ]
[ "Do", "you", "think", "there", "'s", "a", "reason", "why", "there", "are", "conditional", "expressions" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "and", "not", "loop", "expressions" ]
[ "O", "O", "O", "O" ]
[ "which", "adds", "elements", "from", "schedule", "into", "weeklyPlan", "while", "hasNext()", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Variable", "O", "B-Function", "O" ]
[ "Or", "do", "some", "languages", "have", "this", "feature", "or", "something", "similar", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "These", "\"", "loop", "expressions", "\"", ",", "in", "a", "slightly", "different", "form", ",", "are", "called", "closures", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "In", "groovy-code", ":" ]
[ "O", "B-Language", "O" ]
[ "That", "is", "-", "you", "can", "define", "what", "happens", "with", "each", "object", "of", "the", "schedule", "collection", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O" ]
[ "Java", "does", "not", "yet", "support", "closures", "." ]
[ "B-Language", "O", "O", "O", "O", "O", "O" ]
[ "There", "it", "is", "implemented", "with", "anonymous", "classes", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Of", "course", "closures", "are", "more", "than", "that", ",", "and", "this", "is", "only", "one", "of", "their", "applications", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "think", "it", "'s", "because", "conditional", "expressions", "are", "much", "easier", "to", "implement", "without", "having", "to", "worry", "about", "pesky", "details", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "For", "example", ",", "looking", "at", "your", "code", ",", "are", "you", "saying", "that", "weeklyPlan.add", "will", "be", "called", "multiple", "times", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O" ]
[ "In", "that", "case", ",", "the", "scope", "of", "your", "=>", "operator", "just", "jumped", "outside", "of", "the", "parentheses", "that", "contain", "it", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Code_Block", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "C#", "has", "features", "in", "LINQ", "that", "can", "perform", "similar", "actions", "to", "what", "you", "'re", "describing", "." ]
[ "B-Language", "O", "O", "O", "B-Library", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "It", "implements", "these", "using", "closures", "and", "extension", "methods", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "But", "these", "are", "much", "more", "tricky", "language", "constructs", "than", "Java", "started", "out", "with", "and", "the", ".NET", "runtime", "has", "been", "able", "to", "change", "much", "more", "rapidly", "than", "the", "Java", "platform", "has", ",", "largely", "for", "political", "reasons", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "B-Library", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Java", "7", "was", "supposed", "to", "feature", "closures", ",", "but", "they", "got", "pushed", "back", "to", "the", "\"", "next", "version", ".", "\"" ]
[ "B-Language", "B-Version", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "always", "read", "that", ",", "at", "any", "given", "time", ",", "the", "processor", "can", "only", "run", "one", "process", "at", "a", "time", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Device", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "So", "one", "and", "only", "one", "process", "is", "in", "state", "running", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "However", ",", "we", "can", "have", "a", "number", "of", "runnable", "processes", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "These", "are", "all", "of", "these", "processes", "who", "are", "waiting", "for", "the", "scheduler", "to", "schedule", "their", "execution", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "At", "any", "given", "time", ",", "do", "all", "these", "runnable", "processes", "exist", "in", "user", "address", "space", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Or", "has", "the", "currently", "running", "process", "in", "user", "address", "space", ",", "and", "it", "is", "only", "once", "they", "are", "scheduled", "that", "they", "are", "brought", "back", "to", "RAM", "from", "disk", "." ]
[ "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-Device", "O", "B-Device", "O" ]
[ "In", "which", "case", ",", "does", "it", "mean", "that", "the", "kernel", "keeps", "the", "process", "task", "descriptor", "in", "its", "list", "of", "all", "runnable", "processes", "even", "if", "they", "are", "in", "disk", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Device", "O" ]
[ "I", "guess", "you", "can", "tell", "I", "am", "confused", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "If", "CPU", "supports", "virtual", "memory", "addressing", ",", "each", "process", "has", "a", "unique", "view", "of", "the", "memory", "." ]
[ "O", "B-Device", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Two", "different", "processes", "that", "tries", "to", "read", "from", "the", "same", "memory", "address", ",", "will", "map", "to", "different", "location", "in", "physical", "memory", ",", "unless", "the", "memory", "maps", "tells", "otherwize", "(", "shared", "memory", ",", "like", "DLL", "files", "are", "mapped", "read", "only", "like", "this", "for", "instance", ")" ]
[ "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", "B-File_Type", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "If", "CPU", "does", "not", "support", "virtual", "memory", ",", "but", "only", "memory", "protection", ",", "the", "memory", "from", "the", "other", "processes", "will", "be", "protected", "away", ",", "so", "that", "the", "running", "process", "can", "only", "access", "its", "own", "memory", "." ]
[ "O", "B-Device", "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", "Login", "page", "without", "Layout", "." ]
[ "O", "O", "O", "B-User_Interface_Element", "O", "O", "O" ]
[ "I", "'m", "try", "to", "do", "login", "using", "ajax", "post", "method", "but", "that", "method", "not", "hit", "on", "the", "mvc", "Controller", "method", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Function", "I-Function", "O", "O", "O", "O", "O", "O", "O", "O", "B-Algorithm", "O", "O", "O" ]
[ "When", "Im", "try", "to", "login", "alert", "box", "in", "success", "section", "is", "popup", "with", "blank", "." ]
[ "O", "O", "O", "O", "O", "B-User_Interface_Element", "I-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "If", "this", "method", "hit", "that", "alert", "should", "have", "some", "record", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "please", "help", "me", "to", "fix", "this", "issue", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Ajax", "method", ":" ]
[ "B-Function", "O", "O" ]
[ "Login", "Form", ":" ]
[ "O", "O", "O" ]
[ "Scripts", ":" ]
[ "O", "O" ]
[ "The", "Problem", "is", "with", "datatype", "which", "you", "have", "not", "specified", "in", "ajax", "request", ":", "-" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O" ]
[ "If", "your", "alert", "is", "empty", "(", "and", "not", "undefined", ")", "your", "server", "is", "not", "responding", "with", "a", "object", "that", "has", "any", "value", "for", "in", "data.Code", "." ]
[ "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Code_Block", "O" ]
[ "e.g", "." ]
[ "O", "O" ]
[ "alert({}.Code)", ";", "shows", "an", "alert", "with", "undefined", "whereas", "data", "=", "{Code:''};alert(data.Code)", ";", "shows", "an", "empty", "alert", "as", "described", "in", "your", "question", "." ]
[ "B-Code_Block", "I-Code_Block", "O", "O", "B-Function", "O", "O", "O", "B-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O" ]
[ "Probably", "best", "to", "use", "the", "console", "to", "debug", "your", "code", "instead", "of", "alerts", "." ]
[ "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "B-Function", "O" ]
[ "I", "am", "using", "AFNetworking", "2.0", "to", "send", "data", "to", "my", "API", "(", "json", ")", "." ]
[ "O", "O", "O", "B-Library", "B-Version", "O", "O", "O", "O", "O", "B-Library", "O", "B-File_Type", "O", "O" ]
[ "Everything", "works", "fine", "except", "of", "sending", "data", "with", "german", "letters", "like", "ä", "ü", "ö", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Value", "I-Value", "I-Value", "O" ]