tokens
list
ner_tags
list
[ "find", "first", "rowA", "of", "value", "1", "(", "from", "B", ")" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O" ]
[ "find", "first", "rowA", "of", "value", "0", "(", "from", "B", ")" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O" ]
[ "find", "first", "rowA", "of", "value", "5", "(", "from", "B", ")" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O" ]
[ "I", "should", "have", "at", "the", "end", "C", "=[", "2", "2", "1", "2", "2", "]" ]
[ "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" ]
[ "Your", "code", "is", "almost", "correct", "." ]
[ "O", "O", "O", "O", "O", "O" ]
[ "You", "must", "initialize", "the", "index-variable", ":" ]
[ "O", "O", "O", "O", "B-Variable", "O" ]
[ "In", "MySQL", ",", "is", "it", "possible", "to", "store", "a", "type", "in", "a", "variable", "and", "use", "it", "in", "following", "expressions", "?" ]
[ "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "reason", "is", "to", "reduce", "code", "duplicity", "and", "avoid", "possible", "problems", "when", "editing", "existing", "scripts", "when", "it", "is", "mandatory", "to", "use", "the", "same", "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" ]
[ "For", "example", ":" ]
[ "O", "O", "O" ]
[ "I", "had", "1", "perl", "script", "in", "which", "we", "write", "couple", "of", "subroutines", "." ]
[ "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Example", ":" ]
[ "O", "O" ]
[ "Now", ",", "i", "wrote", "another", "script", "Try_2.pl", ",", "in", "which", "i", "want", "to", "call", "check", "subroutine", "of", "perl", "script", "Try_1.pl", "." ]
[ "O", "O", "O", "O", "O", "O", "B-File_Name", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "B-File_Name", "O" ]
[ "It", "sounds", "like", "you", "want", "to", "create", "a", "module", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Try_1.pm", "(", "Edit", ":", "note", "extension", ")", "should", "have", "the", "following", "form", ":" ]
[ "B-File_Name", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "And", "then", "Try_2.pl", "needs", "to", "get", "that", "code", ":" ]
[ "O", "O", "B-File_Name", "O", "O", "O", "O", "O", "O" ]
[ "That", "what", "you", "'re", "looking", "for", "?" ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "If", "you", "are", "not", "using", "modules", "(", "extension", ".pm", ")", "but", "instead", "use", "libraries", "(", "extension", ".pl", ")", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-File_Type", "O", "O", "O", "O", "O", "O", "O", "B-File_Type", "O", "O" ]
[ "Make", "sure", "that", "both", "files", "Try_1.pl", "and", "Try_2.pl", "are", "in", "the", "same", "directory", "." ]
[ "O", "O", "O", "O", "O", "B-File_Name", "O", "B-File_Name", "O", "O", "O", "O", "O", "O" ]
[ "Should", "I", "use", "ArrayList", ",", "Vectors", ",", "HashMp", "or", "is", "there", "anything", "else", "I", "should", "use", "to", "store", "data", "from", "a", "bank", "program", "I", "am", "working", "on", "." ]
[ "O", "O", "O", "B-Class", "O", "B-Class", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "am", "trying", "to", "store", "the", "user", "information", "in", "an", "one", "of", "them", "and", "then", "send", "it", "to", "a", "file", ",", "which", "should", "I", "use", "?" ]
[ "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" ]
[ "Thank", "you", "." ]
[ "O", "O", "O" ]
[ "To", "decide", "between", "using", "an", "ArrayList/Vector", "or", "a", "HashMap", "depends", "on", "whether", "you", "have", "key-value", "pairs", "or", "simple", "a", "list", "of", "elements", "." ]
[ "O", "O", "O", "O", "O", "B-Class", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "O", "O", "O" ]
[ "For", "key-value", "pairs", "a", "HashMap", "is", "the", "go-to", "option", "(", "e.g", "name", "-", "person", "object", ")", "." ]
[ "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "B-Variable", "O", "O", "O" ]
[ "If", "you", "just", "have", "objects", "but", "no", "real", "keys", "(", "a", "list", "of", "trees", "in", "a", "forest", ")", "then", "a", "ArrayList", "or", "Vector", "would", "be", "better", "." ]
[ "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "B-Class", "O", "O", "O", "O" ]
[ "The", "difference", "between", "Vector", "and", "ArrayList", "is", "more", "subtle", "." ]
[ "O", "O", "O", "B-Class", "O", "B-Class", "O", "O", "O", "O" ]
[ "If", "you", "want", "more", "information", "on", "the", "difference", "between", "the", "two", "you", "can", "read", "this", "article", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "But", "as", "the", "article", "is", "from", "2001", ",", "the", "information", "is", "n't", "the", "newest", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "In", "most", "cases", ",", "the", "ArrayList", "is", "the", "better", "choice", "and", "Vector", "is", "pretty", "much", "considered", "deprecated", "nowadays", "." ]
[ "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O" ]
[ "As", "the", "biggest", "difference", "between", "the", "two", "is", ",", "that", "Vector", "is", "synchronized", "while", "ArrayList", "is", "n't", ",", "which", "in", "most", "cases", ",", "makes", "the", "Vector", "slower", "than", "the", "ArrayList", "...
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O" ]
[ "For", "more", "information", "you", "can", "look", "at", "this", "question", ":", "Why", "is", "Java", "Vector", "class", "considered", "obsolete", "or", "deprecated", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "B-Class", "O", "O", "O", "O", "O", "O" ]
[ "I", "am", "coding", "in", "Qt", "C++", "." ]
[ "O", "O", "O", "O", "B-Application", "B-Language", "O" ]
[ "I", "am", "declaring", "a", "literal", "double", "value", "in", "my", "main", "rountine", "of", "0.1", "." ]
[ "O", "O", "O", "O", "O", "B-Data_Type", "O", "O", "O", "O", "O", "O", "B-Value", "O" ]
[ "I", "then", "pass", "this", "variable", "to", "a", "function", "that", "takes", "type", "double", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Type", "O" ]
[ "When", "I", "hover", "the", "mouse", "over", "the", "variable", "in", "debug", "mode", "I", "see", "0.100000000000001" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Value" ]
[ "What", "is", "the", "cause", "of", "this", "change", "and", "how", "do", "I", "stop", "it", "please", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Method", "Definition", ":" ]
[ "O", "O", "O" ]
[ "Method", "Call", "with", "literal", "value", "of", "0.1", ":" ]
[ "O", "O", "O", "O", "O", "O", "B-Value", "O" ]
[ "My", "environment", "is", "Windows", "64", "bit", "OS", "using", "Qt", "5.2.1", "and", "compiling", "using", "Microsoft", "2010", "Visual", "Studio", "compiler", "in", "32", "bit", "." ]
[ "O", "O", "O", "B-Operating_System", "B-Version", "O", "O", "O", "B-Application", "B-Version", "O", "O", "O", "B-Application", "I-Application", "I-Application", "I-Application", "I-Application", "O", "O", "O", "O" ]
[ "Many", "decimal", "numbers", "are", "not", "exactly", "representable", "in", "IEEE", "floating", "point", "(", "i.e", ".", "the", "binary", "representation", "used", "for", "double", ")", "and", "0.1", "falls", "in", "this", "camp", "." ]
[ "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-Value", "O", "O", "O", "O", "O" ]
[ "When", "you", "type", "0.1", "the", "C++", "compiler", "is", "required", "to", "convert", "that", "into", "a", "double", "to", "be", "represented", "on", "your", "hardware", "." ]
[ "O", "O", "O", "B-Value", "O", "B-Language", "B-Application", "O", "O", "O", "O", "O", "O", "O", "B-Data_Type", "O", "O", "O", "O", "O", "O", "O" ]
[ "It", "does", "so", "by", "computing", "a", "near", "approximation", "of", "this", "and", "so", "you", "see", "a", "bit", "of", "error", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "If", "you", "try", "something", "like", "a", "power", "of", "two", ":", "0.5", ",", "0.25", "these", "will", "be", "exactly", "represented", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Value", "O", "B-Value", "O", "O", "O", "O", "O", "O" ]
[ "See", "this", "link", "for", "a", "much", "more", "in-depth", "description", "of", "the", "idea", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "This", "is", "normal", "behaviour", "in", "any", "computer", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Device", "O" ]
[ "It", "'s", "caused", "by", "the", "fact", "that", "decimal", "numbers", "are", "being", "stored", "in", "fixed-sized", "binary", "memory", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Data_Type", "I-Data_Type", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "extra", "digits", "come", "from", "the", "inherent", "errors", "caused", "by", "converting", "from", "binary", "to", "decimal", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "You", "will", "not", "get", "rid", "of", "them", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", "best", "you", "can", "do", "is", "choose", "a", "precision", "(", "either", "float", "or", "double", ")", "that", "is", "big", "enough", "so", "that", "the", "extra", "error", "digits", "will", "not", "make", "any", "difference", "to", "your", ...
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Type", "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", "O...
[ "When", "my", "view", "controller", "is", "first", "presented", ",", "I", "want", "it", "to", "potentially", "update", "a", "cache", "that", "provides", "the", "data", "for", "that", "view", "." ]
[ "O", "O", "B-Class", "I-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "However", ",", "when", "the", "user", "taps", "the", "back", "button", "from", "a", "deeper", "view", "controller", "to", "return", "to", "this", "view", "controller", ",", "I", "do", "n't", "want", "to", "update", "the", "cache", "again", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "B-Class", "I-Class", "O", "O", "O", "O", "B-Class", "I-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Which", "event", "should", "I", "be", "using", "?" ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "in", "init", ",", "I", "do", "n't", "have", "all", "the", "parameters", "I", "need", "yet", "." ]
[ "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "viewWillAppear", "will", "be", "fired", "every", "time", "the", "view", "will", "appear", "." ]
[ "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "viewDidLoad", "will", "be", "fired", "every", "time", "the", "view", "has", "been", "loaded", "from", "the", "nib", ",", "which", "I", "believe", "could", "happen", "a", "second", "time", "if", "there", "'s", "a", "memory", "warning", "." ]
[ "B-Function", "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" ]
[ "(", "Or", "is", "this", "wrong", "?", ")" ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "Since", "this", "is", "not", "a", "memory", "resident", "cache", ",", "it", "seems", "the", "wrong", "place", "to", "handle", "this", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "having", "the", "caller", "call", "something", "extra", "is", "inelegant", ",", "if", "there", "'s", "a", "built-in", "way", "to", "handle", "this", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "To", "clarify", ",", "this", "is", "not", "a", "memory", "resident", "cache", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "This", "is", "parsing", "an", "XML", "file", "to", "binary", "." ]
[ "O", "O", "O", "O", "B-File_Type", "O", "O", "B-File_Type", "O" ]
[ "The", "binary", "is", "loaded", "and", "unloaded", "in", "viewDidLoad", "and", "viewDidUnload", "." ]
[ "O", "B-File_Type", "O", "O", "O", "O", "O", "B-Function", "O", "B-Function", "O" ]
[ "This", "is", "a", "prerequisite", "for", "that", "step", ",", "making", "sure", "the", "binary", "is", "up-to-date", "prior", "to", "it", "being", "loaded", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-File_Type", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "load", "the", "cache", "in", "viewDidLoad", "and", "release", "it", "in", "viewDidUnload", "and", "dealloc", "." ]
[ "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "B-Function", "O", "B-Function", "O" ]
[ "viewDidUnload", "is", "called", "during", "low-memory", "conditions", "." ]
[ "B-Function", "O", "O", "O", "O", "O", "O" ]
[ "if", "you", "want", "your", "app", "to", "remain", "responsive", ",", "you", "'d", "free", "up", "as", "much", "memory", "as", "you", "can", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "well", "explained", "here", ":", "When", "should", "I", "release", "objects", "in", "-(void)viewDidUnload", "rather", "than", "in", "-dealloc", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "B-Function", "O" ]
[ "Using", "init", "may", "work", ",", "but", "I", "would", "recommend", "a", "simple", "subclass", "of", "UINavigationController", "." ]
[ "O", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O" ]
[ "Create", "a", "new", "method", "called", "setRootTableViewController", ":(", "UITableViewController", "*)", "controller", ",", "or", "something", "like", "it", "." ]
[ "O", "O", "O", "O", "O", "B-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "O", "O", "O", "O", "O", "O" ]
[ "In", "the", "method", "implementation", "call", "this", ":" ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "reloadData", "will", "call", "all", "of", "your", "delegate", "and", "data", "source", "methods", ",", "and", "use", "them", "to", "update", "the", "table", "." ]
[ "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O" ]
[ "If", "you", "want", "a", "special", "method", "call", "on", "your", "table", "view", "controller", "instead", ",", "you", "could", "change", "the", "method", "declaration", "to", "setRootTableViewController", ":(", "CustomTableViewController", "*)", "controller", ...
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "I-Class", "I-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "O", "O", "O", "O", "O", "O", "O", "O", "O", ...
[ "Then", ",", "in", "your", "app", "delegate", ",", "instead", "of", "creating", "a", "UINavigationController", "and", "adding", "your", "custom", "view", "controller", ",", "create", "one", "of", "these", ",", "and", "call", "this", "method", "to", "add", ...
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "B-Class", "I-Class", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "However", ",", "if", "you", "are", "using", "a", "nib", "to", "set", "the", "rootViewController", ",", "you", "can", "just", "override", "initWithRootViewController", ":(", "UIViewController", "*)", "controller", ",", "as", "I", "imagine", "that", "is", "what...
[ "O", "O", "O", "O", "O", "O", "O", "B-File_Type", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "B-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "O", "O", "O", "O", "O", "O", "O", "O", "B-File_Type", "O", "O", "O",...
[ "Hope", "this", "helps", "!" ]
[ "O", "O", "O", "O" ]
[ "This", "query", "works", "in", "data", "studio", ",", "but", "fails", "to", "show", "alias", "in", "MS", "Query", "!" ]
[ "O", "O", "O", "O", "B-Application", "I-Application", "O", "O", "O", "O", "O", "O", "O", "B-Application", "I-Application", "O" ]
[ "I", "have", "tried", "different", "types", "such", "as", "\"\",'',[]", "and", "even", "https://support.microsoft.com/en-us/kb/298955" ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Value", "O", "O", "O" ]
[ "SELECT", "'", "TRANIN'AS", "NAME", ",", "SUM", "(", "CASE", "WHEN", "ALT3.TRANINDT", "BETWEEN", "20150603", "AND", "20150601", "THEN", "1", "else", "0", "END", ")", "AS", "CurrentMonth", ",", "SUM", "(", "CASE", "WHEN", "ALT3.TRANINDT", "BETWEEN", "20150501...
[ "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-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Bl...
[ "FROM", "ALT3" ]
[ "B-Code_Block", "I-Code_Block" ]
[ "MS", "broke", "MS", "query", "a", "long", "time", "ago", "..", "." ]
[ "B-Website", "O", "B-Application", "I-Application", "O", "O", "O", "O", "O", "O" ]
[ "I", "'ve", "tried", "to", "get", "it", "to", "work", "right", ",", "but", "nothing", "worked", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "'ve", "pretty", "much", "given", "up", "." ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "Normally", "I", "just", "rename", "the", "column", "once", "the", "data", "is", "back", "in", "Excel", "." ]
[ "O", "O", "O", "O", "O", "B-Data_Structure", "O", "O", "O", "O", "O", "O", "B-Application", "O" ]
[ "But", "if", "you", "really", "want", "the", "name", "returned", "from", "MS", "query", ",", "this", "works", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "I-Application", "O", "O", "O", "O" ]
[ "I", "do", "n't", "know", "why", ",", "but", "i", "ca", "n't", "pick", "the", "value", "of", "the", "person__name", "and", "person__email", ",", "the", "most", "strange", "part", "is", "that", "i", "can", "pick", "the", "value", "in", "the", "console",...
[ "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", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "B-Application", "I-Application", "O"...
[ "This", "is", "not", "a", "problem", "of", "html", "the", "2", "inputs", "fields", "have", "the", "id", "person__name", "and", "person__email", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Language", "O", "O", "B-User_Interface_Element", "I-User_Interface_Element", "O", "O", "O", "B-Variable", "O", "B-Variable", "O" ]
[ "The", "code", "is", "in", "a", "external", "file", ",", "and", "i", "am", "calling", "that", "in", "the", "bottom", "of", "my", "html", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O" ]
[ "HTML", ":" ]
[ "B-Language", "O" ]
[ "I", "cant", "use", "the", "submit", "input", "." ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "UPDATE", ":" ]
[ "O", "O" ]
[ "The", "scripts", "in", "the", "bottom", "of", "the", "page", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Inside", "the", "main", "script", ":" ]
[ "O", "O", "O", "O", "O" ]
[ "If", "you", "want", "to", "alert", "the", "name", ",", "make", "sure", "you", "use", "the", "name", "in", "the", "jQuery" ]
[ "O", "O", "O", "O", "B-Function", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "B-Library" ]
[ "http://jsfiddle.net/376fLujs/3/" ]
[ "O" ]
[ "Also", ",", "make", "sure", "your", "script", "is", "included", "properly", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Include", "the", "jQuery", "before", "your", "script", ":" ]
[ "O", "O", "B-Library", "O", "O", "O", "O" ]
[ "add", ":", "console.log(\"working\")", ";", "as", "the", "very", "first", "line", "of", "your", "script" ]
[ "O", "O", "B-Code_Block", "I-Code_Block", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "open", "the", "chrome", "console", "/", "Firebug", "and", "refresh", "your", "page", "." ]
[ "O", "O", "B-Application", "I-Application", "O", "B-Application", "O", "O", "O", "O", "O" ]
[ "if", "you", "do", "n't", "see", "\"", "working", "\"", "in", "the", "console", ",", "your", "javascript", "is", "not", "included", "properly", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "B-Language", "O", "O", "O", "O", "O" ]
[ "Edit", ":", "based", "on", "your", "comments", "again", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "If", "you", "have", "multiple", "forms", ",", "re-using", "the", "same", "ID", ",", "it", "will", "not", "work", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O" ]
[ "Always", "keep", "IDs", "unique", "." ]
[ "O", "O", "B-Variable", "O", "O" ]