tokens
list
ner_tags
list
[ "Here", "is", "the", "working", "example", "." ]
[ "O", "O", "O", "O", "O", "O" ]
[ "Hope", "this", "will", "solve", "your", "problem", "..", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "create", "a", "service", "to", "get", "the", "remote", "data" ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "tree_data1.json", "data" ]
[ "B-File_Name", "O" ]
[ "create", "a", "directive", "say", "\"", "comboTreeDirective", "\"", "and", "add", "the", "directive", "as", "an", "attribute", "to", "comboe", "tree", "element" ]
[ "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "use", "the", "directive", "as", "shown", "below" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "Below", "is", "the", "complete", "working", "example" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "I", "am", "trying", "to", "make", "lots", "of", "calls", "from", "my", "server", "to", "a", "REST", "API", "that", "is", "exposed", "by", "another", "server", "but", "the", "code", "is", "taking", "too", "long", "to", "run", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "B-Library", "I-Library", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Below", "is", "the", "code", "which", "takes", "a", "lot", "of", "time", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Right", "now", "I", "am", "using", "C#", "Async/Await", "along", "with", "HTTPClient", ",", "is", "there", "a", "better", "way", "I", "can", "do", "this", "?" ]
[ "O", "O", "O", "O", "O", "B-Language", "B-Code_Block", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "AS", "@TheESJ", "said", "the", "awaits", "make", "your", "code", "execute", "in", "a", "serial", "fashion", "." ]
[ "O", "B-User_Name", "O", "O", "B-Code_Block", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "That", "is", "once", "execution", "reaches", "the", "first", "await", ",", "execution", "is", "effectively", "\"", "paused", "\"", "and", "will", "not", "resume", "until", "that", "Task", "is", "complete", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Code_Block", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O" ]
[ "You", "can", "avoid", "this", "by", "not", "awaiting", "the", "Task", ",", "just", "add", "it", "to", "a", "list", "of", "tasks", "to", "keep", "track", "of", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "O", "B-Class", "O", "O", "O", "O", "O" ]
[ "To", "facilitate", "this", "I", "think", "it", "will", "help", "if", "you", "introduced", "a", "couple", "of", "helper", "methods", "to", "execute", "the", "body", "of", "your", "loops", "and", "return", "a", "Task", "." ]
[ "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-Class", "O" ]
[ "Then", "in", "your", "main", "loop", "you", "just", "add", "the", "tasks", "to", "a", "list", "as", "the", "methods", "are", "kicked", "off", ",", "this", "will", "essentially", "execute", "the", "tasks", "in", "parallel", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "B-Data_Structure", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O" ]
[ "You", "may", "need", "to", "increase", "the", "number", "of", "concurrent", "connections", "your", "server", "can", "make", "if", "it", "causes", "a", "problem", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Your", "main", "method", "then", "becomes", "." ]
[ "O", "B-Function", "O", "O", "O", "O" ]
[ "Those", "'", "await", "'s", "inside", "your", "loop", "will", "serialize", "the", "requests", "." ]
[ "O", "O", "B-Code_Block", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Consider", "instead", "using", ".ContinueWith", "on", "the", "task", "to", "do", "some", "work", "with", "the", "result", ",", "keep", "track", "of", "the", "tasks", "in", "an", "array", ",", "then", "call", "Task.WhenAll", "once", "you", "'re", "done", ...
[ "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Dear", "Expert", "need", "Help", "first", "see", "my", "view", "code", "in", "codeigniter", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Library", "O" ]
[ "and", "this", "my", "model", "code", ":" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "and", "my", "controller", "if", "i", "get", "the", "important", "code", "is", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "the", "problem", "is", "if", "searching", "between", "two", "date", "tglawal", "and", "tglakhir" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "B-Variable" ]
[ "im", "using", "between", "2016-12-04", "and", "2016-12-04", "output", "display", "will", "empty" ]
[ "O", "O", "O", "B-Value", "O", "B-Value", "O", "O", "O", "B-Value" ]
[ "but", "if", "using", "between", "2016-12-04", "and", "2016-12-06", "output", "success", "where", "is", "my", "problem", "or", "maybe", "im", "using", "where", "or", "i", "have", "to", "use", "like", "?" ]
[ "O", "O", "O", "O", "B-Value", "O", "B-Value", "O", "B-Value", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "You", "need", "to", "use", "the", ">=", "and", "<=", "operator", "." ]
[ "O", "O", "O", "O", "O", "B-Code_Block", "O", "B-Code_Block", "O", "O" ]
[ "In", "your", "model", "try", "the", "below", "." ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "above", "will", "search", "for", "the", "between", "dates", "including", "the", "dates", "selected", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Use", "the", "operator", "depending", "on", "the", "beginning", "and", "ending", "variable", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "need", "help", "with", "writing", "a", "function", "to_secs", "that", "converts", "hours", ",", "minutes", ",", "and", "seconds", "to", "a", "total", "number", "of", "seconds", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "In", "the", "book", "it", "says", "the", "following", "test", "should", "be", "possible", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "There", "are", "3600", "seconds", "in", "an", "hour", ",", "60", "in", "a", "minute", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "rest", "is", "simple", "arithmetic", ":" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "Demo", ":" ]
[ "O", "O" ]
[ "As", "mentioned", "in", "this", "question", "i", "tried", "to", "change", "the", "date", "format", "of", "Liferays", "input-date", "field", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Library", "B-Variable", "I-Variable", "O" ]
[ "So", "far", "successfull", "." ]
[ "O", "O", "O", "O" ]
[ "However", "i", "was", "testing", "it", "in", "different", "browsers", "and", "noticed", "that", "Firefox", "messes", "up", "the", "date", "when", "i", "click", "the", "field", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O" ]
[ "No", "problems", "in", "IE", "or", "Chrome", "." ]
[ "O", "O", "O", "B-Application", "O", "B-Application", "O" ]
[ "It", "initially", "displays", "the", "current", "date", "like", "18.08.2017", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Value", "O" ]
[ "But", "when", "i", "click", "the", "field", "(", "no", "change", "of", "the", "date", "that", "moment", ")", "it", "displays", "d.08.2017", "." ]
[ "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Value", "O" ]
[ "At", "first", "i", "thought", "i", "messed", "it", "up", "due", "my", "format", "changes", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "But", "after", "undoing", "these", "the", "error", "still", "exists", "..", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "value", "itself", "however", "is", "working", "normal", "and", "my", "java", "method", "doesnt", "get", "any", "erros", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "O" ]
[ "I", "can", "change", "the", "date", "in", "the", "picker", "and", "the", "hidden", "fields", "will", "have", "the", "correct", "value", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Only", "the", "visible", "part", "of", "the", "date", "is", "messed", "up", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "looked", "into", "the", "console", "and", "saw", ",", "that", "Liferay.Form", "is", "undefined", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-File_Name", "O", "O", "O" ]
[ "I", "dont", "know", "if", "it", "'s", "relevant", "at", "all", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "IE", "and", "Chrome", "are", "displaying", "errors", "too", ",", "but", "are", "also", "displaying", "the", "date", "normally", "." ]
[ "B-Application", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "How", "can", "i", "get", "rid", "of", "this", "error", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "EDIT", ":" ]
[ "O", "O" ]
[ "That", "'s", "the", "code", "i", "'m", "using", "for", "the", "datepicker", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O" ]
[ "I", "do", "n't", "have", "any", "js", "code", ",", "because", "i", "'ve", "written", "none", "." ]
[ "O", "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "'m", "attempting", "to", "use", "a", "MOBILE", "first", "approach", "to", "responsive", "design", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Device", "O", "O", "O", "O", "O", "O" ]
[ "In", "doing", "so", ",", "I", "wish", "to", "convert", "my", "MAX", "media", "queries", "to", "MIN", "media", "queries", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "B-Variable", "O", "O", "O" ]
[ "Therefore", ",", "instead", "of", "using", "graceful", "degradation", ",", "I", "aim", "to", "implement", "progressive", "enhancement" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Can", "anyone", "explain", "the", "best", "way", "to", "re-engineer", "my", "CSS", "to", "use", "MIN-width", "media", "queries", "as", "opposed", "to", "MAX-width", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "B-Variable", "O" ]
[ "In", "the", "example", "below", "I", "have", "trimmed", "out", "95%", "of", "the", "css", "and", "have", "left", "the", "breakpoints" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O" ]
[ "//", "MAIN", "CSS" ]
[ "O", "O", "O" ]
[ "//", "--MEDIA" ]
[ "O", "O" ]
[ "//", "--MEDIA" ]
[ "O", "O" ]
[ "@media", "MIN-width", ":" ]
[ "B-Code_Block", "I-Code_Block", "I-Code_Block" ]
[ "Min-width", "media", "queries", "are", "very", "easy", ",", "to", "use", ",", "and", "are", "not", "too", "different", "from", "using", "MAX", "media", "queries", "." ]
[ "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O" ]
[ "Here", "is", "an", "example", "using", "your", "code", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "It", "is", "important", "to", "still", "use", "max-width", "to", "create", "limits", "for", "the", "style", "of", "objects", "on", "certain", "screens", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Device", "O" ]
[ "Using", "min-width", "can", "be", "especially", "useful", "if", "you", "want", "certain", "styles", "to", "apply", "to", "a", "smaller", "object", "and", "then", "have", "that", "same", "style", "apply", "to", "a", "larger", "object", "." ]
[ "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", "O", "O" ]
[ "This", "way", "you", "can", "keep", "the", "styles", "for", "that", "minimum", "size", "but", "also", "add", "on", "extra", "styles", "to", "the", "larger", "object", "with", "out", "effecting", "the", "smaller", "one", "." ]
[ "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" ]
[ "For", "example", ":" ]
[ "O", "O", "O" ]
[ "In", "the", "above", "example", ",", "the", "styles", "from", "screens", "with", "a", "size", "of", "over", "740px", "will", "already", "be", "applied", "to", "any", "screens", "with", "a", "size", "of", "over", "900px", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Device", "O", "O", "O", "O", "O", "B-Value", "O", "O", "O", "O", "O", "O", "B-Device", "O", "O", "O", "O", "O", "B-Value", "O" ]
[ "From", "there", "you", "can", "adjust", "your", "styles", "as", "you", "like", ",", "reducing", "the", "amount", "of", "code", "needed", "to", "produce", "the", "page", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Other", "Things", ":" ]
[ "O", "O", "O" ]
[ "-When", "it", "comes", "to", "actual", "elements", "on", "the", "screen", "(", "excluding", "min/max", "-sizes", "with", "@media", ")", "it", "can", "always", "be", "helpful", "to", "use", "percentages", ",", "because", "that", "way", "items", "can", "be"...
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Device", "O", "O", "O", "O", "O", "B-Code_Block", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "-Here", "is", "a", "great", "website", "that", "will", "help", "you", "on", "your", "endeavours", "with", "media", "queries", ":", "http://css-tricks.com/snippets/css/media-queries-for-standard-devices/" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "It", "totally", "depends", "on", "the", "rest", "of", "your", "site", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Some", "sites", "can", "be", "displayed", "well", "at", "the", "width", "of", "400px", "while", "some", "others", "need", "to", "set", "a", "minumum", "because", "it", "'s", "too", "small", "to", "render", "the", "document", "objects", "in", "a", "clean...
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "B-Value", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Very", "often", "you", "will", "not", "even", "need", "to", "use", "min-width", "or", "max-width", "when", "optimizing", "for", "mobile", ",", "there", "are", "far", "more", "better", "practices", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Here", "are", "some", "of", "them", ":" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "Use", "Em", "over", "Px", "-", "It", "is", "always", "better", "to", "set", "font-size", "and", "other", "sizes", "in", "units", "of", "\"", "em", "\"", "rather", "than", "in", "\"", "px", "\"", "." ]
[ "O", "B-Value", "O", "B-Value", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "B-Value", "O", "O", "O", "O", "O", "B-Value", "O", "O" ]
[ "This", "is", "because", "a", "pixel", "is", "extremely", "small", "on", "a", "cell", "phone", ",", "whereas", "em", "units", "proportionally", "adjusts", "the", "object", "to", "a", "size", "that", "fits", "the", "screen", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Device", "I-Device", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Device", "O" ]
[ "Use", "Percentages", "-", "You", "'ll", "find", "that", "using", "percentages", "are", "far", "more", "friendly", "than", ",", "for", "instance", ",", "specifying", "the", "width", "or", "height", "of", "an", "element", "in", "pixels", "or", "em", "." ]
[ "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", "O", "O", "O", "O", "O", "O", "O" ]
[ "If", "you", "use", "percentages", ",", "your", "content", "will", "always", "adjust", "well", "in", "for", "skinny", "displays", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Avoid", "Absolutely", "Positioned", "Elements", "-", "Having", "elements", "positioned", "absolutely", "can", "be", "more", "difficuly", "to", "handle", "on", "small", "displays", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "It", "simply", "can", ",", "as", "the", "absolute", "elements", "may", "get", "too", "near", "to", "the", "relatively", "positioned", "elements", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Use", "relative", "positioning", "as", "much", "as", "possible", "for", "a", "clean", "site", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "am", "learning", "python", "unittest", "." ]
[ "O", "O", "O", "B-Language", "B-Library", "O" ]
[ "I", "would", "like", "to", "ask", "what", "the", "'", "test_code", "'", "in", "the", "following", "code", "is", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O" ]
[ "Is", "it", "the", "argument", "of", "'", "-m", "'", "option", "or", "one", "of", "unittest", "?" ]
[ "O", "O", "O", "O", "O", "O", "B-Code_Block", "O", "O", "O", "O", "O", "B-Library", "O" ]
[ "I", "would", "like", "to", "know", "how", "the", "unittest", "works", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Library", "O", "O" ]
[ "Thank", "you", "very", "much" ]
[ "O", "O", "O", "O" ]
[ "Using", "unittest", "module", "you", "can", "run", "tests", "from", "modules", "in", "command", "line", "." ]
[ "O", "B-Library", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "While", "-m", "is", "a", "flag", "and", "is", "used", "to", "specify", "python", "that", "you", "would", "be", "using", "test", "methods", "of", "unittest", "." ]
[ "O", "B-Code_Block", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "O", "B-Library", "O" ]
[ "I", "have", "a", "matrix", "represented", "in", "PHP", "as", "an", "array", ":" ]
[ "O", "O", "O", "B-Data_Structure", "O", "O", "B-Language", "O", "O", "B-Data_Structure", "O" ]
[ "and", "I", "have", "a", "second", "matrix", "represented", "in", "a", "similar", "way", "(", "here", "without", "inner", "arrays", ",", "but", "I", "do", "n't", "mind", "adding", "them", ")", ":" ]
[ "O", "O", "O", "O", "O", "B-Data_Structure", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "'d", "like", "to", "have", "a", "combination", "like", "this", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "was", "trying", "to", "find", "a", "code", "snippet", "that", "does", "that", "for", "me", ",", "but", "I", "failed", "because", "I", "do", "n't", "even", "know", "if", "this", "kind", "of", "operation", "has", "a", "name", "." ]
[ "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" ]
[ "Has", "it", "?" ]
[ "O", "O", "O" ]
[ "(", "I", "do", "n't", "want", "anyone", "to", "write", "that", "code", "snippet", ",", "I", "can", "do", "that", "myself", ".", ")" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Just", "in", "case", "anyone", "else", "does", "want", "an", "implementation", ",", "the", "following", "would", "create", "a", "cartesian", "product", "of", "two", "arrays", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "O" ]
[ "And", "additionally", ",", "if", "you", "want", "the", "values", "from", "$array1", "and", "$array2", "in", "the", "final", "array", ",", "you", "can", "merge", "the", "two", "arrays", "together", "before", "the", "nested", "foreach", "loops", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "B-Variable", "O", "O", "O", "B-Data_Structure", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "O", "O", "O", "O", "O", "O", "O" ]
[ "What", "you", "are", "looking", "for", "is", "called", "the", "cartesian", "product", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "There", "is", "no", "native", "PHP", "function", "to", "calculate", "that", "." ]
[ "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O" ]