tokens
sequence
ner_tags
sequence
[ "Sometimes", "it", "may", "just", "be", "an", "artifact", "of", "trying", "to", "get", "equality", "right", ",", "and", "sometimes", "it", "might", "just", "simply", "be", "a", "bug", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "By", "the", "way", ":", "for", "the", "arithmetic", "operators", ",", "subclasses", "of", "Numeric", "actually", "have", "a", "more", "formal", "double-dispatch", "protocol", "using", "the", "coerce", "method", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O" ]
[ "If", "a", "Numeric", "object", "does", "n't", "know", "what", "to", "do", "with", "another", "Numeric", ",", "it", "will", "ask", "that", "other", "object", "to", "coerce", "the", "two", "objects", "to", "a", "type", "that", "does", "know", "that", "." ]
[ "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "For", "example", ",", "if", "you", "try", "to", "add", "a", "Quaternion", "to", "a", "Fixnum", ",", "the", "Fixnum", "wo", "n't", "know", "what", "to", "do", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "B-Class", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "+", "method", "of", "Fixnum", "will", "then", "call", ":" ]
[ "O", "B-Function", "O", "O", "B-Class", "O", "O", "O", "O" ]
[ "IOW", ":", "it", "will", "call", "Quaternion", "#coerce", "with", "the", "equivalent", "of" ]
[ "O", "O", "O", "O", "O", "B-Function", "I-Function", "O", "O", "O", "O" ]
[ "to", "which", "Quaternion", "will", "respond", "with", "an", "Array", "of", "[", "Quaternion.new(2,0,0,0)", ",", "Quaternion.new(1,0,0,0)", "]" ]
[ "O", "O", "B-Class", "O", "O", "O", "O", "B-Data_Structure", "O", "B-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block" ]
[ "Then", ",", "Fixnum#+", "will", "try", "again", "by", "simply", "calling" ]
[ "O", "O", "B-Function", "O", "O", "O", "O", "O", "O" ]
[ "Which", "will", "now", "work", "because", "a", "is", "a", "Quaternion", "also", "and", "knows", "how", "to", "add", "two", "Quaternions", "." ]
[ "O", "O", "O", "O", "O", "B-Variable", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O" ]
[ "A", "very", "common", "implementation", "of", "coerce", "is", "simply", "to", "swap", "the", "arguments", ",", "i.e", "." ]
[ "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "That", "'s", "equivalent", "to", "the", "behavior", "you", "are", "seeing", "with", "Fixnum#", "==", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "I-Function", "O" ]
[ "Again", ":", "this", "kind", "of", "dispatch", "is", "hard", "to", "get", "right", ",", "and", "there", "are", "improvements", "being", "made", "to", "the", "coerce", "protocol", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O" ]
[ "Ruby", "has", "four", "levels", "of", "object", "equivalence", ":" ]
[ "B-Language", "O", "O", "O", "O", "O", "O", "O" ]
[ "#equal", "?", "–", "same", "object" ]
[ "B-Function", "I-Function", "O", "O", "O" ]
[ "#eql", "?", "–", "highest", "level", "of", "equivalence", "below", "same", "object" ]
[ "B-Function", "I-Function", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "#", "==", "–", "\"", "standard", "\"", "equality" ]
[ "B-Function", "I-Function", "O", "O", "O", "O", "O" ]
[ "#", "==", "=", ",", "#", "=", "~", ",", "#hash", ",", "etc", "." ]
[ "B-Function", "I-Function", "I-Function", "O", "B-Function", "I-Function", "I-Function", "O", "B-Function", "O", "O", "O" ]
[ "–", "loose", "equivalence", ",", "\"", "same", "group", "\"", "equivalence" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Mindful", "programmer", "equips", "each", "of", "her", "classes", "with", "all", "of", "these", "methods", "except", "#equal", "?", ",", "which", "should", "never", "be", "overriden", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "I-Function", "O", "O", "O", "O", "O", "O", "O" ]
[ "Going", "back", "to", "the", "subject", "of", "your", "question", ",", "many", "built-in", "Ruby", "objects", "have", "their", "share", "of", "idiosyncrasies", "in", "the", "implementation", "of", "these", "methods", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Ruby", "core", "team", "constantly", "works", "to", "improve", "them", ",", "so", "you", "should", "make", "your", "way", "from", "1.8", "to", "2.0", ",", "which", "fixes", "a", "number", "of", "1.8", "problems", "." ]
[ "B-Language", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Version", "O", "B-Version", "O", "O", "O", "O", "O", "O", "B-Version", "O", "O" ]
[ "One", "more", "thing", "to", "mention", "with", "#", "==", "method", ",", "is", "that", "for", "the", "classes", "that", "represent", "elements", "of", "ordered", "sets", ",", "you", "do", "not", "implement", "#", "==", "directly", ",", "but", "instead", "you", "provide", "#<=>", "three-way", "comparison", "method,", "and", "include", "Comparable", "module,", "which", "gives", "you", "for", "free", "methods", "such", "as", "#==,", "#<,", "#>", ",", "#sort", ",", "etc", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Function", "I-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "I-Function", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "B-Library", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "I-Function", "I-Function", "O", "B-Function", "O", "O", "O" ]
[ "Yet", "one", "more", "thing", "to", "mention", "with", "all", "of", "these", "operators", "and", "operator-like", "methods", ",", "be", "mindful", "of", "the", "existence", "of", "#coerce", "method", ",", "which", "is", "currently", "undergoing", "improvements", "in", "Ruby", "2.0", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "B-Version", "O" ]
[ "I", "have", "a", "web", "application", "and", "it", "has", "two", "controller", "classes", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "two", "controllers", "have", "an", "action", "with", "FormCollection", "parameter", "with", "HTTPPost", "attribute", "decorated", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "B-Variable", "O", "O", "O" ]
[ "If", "I", "click", "on", "Form", "submit", "button", "then", "which", "action", "will", "be", "triggered", "to", "capture", "the", "form", "'s", "values", "within", "the", "controller", "." ]
[ "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O" ]
[ "Using", "the", "Form", "Collection", "class", "we", "can", "capture", "the", "form", "'s", "values", "within", "the", "controller.There", "are", "many", "ways", "to", "fetch", "these", "values", "and", "Form", "Collection", "is", "the", "one", "of", "them", "." ]
[ "O", "O", "B-Class", "I-Class", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "I-Class", "O", "O", "O", "O", "O", "O" ]
[ "http://tutorial.techaltum.com/Form-collection-in-MVC.html" ]
[ "O" ]
[ "http://www.c-sharpcorner.com/UploadFile/dacca2/understand-formcollection-in-mvc-controller/" ]
[ "O" ]
[ "Follow", "above", "link", "It", "will", "help", "you", "to", "understand", "more", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "'ve", "build", "the", "exoplayer", "ffmpeg", "extension", "and", "added", "to", "my", "project", ",", "because", "i", "need", "to", "support", "AMR", "format", ",", "so", ":" ]
[ "O", "O", "O", "O", "B-Class", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-File_Type", "O", "O", "O", "O" ]
[ "Following", "the", "tutorial", ":", "FFmpeg", "Extension" ]
[ "O", "O", "O", "O", "B-Application", "O" ]
[ "After", "the", "compilation", "step", ":" ]
[ "O", "O", "O", "O", "O" ]
[ "I", "'ve", "generated", "aar", "file", "with", ":" ]
[ "O", "O", "O", "B-File_Type", "O", "O", "O" ]
[ "So", "I", "got", "the", "extension-ffmpeg-debug.arr", "file", "generated", "and", "put", "it", "in", "the", "lib", "folder", "of", "my", "project", "." ]
[ "O", "O", "O", "O", "B-File_Name", "O", "O", "O", "O", "O", "O", "O", "B-File_Name", "O", "O", "O", "O", "O" ]
[ "My", "player", "implementation", ":" ]
[ "O", "O", "O", "O" ]
[ "The", "error", ":" ]
[ "O", "O", "O" ]
[ "What", "else", "should", "be", "configured", "to", "run", "the", "AMR", "format", ",", "does", "anyone", "have", "any", "suggestions", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-File_Type", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "How", "would", "I", "declare", "an", "array", "in", "Swift", "which", "can", "hold", "values", "of", "any", "enum", "String", "type", "?" ]
[ "O", "O", "O", "O", "O", "B-Data_Structure", "O", "B-Language", "O", "O", "O", "O", "O", "O", "B-Data_Type", "I-Data_Type", "O", "O" ]
[ "Here", "'s", "what", "I", "want", "to", "do", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "two", "enum", "types", "are", "loosely", "related", "but", "definitely", "distinct", "and", "I", "need", "to", "keep", "the", "values", "separated", "in", "this", "instance", ",", "so", "lumping", "them", "all", "together", "in", "one", "enum", "and", "declaring", "the", "array", "of", "type", "MyAllIncludingEnumType", "is", "not", "desirable", "." ]
[ "O", "O", "B-Data_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", "O", "B-Data_Type", "O", "O", "O", "B-Data_Structure", "O", "O", "B-Class", "O", "O", "O", "O" ]
[ "Or", "should", "I", "just", "declare", "an", "array", "of", "Strings", "and", "add", "the", "rawValues", "directly", "?" ]
[ "O", "O", "O", "O", "O", "O", "B-Data_Structure", "O", "B-Data_Type", "O", "O", "O", "B-Class", "O", "O" ]
[ "I", "could", "declare", "the", "array", "as", "[", "AnyObject", "]", "but", "then", "I", "'d", "have", "to", "type", "check", "each", "element", "before", "attempting", "to", "access", "the", ".rawValue", ",", "which", "is", "n't", "great", "either", "." ]
[ "O", "O", "O", "O", "B-Data_Structure", "O", "B-Library", "I-Library", "I-Library", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O" ]
[ "Currently", "I", "'m", "only", "able", "to", "use", "Swift", "1.2", "on", "this", "project", ",", "as", "it", "'s", "for", "an", "app", "which", "is", "already", "in", "the", "App", "Store", "and", "I", "need", "to", "be", "able", "to", "ship", "updates", "before", "Xcode", "7", "goes", "GM", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Language", "B-Version", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "I-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "B-Version", "O", "O", "O" ]
[ "Or", "is", "there", "a", "cleaner", "but", "completely", "alternate", "solution", "to", "what", "I", "want", "to", "do", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "An", "alternative", "to", "Kametrixom", "'s", "answer", "is", "to", "make", "both", "enums", "conform", "to", "a", "common", "protocol", "." ]
[ "O", "O", "O", "B-User_Name", "O", "O", "O", "O", "O", "O", "B-Data_Type", "O", "O", "O", "O", "O", "O" ]
[ "Both", "automatically", "conform", "to", "RawRepresentable", ",", "because", "of", "the", "raw", "value", "of", "String", ":" ]
[ "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "B-Data_Type", "O" ]
[ "However", ",", "you", "cannot", "use", "this", "as", "the", "type", "stored", "in", "the", "array", "since", "RawRepresentable", "is", "a", "generic", "protocol", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "O", "B-Class", "O", "O", "O", "O", "O" ]
[ "Instead", "you", "could", "do", ":" ]
[ "O", "O", "O", "O", "O" ]
[ "Just", "think", "about", "it", "logically", ":", "You", "want", "to", "store", "multiple", "enums", "in", "an", "array", ",", "so", "it", "can", "be", "either", "this", "or", "that", "enum", ",", "which", "is", "just", "what", "an", "enum", "is", "!" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Type", "O", "O", "B-Data_Structure", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Type", "O", "O", "O", "O", "O", "O", "B-Data_Type", "O", "O" ]
[ "You", "can", "declare", "an", "new", "enum", "that", "has", "associated", "values", "of", "all", "the", "accepted", "other", "enums", "like", "so", ":" ]
[ "O", "O", "O", "O", "O", "B-Data_Type", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Type", "O", "O", "O" ]
[ "Then", "you", "can", "create", "an", "array", "like", "this", ":" ]
[ "O", "O", "O", "O", "O", "B-Data_Structure", "O", "O", "O" ]
[ "I", "am", "trying", "to", "create", "an", "approval", "process", "right", "now", ",", "and", "in", "order", "to", "do", "so", ",", "I", "have", "a", "summary", "sheet", ",", "which", "current", "shows", "the", "details", "of", "the", "offers", "and", "then", "a", "detail", "sheet", ",", "where", "I", "am", "keeping", "a", "log", "of", "what", "is", "approved", "." ]
[ "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", "O", "O", "O" ]
[ "Currently", "you", "type", "the", "information", "of", "the", "offer", "into", "the", "second", "sheet", "(", "offer", "details", ")", ",", "and", "then", "the", "approver", "can", "view", "a", "drop", "down", "box", "to", "see", "what", "is", "open", "and", "needs", "to", "be", "approved", "." ]
[ "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", "I-User_Interface_Element", "I-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "have", "everything", "working", ",", "except", ",", "I", "need", "the", "approver", "to", "click", "a", "button", "and", "it", "will", "send", "the", "username", "of", "the", "approver", "and", "the", "date", "to", "the", "corresponding", "cell", "on", "the", "Offer", "Detail", "tab", "." ]
[ "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", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O" ]
[ "I", "have", "created", "a", "key", ",", "in", "H1", "which", "will", "allow", "the", "code", "to", "find", "the", "correct", "line", "what", "is", "column", "B", "on", "the", "offer", "details", "page", "matches", "what", "is", "in", "the", "Summary", "Tab", "in", "H1", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "have", "this", "code", "that", "I", "wrote", "below", ",", "but", "it", "is", "not", "working", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "cells", "where", "the", "username", "needs", "to", "go", "into", "column", "M", "on", "the", "offer", "detail", "sheet", "(", "once", "it", "finds", "the", "right", "row", "based", "on", "the", "key", "in", "the", "summary", ")", "." ]
[ "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "It", "has", "to", "be", "hardcoded", ",", "so", "I", "can", "keep", "it", "for", "audit", "purposes", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "If", "this", "does", "n't", "make", "sense", "let", "me", "know", "and", "I", "will", "try", "to", "clarify", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Thank", "you", "!" ]
[ "O", "O", "O" ]
[ "You", "can", "do", "this", "if", "you", "need", "colum", "\"", "M", "\"", "to", "be", "every", "time", ",", "base", "on", "your", "code", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "This", "question", "is", "related", "to", "another", "question", "I", "asked" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Basically", ",", "I", "have", "2", "horizontally", "aligned", "divs", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-HTML_XML_Tag", "O" ]
[ "Both", "sit", "inside", "a", "div", "called", "\"", ".Parent", "\"", ",", "so", "the", "structure", "is", "like", "this", ":" ]
[ "O", "O", "O", "O", "B-HTML_XML_Tag", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "problem", "is", "that", "the", "Parent", "div", "exists", "inside", "a", "another", "div", "called", "#main", "." ]
[ "O", "O", "O", "O", "O", "O", "B-HTML_XML_Tag", "O", "O", "O", "O", "B-HTML_XML_Tag", "O", "O", "O" ]
[ "#main", "has", "a", "white", "background", "that", "frames", "all", "of", "my", "content", "." ]
[ "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O" ]
[ "Before", "I", "added", "the", "floats", "to", "the", "divs", "inside", ".Parent", ",", "everything", "was", "fine", "because", "the", "containing", "Div", "pushed", "the", "white", "background", "down", "to", "the", "right", "size", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-HTML_XML_Tag", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "B-HTML_XML_Tag", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O" ]
[ "But", "now", "that", "the", "divs", "are", "floating", ",", "they", "do", "n't", "push", "#main", "'", "s", "white", "background", "down", "." ]
[ "O", "O", "O", "O", "B-HTML_XML_Tag", "O", "O", "O", "O", "O", "O", "O", "B-HTML_XML_Tag", "O", "O", "O", "B-User_Interface_Element", "O", "O" ]
[ "Can", "anyone", "suggest", "how", "to", "get", "the", "#main", "to", "recognise", "the", "size", "it", "'s", "supposed", "to", "strech", "down", "to", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "B-HTML_XML_Tag", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Should", "I", "approach", "this", "differently", "?" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "Thanks" ]
[ "O" ]
[ "Dave" ]
[ "B-User_Name" ]
[ "Actually", ",", "they", "ARE", "behaving", "correctly", "and", "parent", "divs", "are", "never", "to", "expand", "to", "contain", "floated", "elements", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-HTML_XML_Tag", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "As", "shown", "by", "other", "answers", ",", "you", "can", "Google", "for", "\"", "clear", "floats", "\"", "for", "more", "explanations", "and", "examples", "of", "how", "to", "do", "this", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Website", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Give", "your", "#main", "overflow:hidden", ";", "and", "optionall", "clear:both", ";" ]
[ "O", "O", "B-HTML_XML_Tag", "B-Code_Block", "I-Code_Block", "O", "O", "B-Code_Block", "I-Code_Block" ]
[ "I", "have", "an", "if", "else", "statement", "that", "change", "language", "Capabilitie", "EN", "to", "ENGLISH", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O" ]
[ "The", "thing", "is", "that", "its", "overwriting", "the", "other", "capabilities", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O" ]
[ "Thanks", "." ]
[ "O", "O" ]
[ "I", "have", "a", "Centos", "server", "and", "I", "install", "iptables", "on", "this", "for", "firewall", "." ]
[ "O", "O", "O", "B-Operating_System", "B-Device", "O", "O", "O", "B-Application", "O", "O", "O", "B-Application", "O" ]
[ "I", "want", "to", "connect", "iptables", "to", "monitoring", "system", "Like", "(", "Prtg", ",", "Solarwinds", ",", "Opmanger", ")" ]
[ "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "B-Application", "O", "B-Application", "O", "B-Application", "O" ]
[ "Is", "this", "possible", "?" ]
[ "O", "O", "O", "O" ]
[ "Yes" ]
[ "O" ]
[ "I", "do", "n't", "know", "what", "other", "monitoring", "systems", ",", "but", "you", "can", "do", "that", "with", "Solarwinds", "Server", "Application", "Monitor", ",", "by", "creating", "custom", "LinuxScript", "component", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "I-Application", "I-Application", "I-Application", "O", "O", "O", "O", "B-Class", "O", "O" ]
[ "You", "can", "find", "an", "example", "in", "thwack", "forum" ]
[ "O", "O", "O", "O", "O", "O", "B-Website", "O" ]
[ "In", "my", "django", "project", "i", "make", "an", "ajax", "call", "for", "dynamically", "display", "and", "populate", "fields", "." ]
[ "O", "O", "B-Library", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "First", "of", "all", ",", "in", "my", "template", "i", "create", "the", "element", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Template", "html" ]
[ "O", "B-Language" ]
[ "then", "in", "my", "js", ":" ]
[ "O", "O", "O", "B-Language", "O" ]
[ "start.js" ]
[ "B-File_Name" ]
[ "urls.py" ]
[ "B-File_Name" ]
[ "and", "finally", "my", "python", "function", "called", "from", "urls.py", ":" ]
[ "O", "O", "O", "B-Language", "O", "O", "O", "B-File_Name", "O" ]
[ "All", "done", ",", "my", "hidden", "div", "\"", "div_val", "\"", "in", "template", "was", "show", ",", "but", "now", "i", "ca", "n't", "understand", "how", "can", "i", "use", "the", "returned", "data", "in", "my", "template", ",", "for", ",", "for", "example", ",", "populate", "the", "value", "of", "the", "element", "inside", "the", "div", "(", "without", "using", "jquery", "inside", "my", "js", "func", "for", "do", "it", ")", "." ]
[ "O", "O", "O", "O", "O", "B-HTML_XML_Tag", "I-HTML_XML_Tag", "I-HTML_XML_Tag", "I-HTML_XML_Tag", "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", "B-HTML_XML_Tag", "O", "O", "O", "B-Library", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "How", "can", "i", "close", "the", "chain", "Template", "->", "js", "->", "urls", "->", "view", "method", "->", "Template", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Many", "Thanks", "in", "advance" ]
[ "O", "O", "O", "O" ]
[ "When", "you", "use", "server", "side", "rendering", ",", "you", "cannot", "close", "the", "\"", "chain", "\"", "you", "are", "refering", "to", "as", "easily", "." ]
[ "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "This", "is", "because", "what", "Django", "does", "in", "this", "case", "is", "serve", "all", "the", "HTML", "and", "JS", "(", "at", "leas", "the", "JS", "inside", "your", "HTML", "view", ")", "in", "a", "single", "initial", "response", "." ]
[ "O", "O", "O", "O", "B-Library", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "B-Language", "O", "O", "O", "O", "B-Language", "O", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "ajax", "requests", "you", "do", "after", "that", "will", "not", "be", "bound", "to", "the", "variables", "you", "send", "initially", "in", "your", "response", "because", "this", "variables", "are", "populated", "when", "the", "render()", "function", "is", "called", "." ]
[ "O", "B-Function", "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-Function", "O", "O", "O", "O" ]
[ "After", "that", "moment", ",", "you", "cannot", "add", "or", "update", "the", "variables", "that", "were", "sent", "to", "the", "HTML", "template", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "O" ]
[ "The", "only", "way", "you", "can", "manage", "rendering", "small", "parts", "of", "HTML", "is", "using", "JQuery", "or", "making", "your", "backend", "a", "REST", "API", "with", "Django", "Rest", "Framework", "and", "moving", "to", "a", "more", "complete", "frontend", "framework", "like", "Angular", "or", "React", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "O", "B-Library", "O", "O", "O", "O", "O", "O", "O", "O", "B-Library", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Library", "O", "B-Library", "O" ]