tokens
list
ner_tags
list
[ "Basically", ",", "I", "was", "hoping", "someone", "could", "point", "me", "in", "the", "direction", "to", "submitting", "multiple", "forms", "(", "or", "at", "least", "the", "data", "from", "multiple", "forms", ")", "at", "once", "from", "a", "single", ...
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O" ]
[ "I", "assume", "you", "do", "n't", "ALWAYS", "want", "to", "submit", "them", "all", "-", "if", "you", "do", ",", "then", "just", "make", "one", "form", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O" ]
[ "If", "you", "'re", "hoping", "to", "be", "able", "to", "submit", "some", "of", "them", "individually", ",", "but", "also", "be", "able", "to", "submit", "them", "all", ",", "then", "you", "could", "do", "something", "along", "the", "lines", "of", "thi...
[ "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" ]
[ "Keep", "all", "the", "fields", "in", "one", "form", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Class", "O" ]
[ "For", "each", "field", "have", "a", "'", "submitted", "'", "value", "(", "1", "or", "0", ")", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "B-Value", "O", "B-Value", "O", "O" ]
[ "If", "they", "click", "the", "Submit", "next", "to", "an", "individual", "field", ",", "turn", "all", "of", "the", "submitted", "values", "to", "0", "except", "that", "one", ",", "then", "submit", "the", "form", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "B-Value", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O" ]
[ "If", "they", "click", "Submit", "All", ",", "then", "turn", "them", "all", "to", "'", "1", "'", "and", "submit", "the", "form", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Value", "I-Value", "B-Value", "O", "O", "O", "B-Class", "O" ]
[ "Then", ",", "when", "you", "process", "the", "data", ",", "just", "strip", "anything", "that", "does", "n't", "have", "'", "submitted", "'", "value", "of", "1", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "B-Value", "O" ]
[ "It", "would", "still", "take", "some", "work", ",", "and", "you", "'re", "submitting", "more", "data", "than", "is", "necessary", ",", "but", "...", ".", "it", "'s", "an", "idea", "." ]
[ "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", "'m", "trying", "to", "use", "the", "value", "of", "a", "column", "called", "children_ids", "inside", "a", "subquery", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "O", "B-Variable", "O", "O", "O", "O" ]
[ "But", "count_children", "is", "always", "NULL", "." ]
[ "O", "B-Variable", "O", "O", "B-Value", "O" ]
[ "If", "I", "replace", "children_ids", "with", "some", "real", "values", ",", "it", "works", ":" ]
[ "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Is", "there", "any", "way", "to", "use", "the", "value", "of", "an", "outer", "column", "inside", "a", "subquery", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "O", "O", "O", "O" ]
[ "You", "can", "do", "what", "you", "want", "using", "find_in_set()", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Function", "O" ]
[ "However", ",", "you", "should", "fix", "your", "data", "structure", "to", "use", "a", "proper", "junction", "table", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "I-Data_Structure", "O" ]
[ "Storing", "lists", "of", "ids", "in", "a", "comma", "delimited", "column", "is", "not", "the", "right", "way", "to", "store", "data", "." ]
[ "O", "B-Data_Structure", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "You", "can", "replace", "In", "(", "children_ids", ")", "by", "In", "(", "select", "children_ids", "from", "hotels", "hotls1", "where", "hotels.id", "=", "hotels1.I", "'", "d", ")" ]
[ "O", "O", "O", "B-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "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", "have", "a", "list", "and", "want", "to", "split", "each", "elements", "into", "a", "tuple", "of", "two", "elements", "." ]
[ "O", "O", "O", "B-Data_Structure", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "O", "O", "O", "O" ]
[ "The", "list", "looks", "like", ":" ]
[ "O", "B-Data_Structure", "O", "O", "O" ]
[ "How", "do", "I", "create", "a", "list", "of", "the", "form", ":" ]
[ "O", "O", "O", "O", "O", "B-Data_Structure", "O", "O", "O", "O" ]
[ "Use", "split()", "." ]
[ "O", "B-Function", "O" ]
[ "Try", "the", "following", "." ]
[ "O", "O", "O", "O" ]
[ "I", "'m", "trying", "to", "integrate", "the", "new", "object", "ADBannerView", "in", "my", "Cocos2d", "game", "but", "the", "banner", "apears", "in", "vertical", "on", "the", "left", "of", "the", "screen", "when", "my", "game", "is", "in", "landscape", ...
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "B-Library", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "This", "is", "my", "code", ":" ]
[ "O", "O", "O", "O", "O" ]
[ "I", "'d", "like", "the", "banner", "to", "appear", "on", "the", "top", "of", "the", "screen", "in", "horizontal", "(", "landscape", "mode", ")", "." ]
[ "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Thank", "you", "for", "your", "support", "!" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "You", "will", "need", "to", "rotate", "the", "frame", "that", "you", "made", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Try", "something", "like", "this", ":" ]
[ "O", "O", "O", "O", "O" ]
[ "M_PI", "is", "defined", "in", "math.h", "in", "the", "cocos2d", "library", ",", "it", "'s", "just", "pi", "." ]
[ "B-Variable", "O", "O", "O", "B-File_Name", "O", "O", "B-Library", "O", "O", "O", "O", "O", "B-Variable", "O" ]
[ "Once", "you", "get", "it", "on", ",", "just", "play", "with", "the", "first", "2", "numbers", "in", "the", "rect", "to", "position", "it", "where", "you", "need", "it", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "You", "should", "modify", "the", "view", "frame", "size", "&", "origin", "in", "shouldAutorotateToInterfaceOrientation", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O" ]
[ "I", "am", "constantly", "finding", "myself", "building", "programs", "where", "there", "are", "multiple", "screens", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O" ]
[ "For", "example", ",", "consider", "a", "program", "where", "the", "initial", "layout", "offers", "two", "buttons", ":", "create", "file", "or", "edit", "file", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O" ]
[ "Upon", "clicking", "one", ",", "it", "takes", "the", "user", "to", "a", "new", "screen", "supporting", "whatever", "button", "they", "press", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "B-User_Interface_Element", "O", "O", "O" ]
[ "Then", "they", "click", "a", "back", "button", "and", "it", "takes", "them", "back", "to", "the", "main", "screen", "of", "the", "program", "." ]
[ "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O" ]
[ "I", "am", "wondering", "how", "to", "best", "do", "separate", "menus", "like", "this", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O" ]
[ "Would", "it", "be", "best", "just", "to", "create", "separate", "methods", "setting", "up", "each", "screen", ",", "then", "call", "the", "appropriate", "one", "when", "a", "button", "(", "like", "\"", "back", "\"", "button", ")", "is", "clicked", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O" ]
[ "This", "is", "what", "I", "was", "thinking", "of", "doing", ",", "but", "seeing", "as", "there", "are", "many", "ways", "to", "do", "this", ",", "I", "want", "to", "get", "opinions", "on", "a", "possibly", "better", "way", "of", "changing", "the", "...
[ "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-User_Interface_Element", "O", "O" ]
[ "Thanks", ",", "AJ" ]
[ "O", "O", "B-User_Name" ]
[ "Based", "on", "your", "2nd", "comment", "to", "the", "original", "question", ",", "I", "think", "it", "is", "best", "to", "look", "at", "using", "Panels", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O" ]
[ "Look", "at", "using", "multiple", "panels", "for", "each", "of", "the", "activities", "you", "want", ":" ]
[ "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Ensure", "all", "panels", "are", "hidden", "when", "initialised", ",", "and", "then", "simply", "swap", "a", "panel", "for", "another", "one", "upon", "a", "button", "click", "event", "using", ":" ]
[ "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "B-Class", "O", "O" ]
[ "Depending", "on", "the", "layout", "you", "use", ",", "there", "are", "also", "other", "techniques", "." ]
[ "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "For", "example", ",", "rather", "than", "removing", "and", "adding", "(", "or", "showing", "and", "hiding", "multiple", "panels", ")", ",", "if", "you", "use", "BorderLayout", "you", "can", "simple", "\"", "replace", "\"", "a", "BorderLayout", "area", "wi...
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "B-Class", "O", "O", "O", "O" ]
[ "Note", "also", "that", "different", "Operating", "Systems", "(", "Windows", ",", "Mac", "etc", ")", "will", "have", "different", "styles", "they", "like", "to", "adhere", "to", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Operating_System", "O", "B-Operating_System", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "For", "example", "you", "mentioned", "a", "typical", "Windows", "installer", ";", "people", "have", "come", "to", "expect", "an", "installer", "to", "look", "and", "work", "in", "a", "certain", "way", ",", "but", "on", "a", "different", "OS", "there", "...
[ "O", "O", "O", "O", "O", "O", "B-Operating_System", "B-Application", "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", "O", "O", "O", "O", "O", "O", "O...
[ "Further", "reading", ":" ]
[ "O", "O", "O" ]
[ "Tutorial", "on", "using", "panels" ]
[ "O", "O", "O", "B-Class" ]
[ "Java", "SE", "7", "(", "JPanel", "API", ")" ]
[ "B-Language", "B-Version", "I-Version", "O", "B-Class", "O", "O" ]
[ "Edit", ":" ]
[ "O", "O" ]
[ "This", "comes", "down", "to", "personal", "preference", "." ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "Do", "you", "want", "to", "initalise", "everything", "on", "startup", "and", "have", "quicker", "swaps", "between", "panels", "(", "or", "as", "you", "called", "them", ":", "\"", "screens", "\"", ")", ",", "OR", "do", "you", "want", "a", "quicker", "i...
[ "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", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-A...
[ "Personally", "I", "opt", "for", "everything", "during", "initalisation", "(", "unless", "there", "is", "a", "lot", "of", "things", "to", "do", "or", "load", "during", "your", "applications", "startup", ")", "." ]
[ "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", "really", "comes", "down", "to", "personal", "preference", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Another", "edit", ":" ]
[ "O", "O", "O" ]
[ "Speaking", "about", "layouts", ",", "perhaps", "a", "different", "layout", "style", "would", "also", "help", "you", "out", ",", "something", "like", "this", ":" ]
[ "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "CardLayout", "tutorial" ]
[ "B-Class", "O" ]
[ "Hope", "this", "helps", "out", "somewhat", "." ]
[ "O", "O", "O", "O", "O", "O" ]
[ "If", "the", "state", "of", "the", "screen", "depends", "on", "the", "state", "of", "the", "previous", "screen", "(", "e.g", ".", "like", "in", "a", "wizard", ")", "you", "can", "follow", "the", "steps", "described", "in", "this", "article" ]
[ "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "want", "to", "display", "an", "alert", "box", "showing", "a", "message", "with", "PHP", "." ]
[ "O", "O", "O", "O", "O", "B-User_Interface_Element", "I-User_Interface_Element", "O", "O", "O", "O", "B-Language", "O" ]
[ "If", "I", "not", "use", "alert", "box", "I", "get", "the", "right", "answer", "such", "\"", "update", "subject", "set", "semester", "=", "2", "where", "id", "=", "171", "\"", "." ]
[ "O", "O", "O", "O", "B-User_Interface_Element", "I-User_Interface_Element", "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", ...
[ "But", "after", "I", "change", "into", "alert", "box", "the", "answer", "i", "get", "in", "the", "alert", "box", "only", "\"", "update", "subject", "set", "$f", "=", "$data", "where", "id", "=", "$did", "\"", "and", "it", "does", "not", "update", "in...
[ "O", "O", "O", "O", "O", "B-User_Interface_Element", "I-User_Interface_Element", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "I-User_Interface_Element", "O", "O", "B-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block",...
[ "Here", "is", "my", "PHP", "code", ":" ]
[ "O", "O", "O", "B-Language", "O", "O" ]
[ "Change", "the", "quotations", "." ]
[ "O", "O", "O", "O" ]
[ "Learn", "the", "difference", "between", "single", "and", "double", "quotes", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Also", ",", "you", "ca", "n't", "update", "using", "that", "which", "is", "an", "invalid", "query", "with", "Javascript", "statement", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "B-Language", "O", "O" ]
[ "Instead", "use", ":" ]
[ "O", "O", "O" ]
[ "Note", ":", "mysql_", "extensions", "are", "deprecated", ",", "use", "mysqli", "or", "PDO" ]
[ "O", "O", "B-Class", "I-Class", "O", "O", "O", "O", "B-Application", "O", "B-Application" ]
[ "What", "you", "are", "passing", "to", "the", "deprecated", "mysql_query", "function", "was", "not", "valid", "sql", "and", "would", "cause", "an", "error", ",", "I", "suspect", "you", "were", "trying", "something", "along", "these", "lines", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "am", "attempting", "to", "use", "HttpClient", "to", "upload", "a", "file", "to", "Microsoft", "Azure", "Blob", "Storage", "via", "their", "REST", "api", "in", "Xamarin.iOS", "." ]
[ "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "B-Application", "I-Application", "I-Application", "I-Application", "O", "O", "B-Library", "I-Library", "O", "B-Application", "O" ]
[ "It", "'s", "been", "going", "alright", "until", "now", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Every", "time", "I", "try", "to", "add", "Content-Length", "header", "to", "the", "client", "I", "get", "this", "error", ":" ]
[ "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O" ]
[ "This", "is", "my", "code", "for", "creating", "the", "HttpClient" ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Class" ]
[ "I", "tried", "using", "TryAddWithoutValidation", "instead", "of", "Add", ":" ]
[ "O", "O", "O", "B-Function", "O", "O", "B-Function", "O" ]
[ "The", "error", "does", "n't", "get", "thrown", "but", "the", "header", "still", "does", "n't", "get", "added", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Any", "help", "would", "be", "great", "." ]
[ "O", "O", "O", "O", "O", "O" ]
[ "Here", "'s", "the", "inner", "workings", "of", "CheckName()", ",", "which", "is", "throwing", "the", "exception", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "B-Class", "O" ]
[ "You", "can", "find", "the", "source", "here", ":", "https://github.com/mono/mono/blob/master/mcs/class/System.Net.Http/System.Net.Http.Headers/HttpHeaders.cs" ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "After", "looking", "at", "the", "full", "source", "file", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "It", "looks", "like", "Content-Length", "is", "in", "the", "collection", "of", "known_headers", "." ]
[ "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "B-Variable", "O" ]
[ "Also", "looks", "like", "the", "internal", "type", "of", "the", "Content-Length", "header", "value", "is", "a", "long", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "B-Data_Type", "O" ]
[ "But", "the", "Add()", "method", "only", "take", "a", "string", "for", "the", "value", ",", "which", "get", "'s", "parsed", "to", "a", "long", "." ]
[ "O", "O", "B-Function", "O", "O", "O", "O", "B-Data_Type", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Type", "O" ]
[ "Is", "the", "string", "value", "that", "you", "'re", "passing", "for", "the", "Content-Length", "value", "a", "valid", "long", "?" ]
[ "O", "O", "B-Data_Type", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "B-Data_Type", "O" ]
[ "I", "have", "a", "problem", "with", "content", "from", "a", "div", ",", "for", "example", "if", "I", "put", "a", "table", "inside", "of", "a", "div", "and", "set", "a", "width", "(", "width:200px", "!", "important", ")", "for", "that", "div", "the",...
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-HTML_XML_Tag", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "B-HTML_XML_Tag", "O", "O", "O", "B-Variable", "O", "B-Code_Block", "O", "O", "O", "O", "O", "B-HTML_XML_Tag", "O"...
[ "So", "how", "is", "possible", "to", "keep", "all", "content", "inside", "that", "div", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-HTML_XML_Tag", "O" ]
[ "fiddle", "example", ":", "http://jsfiddle.net/ebG9N/45/" ]
[ "B-Application", "O", "O", "O" ]
[ "You", "set", "the", "header", "to", "white-space", ":", "nowrap", ";", "therefore", ",", "the", "browser", "is", "unable", "to", "break", "the", "headers", ",", "so", "the", "width", "of", "the", "table", "will", "be", "bigger", "than", "the", "containe...
[ "O", "O", "O", "B-User_Interface_Element", "O", "B-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "B-Variable", "O", "O", "B-User_Interface_Element", ...
[ "You", "can", "set", ",", "overflow", ":", "hidden", ";", "to", "cut", "the", "overflowing", "parts", ",", "or", "overflow", ":", "auto", ";", "to", "create", "a", "scrollbar", ",", "but", "without", "them", "it", "'s", "the", "correct", "rendering", "...
[ "O", "O", "O", "O", "B-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "O", "O", "O", "O", "O", "O", "O", "B-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O...
[ "There", "are", "two", "solutions", "." ]
[ "O", "O", "O", "O", "O" ]
[ "i)", "IF", "you", "want", "to", "STRICTLY", "contain", "table", "WITHIN", "div", "then", "overflow:auto", ";", "is", "the", "way", "to", "go", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "B-HTML_XML_Tag", "O", "B-Code_Block", "I-Code_Block", "O", "O", "O", "O", "O", "O" ]
[ "ii)", "BUT", "if", "you", "change", "your", "mind", "and", "want", "to", "WRAP", "div", "to", "the", "width", "of", "table", "then", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-HTML_XML_Tag", "O", "O", "B-Variable", "O", "B-User_Interface_Element", "O", "O" ]
[ "display:table", ";", "is", "the", "way", "to", "go", "." ]
[ "B-Code_Block", "I-Code_Block", "O", "O", "O", "O", "O", "O" ]
[ "Generally", "its", "bad", "idea", "to", "contain", "wider", "element", "within", "explicitly", "known", "less", "wider", "element", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "have", "come", "across", "a", "situation", "where", "I", "am", "reading", "a", "some", "log", "file", "and", "then", "counting", "the", "number", "of", "lines", "I", "encountered", "via", "the", "following", "code", "snippet", "." ]
[ "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", "O", "O", "O", "O", "O", "O" ]
[ "My", "problem", "is", "that", "when", "I", "try", "to", "read", "a", "file", "(", "CSV", ",", "Syslog", ",", "or", "any", "other", "wild", "format", ")", ",", "it", "runs", "just", "fine", "and", "gives", "me", "the", "right", "result", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-File_Type", "O", "B-File_Type", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "But", "when", "I", "try", "to", "run", "a", "file", "that", "was", "generated", "via", "a", "mac", ",", "it", "goes", "hay-wire", "and", "simply", "reports", "back", "that", "a", "single", "line", "was", "read", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Device", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Now", "my", "log", "file", "is", "large", ",", "I", "know", "that", "it", "has", "quite", "a", "few", "thousand", "lines", "of", "logs", ",", "but", "it", "just", "read", "a", "single", "line", "." ]
[ "O", "O", "B-File_Type", "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", "opened", "this", "file", "in", "Sublime", "and", "I", "could", "see", "all", "the", "separate", "lines", ",", "however", "when", "I", "viewed", "this", "file", "via", "VIM", ",", "It", "displayed", "only", "a", "single", "a", "file", "with", "a",...
[ "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Value", "I-Value", "B-Value", "O", "O", "...
[ "A", "sample", "of", "two", "lines", "is", "below", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "You", "can", "see", "that", "vim", "is", "displaying", "the", "^M", "character", "where", "it", "should", "have", "been", "a", "new", "line" ]
[ "O", "O", "O", "O", "B-Application", "O", "O", "O", "B-Value", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]