tokens
sequence
ner_tags
sequence
[ "If", "I", "would", "have", "2", "tables" ]
[ "O", "O", "O", "O", "O", "B-Data_Structure" ]
[ "How", "do", "I", "get", "this", "result" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "The", "following", "query", "needs", "to", "be", "adjusted", ",", "but", "I", "dont", "know", "how" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "SQLFIDDLE", ":", "http://sqlfiddle.com/#!9/11093" ]
[ "B-Application", "O", "O" ]
[ "You", "are", "very", "close", "." ]
[ "O", "O", "O", "O", "O" ]
[ "Just", "add", "a", "where", "clause", ":" ]
[ "O", "O", "O", "B-Code_Block", "O", "O" ]
[ "A", "more", "traditional", "approach", "uses", "NOT", "EXISTS", ":" ]
[ "O", "O", "O", "O", "O", "B-Code_Block", "I-Code_Block", "O" ]
[ "Here", "is", "a", "SQL", "Fiddle", "illustrating", "that", "the", "first", "works", "." ]
[ "O", "O", "O", "B-Application", "I-Application", "O", "O", "O", "O", "O", "O" ]
[ "I", "'m", "trying", "to", "make", "a", "little", "chat", "program", "after", "reading", "Beej", "'s", "guide", "to", "programming", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "And", "then", "I", "was", "thinking", "about", "the", "basics", "of", "the", "program", "itself", ",", "and", "I", "do", "n't", "know", "how", "to", "print", "output", "of", "recv()", "and", "get", "input", "for", "send()", "at", "the", "same", "time", ",", "because", "the", "client", "can", "always", "write", "something", "and", "send", ",", "but", "how", "is", "it", "possible", "to", "also", "print", "something", "while", "he", "'s", "trying", "to", "input", "?" ]
[ "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", "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", "O", "O", "O", "O", "O", "O" ]
[ "I", "thought", "about", "threads", ",", "and", "I", "learned", "a", "little", "bit", "about", "them", ",", "and", "I", "created", "2", "simple", "threads", ":", "The", "first", "one", ",", "prints", "a", "sentence", "every", "3", "seconds", ",", "and", "the", "second", "one", "get", "input", ",", "this", "little", "program", "of-course", "had", "a", "lot", "of", "issues", ",", "for", "ex", "." ]
[ "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", "O", "O", "O" ]
[ "if", "you", "started", "typing", ",", "and", "the", "other", "thread", "needs", "to", "print", "something", ",", "it", "will", "simply", "take", "what", "you", "wrote", ",", "and", "print", "it", "with", "itself", "output", "." ]
[ "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" ]
[ "Here", "is", "the", "code", ",", "I", "tried", "to", "recreate", "it", ",", "I", "hope", "you", "guys", "can", "help", "me", ".", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "You", "have", "undefined", "behavior", "in", "your", "code", ":", "You", "haven", "an", "uninitialized", "pointer", "input", "in", "getinput", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "B-Function", "O" ]
[ "Uninitialized", "(", "non-static", ")", "local", "variables", "have", "an", "indeterminate", "value", ",", "and", "it", "will", "seem", "to", "be", "random", "." ]
[ "O", "O", "B-Data_Type", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "As", "the", "value", "is", "indeterminate", "(", "and", "seemingly", "random", ")", "the", "scanf", "call", "will", "write", "to", "some", "unknown", "place", "in", "memory", ",", "overwriting", "whatever", "was", "there", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "You", "could", "easily", "solve", "this", "by", "making", "input", "an", "array", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "B-Data_Structure", "O" ]
[ "I", "have", "a", "C#", "/.NET", "application", "that", ",", "in", "multiple", "threads", "(", "i.e", ".", "concurrently", ",", "6", "threads", ")", ",", "tries", "to", "perform", "following", "update", ":" ]
[ "O", "O", "O", "B-Language", "B-Library", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "This", "is", "piece", "of", "code", "is", "run", "in", "the", "transaction", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Both", "tables", "have", "3+mio", "records", "." ]
[ "O", "O", "O", "O", "O", "O" ]
[ "Clustered", "key", "is", "on", "the", "[", "Id", "]", "field", ",", "there", "are", "some", "non-clustered", "indexes", "as", "well", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Funny", "thing", "is", "that", "I", "manually", "checked", "and", "in", "my", "particular", "example", "with", "3+mio", "records", "cWrh", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O" ]
[ "[", "Options", "]", "and", "cStg", "." ]
[ "O", "O", "O", "O", "B-Variable", "O" ]
[ "[", "Options", "]", "are", "always", "the", "same", "so", "in", "the", "end", "the", "update", "would", "not", "be", "necessary", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "'m", "attaching", "the", "deadlog", "graph", ",", "redacted", "values", "say", "DB.wrh.Cars", ":" ]
[ "O", "O", "O", "O", "O", "B-Data_Structure", "O", "O", "O", "O", "B-Variable", "O" ]
[ "Deadlock", "graph" ]
[ "O", "B-Data_Structure" ]
[ "Yes", ",", "in", "this", "particular", "example", "concurrency", "is", "not", "really", "adding", "any", "value", ",", "but", "this", "is", "the", "\"", "Reset", "\"", "query", ";", "the", "\"", "Recalculate", "\"", "query", "which", "does", "some", "[", "Options", "]", "calculation", "in", "C#", ",", "bulk", "inserts", "back", "into", "SQL", "and", "updates", "later", "in", "a", "concurrent", "mode", "speeds", "up", "the", "thing", "significantly", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Value", "I-Value", "I-Value", "O", "O", "O", "B-Value", "I-Value", "I-Value", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "would", "just", "like", "to", "stick", "to", "this", "concurrent", "approach", "regardless", "of", "the", "task", "(", "simple", "reset", "vs", "CPU", "intensive", "work", ")", "if", "possible", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Device", "O", "O", "O", "O", "O", "O" ]
[ "Any", "suggestion", "how", "to", "work", "around", "the", "deadlock", "is", "appreciated", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "As", "suggested", "by", "@KamranFarzami", ",", "the", "answer", "by", "@Grantly", "solved", "my", "problem", "." ]
[ "O", "O", "O", "B-User_Name", "O", "O", "O", "O", "B-User_Name", "O", "O", "O", "O" ]
[ "The", "point", "for", "answering", "this", "question", "goes", "to", "them", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Transaction", "Isolation", "Level", "of", "SNAPSHOT", "prevents", "deadlocks", "from", "ocurring", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "am", "trying", "to", "accomplish", "the", "following", "and", "I", "do", "n't", "know", "why", "I", "am", "struggling", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Create", "a", "new", "fiddle", "that", "contains", "a", "button", "with", "the", "text", "\"", "x2", "\"", "and", "the", "number", "1", "like", "this", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "B-Value", "I-Value", "I-Value", "O", "O", "O", "B-Value", "O", "O", "O" ]
[ "1", "x2" ]
[ "B-Value", "I-Value" ]
[ "Use", "Javascript", "to", "make", "it", "so", "that", "each", "time", "the", "button", "is", "clicked", ",", "the", "number", "above", "the", "x2", "button", "will", "double", "." ]
[ "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "B-Value", "B-User_Interface_Element", "O", "O", "O" ]
[ "Send", "me", "the", "link", "to", "the", "fiddle", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Application", "O" ]
[ "Here", "is", "what", "I", "have", "thus", "far", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "know", "I", "am", "targeting", "the", "button", "via", "JS", "but", "I", "cannot", "figure", "out", "how", "to", "return", "the", "updated", "value", "when", "the", "x2", "button", "is", "clicked", "." ]
[ "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Value", "B-User_Interface_Element", "O", "O", "O" ]
[ "Try", "this", ":" ]
[ "O", "O", "O" ]
[ "Look", "at", "what", "this", "code", "is", "doing", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "You", "are", "multiplying", "an", "element", "by", "two", ",", "you", "are", "NOT", "reading", "the", "text", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "You", "want", "to", "use", "innerHTML", "or", "textContent", "." ]
[ "O", "O", "O", "O", "B-Function", "O", "B-Function", "O" ]
[ "That", "returns", "a", "string", ",", "so", "you", "want", "to", "use", "parseInt()", "or", "parseFloat()", "." ]
[ "O", "O", "O", "B-Data_Type", "O", "O", "O", "O", "O", "O", "B-Function", "O", "B-Function", "O" ]
[ "If", "we", "override", "parent", "class", "'s", "method", ",", "we", "can", "use", "super()", "to", "avoid", "mention", "of", "parent", "class", "'s", "name", "-", "that", "'s", "clear", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "But", "what", "about", "case", ",", "when", "we", "just", "use", "in", "subclass", "some", "function", "defined", "in", "parent", "class", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "What", "is", "preferable", "way", ":", "to", "use", "super().parent_method()", "or", "self.parent_method()", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "B-Function", "O" ]
[ "Or", "there", "'s", "no", "difference", "?" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "actually", "super()", "is", "not", "syntactic", "sugar", ",", "its", "purpose", "is", "to", "invoke", "parent", "implementation", "of", "a", "certain", "method", "." ]
[ "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "You", "have", "to", "use", "super()", "when", "you", "want", "to", "override", "a", "parent", "method", ",", "you", "do", "n't", "have", "to", "use", "super()", "when", "instead", "you", "want", "to", "overwrite", "a", "method", "." ]
[ "O", "O", "O", "O", "B-Function", "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", "O" ]
[ "The", "difference", "is", "that", "in", "the", "first", "case", "you", "want", "to", "add", "extra", "behavior", "(", "aka", "code", "execution", ")", "before", "or", "after", "the", "original", "implementation", ",", "in", "the", "second", "you", "want", "a", "completely", "different", "implementation", "." ]
[ "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" ]
[ "You", "ca", "n't", "use", "self.method_name()", "in", "an", "override", ",", "the", "result", "will", "be", "a", "recursion", "error", "!" ]
[ "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "(", "RuntimeError", ":", "maximum", "recursion", "depth", "exceeded", ")" ]
[ "O", "B-Error_Name", "O", "O", "O", "O", "O", "O" ]
[ "Example", ":" ]
[ "O", "O" ]
[ "Given", "a", "base", "class", "A", ",", "with", "a", "method", "m", ",", "B", "extends", "A", "by", "overriding", "m", ",", "C", "extends", "A", "by", "overwriting", "m", ",", "and", "D", "generates", "an", "error", "!" ]
[ "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "B-Function", "O", "B-Class", "O", "B-Class", "O", "O", "B-Function", "O", "B-Class", "O", "B-Class", "O", "O", "B-Function", "O", "O", "B-Class", "O", "O", "O", "O" ]
[ "EDIT", ":" ]
[ "O", "O" ]
[ "I", "just", "realized", "that", "you", "actually", "have", "2", "different", "methods", "(", "test_a", "and", "test_b", ")", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "B-Function", "O", "O" ]
[ "My", "answer", "is", "still", "valid", ",", "but", "regarding", "your", "specific", "scenario", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "you", "should", "use", "self.test_a()", "unless", "you", "override/overwrite", "that", "method", "in", "your", "class", "B", "and", "you", "want", "to", "execute", "the", "original", "implementation.", ".", "so", "we", "can", "say", "that", "calling", "super().test_a()", "or", "self.test_a()", "it", "'s", "the", "same", "given", "that", "you", "'ll", "never", "override/overwrite", "the", "original", "test_a()", "in", "your", "subclasses.", ".", "however", "is", "a", "nonsense", "to", "use", "super()", "if", "not", "for", "an", "override/overwrite" ]
[ "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O" ]
[ "Usually", "you", "will", "want", "to", "use", "self.test_a()", "to", "call", "an", "inherited", "method", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O" ]
[ "However", ",", "in", "some", "rare", "situations", "you", "might", "want", "to", "use", "super().test_a()", "even", "though", "it", "seems", "to", "do", "the", "same", "thing", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "They", "'re", "not", "equivalent", ",", "even", "though", "they", "have", "the", "same", "behavior", "in", "your", "example", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "To", "explore", "the", "differences", ",", "lets", "make", "two", "versions", "of", "your", "B", "class", ",", "one", "with", "each", "kind", "of", "call", ",", "then", "make", "two", "C", "classes", "that", "further", "extend", "the", "B", "classes", "and", "override", "test_a", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "B-Function", "O" ]
[ "When", "you", "call", "the", "test_b()", "method", "on", "C1", "and", "C2", "instances", "you", "'ll", "get", "different", "results", ",", "even", "though", "B1", "and", "B2", "behave", "the", "same", ":" ]
[ "O", "O", "O", "O", "B-Function", "O", "O", "B-Class", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "B-Class", "O", "O", "O", "O" ]
[ "This", "is", "because", "the", "super()", "call", "in", "B2.test_b", "tells", "Python", "that", "you", "want", "to", "skip", "the", "version", "of", "test_a", "in", "any", "more", "derived", "class", "and", "always", "call", "an", "implementation", "from", "a", "parent", "class", "." ]
[ "O", "O", "O", "O", "B-Function", "O", "O", "B-Function", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "(", "Actually", ",", "I", "suppose", "it", "could", "be", "a", "sibling", "class", "in", "a", "multiple", "inheritance", "situation", ",", "but", "that", "'s", "getting", "even", "more", "obscure", ".", ")" ]
[ "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" ]
[ "Like", "I", "said", "at", "the", "top", ",", "you", "usually", "want", "to", "allow", "a", "more-derived", "class", "like", "the", "Cs", "to", "override", "the", "behavior", "of", "the", "inherited", "methods", "you", "'re", "calling", "in", "your", "less-derived", "class", "." ]
[ "O", "O", "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", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "That", "means", "that", "most", "of", "the", "time", "using", "self.whatever", "is", "the", "way", "to", "go", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Code_Block", "O", "O", "O", "O", "O", "O" ]
[ "You", "only", "need", "to", "use", "super", "when", "you", "'re", "doing", "something", "fancy", "." ]
[ "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "'d", "like", "to", "change", "an", "object", "'s", "parameter", ",", "but", "I", "like", "to", "decide", "later", "about", "what", "'s", "the", "parameter", "that", "should", "change", "." ]
[ "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", "thinking", "to", "make", "a", "function", "for", "that", ",", "but", "do", "n't", "know", "how", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Here", "'s", "a", "sample", ":" ]
[ "O", "O", "O", "O", "O" ]
[ "How", "to", "make", "a", "function", "that", "returns", "what", "'s", "the", "parameter", "of", "an", "object", "that", "needs", "to", "be", "changed", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Alternatively", ",", "how", "to", "choose", "which", "parameter", "to", "change", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "(", "I", "..", "thought", "about", "switch", "statement", "." ]
[ "O", "O", "O", "O", "O", "B-Code_Block", "O", "O" ]
[ "Is", "a", "good", "direction", "?", ")" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "I", "'m", "pretty", "sure", "that", "'s", "something", "that", "has", "already", "been", "discussed", "on", "internet", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "'ve", "read", "everything", "about", "functions", "and", "could", "n't", "find", "the", "solution", ",", "so", "I", "guess", "I", "'m", "searching", "using", "wrong", "keywords", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "If", "Carinherits", "from", "NSObject", "you", "get", "key-value-coding", "for", "free", "and", "can", "change", "the", "value", "with", "setValue:forKey" ]
[ "O", "B-Variable", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Code_Block" ]
[ "You", "do", "n't", "need", "to", "create", "a", "function", "you", "can", "use", "KVC", "like", "this", "after", "you", "inherit", "from", "NSObject", ",", "or", "you", "can", "make", "a", "new", "func", "that", "guards", "again", "bad", "property", "names", "." ]
[ "O", "O", "O", "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", "O", "O", "O", "O", "O", "O", "O" ]
[ "Keep", "in", "mind", "that", "this", "code", "will", "crash", "if", "you", "enter", "bad", "property", "names", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Hope", "this", "answers", "your", "question", "." ]
[ "O", "O", "O", "O", "O", "O" ]
[ "I", "have", "been", "using", "haskell", "for", "a", "while", "now", "." ]
[ "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O" ]
[ "I", "understand", "most/some", "of", "the", "concepts", "but", "I", "still", "do", "not", "understand", ",", "what", "exactly", "does", "haskells", "type", "system", "allow", "me", "to", "do", "that", "I", "cannot", "do", "in", "another", "statically", "typed", "language", "." ]
[ "O", "O", "O", "O", "O", "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", "O", "O", "O" ]
[ "I", "just", "intuitively", "know", "that", "haskells", "type", "system", "is", "better", "in", "every", "imaginable", "way", "compared", "to", "the", "type", "system", "in", "C", ",", "C++", "or", "java", ",", "but", "I", "ca", "n't", "explain", "it", "logically", ",", "primarily", "because", "of", "a", "lack", "of", "in", "depth", "knowledge", "about", "the", "differences", "in", "type", "systems", "between", "haskell", "and", "other", "statically", "typed", "languages", "." ]
[ "O", "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "B-Language", "O", "B-Language", "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-Language", "O", "O", "O", "O", "O", "O" ]
[ "Could", "someone", "give", "me", "examples", "of", "how", "haskells", "type", "system", "is", "more", "helpful", "compared", "to", "a", "language", "with", "a", "static", "type", "system", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Type", "O", "O", "O" ]
[ "Examples", ",", "that", "are", "terse", "and", "can", "be", "succinctly", "expressed", "would", "be", "nice", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "Haskell", "type", "system", "has", "a", "number", "of", "features", "which", "all", "exist", "in", "other", "languages", ",", "but", "are", "rarely", "combined", "within", "a", "single", ",", "consistent", "language", ":" ]
[ "O", "B-Language", "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" ]
[ "it", "is", "a", "sound", ",", "static", "type", "system", ",", "meaning", "that", "a", "number", "of", "errors", "are", "guaranteed", "not", "to", "happen", "at", "runtime", "without", "needing", "runtime", "type", "checks", "(", "this", "is", "also", "the", "case", "in", "Caml", ",", "SML", "and", "almost", "the", "case", "in", "Java", ",", "but", "not", "in", ",", "say", ",", "Lisp", ",", "Python", ",", "C", ",", "or", "C++", ")", ";" ]
[ "O", "O", "O", "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", "O", "O", "B-Language", "O", "B-Language", "O", "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "B-Language", "O", "B-Language", "O", "O", "B-Language", "O", "O" ]
[ "it", "peforms", "static", "type", "reconstruction", ",", "meaning", "that", "the", "programmer", "does", "n't", "need", "to", "write", "types", "unless", "he", "wants", "to", ",", "the", "compiler", "will", "reconstruct", "them", "on", "its", "own", "(", "this", "is", "also", "the", "case", "in", "Caml", "and", "SML", ",", "but", "not", "in", "Java", "or", "C", ")", ";" ]
[ "O", "O", "B-Data_Type", "O", "O", "O", "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", "O", "O", "B-Language", "O", "B-Language", "O", "O", "O", "O", "B-Language", "O", "B-Language", "O", "O" ]
[ "it", "supports", "impredicative", "polymorphism", "(", "type", "variables", ")", ",", "even", "at", "higher", "kinds", "(", "unlike", "Caml", "and", "SML", ",", "or", "any", "other", "production-ready", "language", "known", "to", "me", ")", ";" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "it", "has", "good", "support", "for", "overloading", "(", "type", "classes", ")", "(", "unlike", "Caml", "and", "SML", ")", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "B-Language", "O", "O" ]
[ "Whether", "any", "of", "those", "make", "Haskell", "a", "better", "language", "is", "open", "to", "discussion", "—", "for", "example", ",", "while", "I", "happen", "to", "like", "type", "classes", "a", "lot", ",", "I", "know", "quite", "a", "few", "Caml", "programmers", "who", "strongly", "dislike", "overloading", "and", "prefer", "to", "use", "the", "module", "system", "." ]
[ "O", "O", "O", "O", "O", "B-Language", "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-Language", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "On", "the", "other", "hand", ",", "the", "Haskell", "type", "system", "lacks", "a", "few", "features", "that", "other", "languages", "support", "elegantly", ":" ]
[ "O", "O", "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "it", "has", "no", "support", "for", "runtime", "dispatch", "(", "unlike", "Java", ",", "Lisp", ",", "and", "Julia", ")", ";" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "B-Language", "O", "O", "B-Language", "O", "O" ]
[ "it", "has", "no", "support", "for", "existential", "types", "and", "GADTs", "(", "these", "are", "both", "GHC", "extensions", ")", ";" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "it", "has", "no", "support", "for", "dependent", "types", "(", "unlike", "Coq", ",", "Agda", "and", "Idris", ")", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "B-Language", "O", "B-Language", "O", "O" ]
[ "Again", ",", "whether", "any", "of", "these", "are", "desirable", "features", "in", "a", "general-purpose", "programming", "language", "is", "open", "to", "discussion", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "One", "major", "difference", "between", "Haskell", "'s", "type", "system", "and", "that", "of", "most", "OO", "languages", "is", "that", "the", "ability", "for", "a", "function", "to", "have", "side", "effects", "is", "represented", "by", "a", "data", "type", "(", "a", "monad", "such", "as", "IO", ")", "." ]
[ "O", "O", "O", "O", "B-Language", "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-Data_Type", "O", "O", "B-Data_Type", "O", "O" ]
[ "This", "allows", "you", "to", "write", "pure", "functions", "that", "the", "compiler", "can", "verify", "are", "side-effect-free", "and", "referentially", "transparent", ",", "which", "generally", "means", "that", "they", "'re", "easier", "to", "understand", "and", "less", "prone", "to", "bugs", "." ]
[ "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", "O", "O", "O", "O", "O", "O" ]