tokens
sequence
ner_tags
sequence
[ "How", "do", "I", "refactor", "a", "class", "expression", "with", "ES5", "prototype", "syntax", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "O", "O" ]
[ "I", "'m", "trying", "to", "extend", "a", "native", "class", "using", "a", "class", "expression", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "This", "code", "works", "fine", "but", "extending", "native", "classes", "is", "not", "supported", "by", "babel", "and", "I", "'d", "like", "to", "transpile", "my", "code", "to", "ES5", "in", "the", "future", "." ]
[ "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" ]
[ "This", "is", "code", "taken", "off", "of", "google", "'s", "custom", "elements", "primer", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Website", "O", "O", "O", "O", "O" ]
[ "So", "the", "question", "is", "simple", ":" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "how", "do", "I", "refactor", "an", "ES2015", "class", "expression", "with", "something", "ES5", "compatible", "(", "or", "just", "babel", "compatible", "really", "but", "this", "question", "is", "n't", "really", "related", "to", "babel", ")", "." ]
[ "O", "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "B-Library", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Library", "O", "O" ]
[ "Can", "you", "briefly", "explain", "or", "point", "me", "to", "reference", "that", "explains", "how", "ES6", "classes", "work", "with", "the", "prototypes", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "O" ]
[ "I", "have", "4", "images", "on", "a", "page", "." ]
[ "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O" ]
[ "I", "want", "to", "trigger", "a", "JS", "event", "once", "all", "4", "images", "are", "loaded", "." ]
[ "O", "O", "O", "O", "O", "B-Class", "I-Class", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O" ]
[ "I", "of", "course", "ca", "n't", "be", "sure", "which", "order", "the", "images", "will", "be", "loaded", "in", ",", "so", "I", "ca", "n't", "trigger", "the", "event", "on", "the", "last", "image", "." ]
[ "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", "B-Class", "O", "O", "O", "B-User_Interface_Element", "O" ]
[ "One", "thought", "was", "to", "have", "a", "counter", ",", "but", "I", "ca", "n't", "think", "of", "the", "best", "way", "to", "check", "when", "that", "counter", "is", "equal", "to", "4", "as", "I", "do", "n't", "like", "the", "idea", "of", "a", "setTimeout()", "checking", "every", "200ms", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "B-Value", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O" ]
[ "Any", "other", "ideas", "?" ]
[ "O", "O", "O", "O" ]
[ "I", "'m", "using", "jQuery", "on", "the", "site", ",", "so", "I", "'m", "thinking", "that", "might", "be", "some", "help", "." ]
[ "O", "O", "O", "B-Library", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "This", "is", "the", "image", "HTML", "code", ":" ]
[ "O", "O", "O", "O", "B-Language", "O", "O" ]
[ "As", "regards", "Salty", "'s", "example", ",", "it", "'s", "best", "to", "use", "a", "closure", "to", "avoid", "global", "variables", ",", "like", "such", ":" ]
[ "O", "O", "B-User_Name", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Data_Type", "O", "O", "O", "O", "O" ]
[ "[", "Edit", "]" ]
[ "O", "O", "O" ]
[ "As", "per", "jeroen", "'s", "comment", ",", "I", "replaced", "the", "hardcoded", "value", "of", "4", "(", "count", "==", "=", "4)", "with", "the", "jQuery", "size", "function", "as", "to", "allow", "for", "more", "flexibility", "within", "the", "function", "." ]
[ "O", "O", "B-User_Name", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "B-Code_Block", "I-Code_Block", "I-Code_Block", "I-Code_Block", "O", "O", "B-Library", "B-Function", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "currently", "have", "a", "wysiwyg", "iframe", "where", "the", "user", "can", "submit", "input", "to", "another", "area", "on", "the", "page", "." ]
[ "O", "O", "O", "O", "O", "B-HTML_XML_Tag", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O" ]
[ "Once", "the", "iframe", "input", "is", "submitted", ",", "I", "set", "it", "to", "clear", "the", "content", "." ]
[ "O", "O", "B-HTML_XML_Tag", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "want", "to", "also", "automatically", "focus", "back", "into", "the", "iframe", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-HTML_XML_Tag", "O" ]
[ "This", "is", "the", "code", "I", "currently", "have", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "'m", "not", "sure", "I", "understand", "what", "you", "are", "trying", "to", "do", ",", "but", "postContentClr", "is", "a", "jQuery", "object", ",", "so", "calling", "html()", "requires", "that", "you", "access", "it", "via", "jQuery", "like", "so", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "B-Library", "O", "O", "O", "O", "B-Function", "O", "O", "O", "O", "O", "O", "B-Library", "O", "O", "O" ]
[ "Figured", "it", "out", "." ]
[ "O", "O", "O", "O" ]
[ "I", "had", "to", "simply", "focus", "on", "the", "parent", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "And", "Jitter", "is", "correct", ",", "since", "I", "already", "declared", "it", "as", "a", "jQuery", "object", ",", "it", "need", "n't", "be", "wrapped", "." ]
[ "O", "B-User_Name", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Library", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Working", "code", ":" ]
[ "O", "O", "O" ]
[ "I", "understand", "preloading", "the", "url", "but", "I", "do", "not", "understand", "the", "purpose", "of", "cache", "and", "hash", "in", "this", "snippet", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "B-Variable", "O", "O", "O", "O" ]
[ "I", "know", "the", "answer", "is", "probably", "simple", "and", "I", "'m", "overlooking", "it", "but", "I", "just", "want", "some", "direction", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "In", "this", "example", ",", "cache", "is", "actually", "useless", "." ]
[ "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O" ]
[ "You", "only", "write", "to", "it", "and", "never", "read", "from", "it", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "hash", "is", "being", "used", "as", "the", "actual", "cache", "here", "." ]
[ "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "If", "an", "image", "with", "the", "same", "URL", "already", "exists", ",", "it", "will", "be", "returned", "from", "the", "hash", "object", ",", "and", "not", "created", "again", "." ]
[ "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "have", "two", "database", "systems", "currently", "in", "use", "in", "production", ":", "the", "main", "PostgreSQL", "database", ",", "and", "another", "database", "(", "MemSQL", ")", "used", "primarily", "for", "analytical", "purposes", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O" ]
[ "Is", "there", "a", "way", "to", "setup", "streaming", "replication", "of", "some", "of", "the", "tables", "in", "PostgreSQL", "to", "MemSQL", "(", "a", "MySQL-compatible", "database", ")", "rowstores", ",", "assuming", "the", "tables", "on", "both", "databases", "have", "the", "same", "schema", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "B-Application", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "B-Data_Structure", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "do", "not", "think", "that", "there", "is", "a", "tool", "for", "that", "(", "yet", ")", "but", "there", "is", "one", "for", "limited", "MySQL", "to", "Postgres", "replication", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "B-Application", "O", "O" ]
[ "https://github.com/the4thdoctor/pg_chameleon" ]
[ "O" ]
[ "Maybe", "this", "can", "be", "adapted", "to", "work", "the", "other", "way", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "And", "you", "could", "always", "build", "your", "own", "little", "data", "shovel", "by", "using", "the", "NOTIFY/LISTEN", "feature", "of", "Postgres", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O" ]
[ "Which", "is", "probably", "only", "an", "option", "if", "you", "only", "have", "to", "copy", "a", "very", "simple", "set", "of", "data", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "have", "come", "across", "WinSCP", "(", "http://winscp.net/eng/index.php", ")", "which", "I", "think", "is", "a", "fantastic", "client", "to", "work", "with", "my", "EC2", "ubuntu", "instance", "as", "a", "graphical", "alternative", "to", "putty", "." ]
[ "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "B-Application", "B-Operating_System", "O", "O", "O", "O", "O", "O", "B-Application", "O" ]
[ "One", "problem", "though", "is", "that", "every", "time", "I", "want", "to", "modify", "or", "create", "a", "file", "I", "have", "to", "drop", "into", "a", "shell", "and", "run", "the", "appropriate", "sudo", "command", "." ]
[ "O", "O", "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", "B-Code_Block", "O", "O" ]
[ "Is", "there", "a", "way", "to", "login", "with", "winscp", "as", "a", "superuser", "to", "avoid", "this", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O" ]
[ "is", "it", "possible", "to", "add", "to", "my", "apk", "file", "some", "XML", "file", "storing", "program", "version", ",", "update", "path", "and", "other", "useful", "data", "(", "note", ":", "I", "do", "n't", "mean", "Android", "XML", "file", ")", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-File_Type", "O", "O", "B-File_Type", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Operating_System", "B-File_Type", "O", "O", "O" ]
[ "All", "I", "want", "to", "is", "this", "file", "to", "be", "unpacked", "somewhere", "to", "local", "data", "folder", "and", "I", "will", "use", "it", "for", "comparing", "version", "info", "installed", "locally", "and", "on", "the", "server", "in", "case", "of", "updates", "." ]
[ "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-Application", "O", "O", "O", "O", "O" ]
[ "I", "am", "asking", "-", "is", "it", "possible", "to", "add", "to", "apk", "some", "other", "file", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-File_Type", "O", "O", "O", "O" ]
[ "Thanks" ]
[ "O" ]
[ "If", "you", "only", "want", "to", "know", "the", "version", "info", "of", "the", "app", "then", "there", "is", "a", "much", "easier", "way", "to", "identify", "it", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "You", "can", "use" ]
[ "O", "O", "O" ]
[ "getPackageManager().getPackageInfo(getPackageName(),PackageManager.COMPONENT_ENABLED_STATE_DEFAULT).versionCode" ]
[ "B-Code_Block" ]
[ "to", "get", "the", "version", "code", "and" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "getPackageManager().getPackageInfo(getPackageName(),PackageManager.COMPONENT_ENABLED_STATE_DEFAULT).versionName" ]
[ "B-Code_Block" ]
[ "to", "get", "app", "'s", "version", "name" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "The", "assets/", "folder", "in", "apk", "is", "intended", "to", "store", "any", "extra", "user", "files", "in", "any", "formats", "." ]
[ "O", "B-File_Name", "O", "O", "B-File_Type", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "They", "will", "be", "included", "to", "apk", "automatically", "on", "compilation", "stage", "and", "can", "be", "accessed", "from", "the", "app", "using", "getAssets()", "function", "." ]
[ "O", "O", "O", "O", "O", "B-File_Type", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Function", "O", "O" ]
[ "For", "example", ":" ]
[ "O", "O", "O" ]
[ "It", "is", "even", "unnecessary", "to", "copy", "them", "to", "some", "local", "folder", "to", "read", "them", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "am", "currently", "making", "a", "unity", "game", "where", "I", "will", "be", "able", "to", "navigate", "from", "one", "360", "degrees", "panorama", "to", "another", "." ]
[ "O", "O", "O", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "have", "added", "the", "pictures", "and", "made", "the", "texture", "size", "as", "a", "cube", "and", "mapped", "to", "the", "latitude-longitude", "layout", "." ]
[ "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "have", "made", "skybox", "material", "and", "loaded", "the", "image", "into", "it", "." ]
[ "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O" ]
[ "Now", "the", "problem", "I", "am", "facing", "here", "is", "-" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Whenever", "I", "load", "the", "skyboxes", ",", "it", "looks", "to", "some", "other", "direction", "instead", "of", "the", "original", "orientation", "of", "the", "image", "." ]
[ "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O" ]
[ "I", "could", "fix", "it", "by", "changing", "the", "skybox", "rotation", "to", "100", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "B-Value", "O" ]
[ "Since", "I", "have", "planned", "to", "add", "around", "100", "pictures", ",", "I", "do", "not", "want", "them", "to", "fix", "each", "on", "of", "them", "manually", "." ]
[ "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" ]
[ "All", "of", "the", "pictures", "were", "downloaded", "from", "google", "streetview", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "B-Website", "I-Website", "O" ]
[ "Desperately", "in", "need", "of", "help", "!", "!" ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "am", "ashamed", "to", "say", "I", "have", "spent", "most", "of", "today", "on", "this", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "am", "trying", "to", "build", "a", "form", "based", "on", "the", "contents", "of", "an", "data", "store", "." ]
[ "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "B-Class", "I-Class", "O" ]
[ "I", "am", "using", "Ext.js", "and", "the", "MVC", "architecture", "." ]
[ "O", "O", "O", "B-Library", "O", "O", "B-Algorithm", "O", "O" ]
[ "Here", "'s", "what", "I", "have", ":" ]
[ "O", "O", "O", "O", "O", "O" ]
[ "The", "error", "I", "am", "getting", "(", "I", "'ve", "had", "many", "throughout", "the", "day", ")", "is", "\"", "my.items.push", "is", "not", "a", "function", "\"", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Output_Block", "I-Output_Block", "I-Output_Block", "I-Output_Block", "I-Output_Block", "O", "O" ]
[ "Thanks", "in", "advance", "for", "any", "help", "you", "can", "offer", "!" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "items", "is", "expected", "to", "be", "an", "array", "not", "MixedCollection", "." ]
[ "B-Variable", "O", "O", "O", "O", "O", "B-Data_Structure", "O", "B-Class", "O" ]
[ "It", "is", "changed", "to", "MixedCollection", "later", "on", "if", "I", "remember", "good", "." ]
[ "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O", "O", "O" ]
[ "So", "to", "fix", "your", "issue", "change", ":" ]
[ "O", "O", "O", "O", "O", "O", "O" ]
[ "to" ]
[ "O" ]
[ "Consider", "as", "well", "defining", "items", "of", "form", "as", "an", "empty", "array", "and", "then", "in", "initComponent", "make", "use", "of", "Ext.apply", ":" ]
[ "O", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "B-Data_Structure", "O", "O", "O", "B-Variable", "O", "O", "O", "B-Function", "O" ]
[ "I", "have", "a", "set", "of", "dates", "which", "are", "in", "the", "current", "format", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "e.g", "." ]
[ "O", "O" ]
[ "I", "have", "put", "them", "into", "a", "SQL", "Server", "table", "as", "nvarchar(MAX)", "but", "I", "need", "to", "convert", "them", "to", "datetime", "in", "a", "view", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Language", "B-Application", "B-Data_Structure", "O", "B-Data_Type", "O", "O", "O", "O", "O", "O", "O", "B-Data_Type", "O", "O", "O", "O" ]
[ "I", "have", "tried", "the", "following", "pieces", "of", "code", "but", "neither", "work", ":" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Return", "2016-04-15", "13:30:00.000" ]
[ "O", "B-Value", "I-Value" ]
[ "I", "found", "some", "example", "of", "how", "to", "read", "the", "XML", "from", "an", "Excel", "spreadsheet", ">>", "HERE", "<<", ",", "and", "I", "am", "trying", "to", "get", "the", "code", "to", "work", "for", "me", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "O", "B-Application", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "I", "have", "to", "write", "a", "routine", "that", "takes", "the", "data", "from", "4", "of", "the", "15", "sheets", "in", "the", "workbook", ",", "and", "use", "that", "data", "to", "populate", "our", "database", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-User_Interface_Element", "O", "O", "B-User_Interface_Element", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "Anyway", "...", "." ]
[ "O", "O", "O" ]
[ "This", "code", "is", "throwing", "an", "InvalidOperationException", "exception", "every", "time", "I", "attempt", "to", "query", "my", "Excel", "spreadsheet", ":" ]
[ "O", "O", "O", "O", "O", "B-Class", "I-Class", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O" ]
[ "The", "specific", "error", "is", ",", "\"", "Sequence", "contains", "no", "elements", "\"" ]
[ "O", "O", "O", "O", "O", "O", "B-Error_Name", "I-Error_Name", "I-Error_Name", "I-Error_Name", "O" ]
[ "I", "'m", "really", "not", "sure", "how", "to", "go", "about", "debugging", "it", ",", "because", "I", "'m", "not", "sure", "what", "the", "code", "is", "trying", "to", "do", "." ]
[ "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" ]
[ "Could", "someone", "help", "me", "write", "it", "in", "Standard", "\"", "C#", "before", "I", "try", "to", "implement", "the", "fancy", "LINQ", "expression", "?" ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Language", "O", "O", "O", "O", "O", "O", "O", "B-Library", "O", "O" ]
[ "(", "that", "is", "LINQ", ",", "right", "?", ")" ]
[ "O", "O", "O", "B-Library", "O", "O", "O", "O" ]
[ "[", "Solved", "]" ]
[ "O", "O", "O" ]
[ "Using", "the", "snippet", "provided", "by", "JeffN825", ",", "I", "was", "able", "to", "create", "this", ":" ]
[ "O", "O", "O", "O", "O", "B-User_Name", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "It", "turns", "out", "that", "even", "though", "my", "sheet", "names", "in", "Excel", "are", "\"", "HV", "\"", ",", "\"", "M2", "\"", ",", "\"", "CB", "\"", "and", "\"", "CC", "\"", ",", "I", "still", "have", "to", "specify", "them", "as", "\"", "sheet2", "\"", ",", "\"", "sheet3", "\"", ",", "\"", "sheet4", "\"", "and", "\"", "sheet5", "\"", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Application", "O", "O", "B-Variable", "O", "O", "O", "B-Variable", "O", "O", "O", "B-Variable", "O", "O", "O", "B-Variable", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "B-Variable", "O", "O", "O", "B-Variable", "O", "O", "O", "B-Variable", "O", "O", "O", "B-Variable", "O", "O" ]
[ "I", "had", "to", "step", "through", "161", "PackagePart", "objects", "to", "see", "this", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Class", "O", "O", "O", "O", "O" ]
[ "LINQ", "is", "just", "so", "damn", "efficient", "that", "it", "can", "be", "hard", "to", "debug", "when", "there", "are", "problems", "." ]
[ "B-Library", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "The", ".Single()", "is", "what", "'s", "throwing", "the", "exception", "." ]
[ "O", "B-Function", "O", "O", "O", "O", "O", "B-Class", "O" ]
[ "Either", "your", "query", "is", "returning", "no", "items", "or", "it", "'s", "returning", ">", "1", "item", "." ]
[ "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O" ]
[ "If", "you", "'re", "not", "sure", "of", "the", "number", "of", "items", "you", "'re", "expecting", ",", "you", "should", "be", "using", "FirstOrDefault()", "which", "will", "return", "the", "first", "match", "or", "null", "if", "no", "matches", "are", "found", "." ]
[ "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", "B-Value", "O", "O", "O", "O", "O", "O" ]
[ "The", "non-LINQ", "equivalent", "is", "something", "like", "this" ]
[ "O", "B-Library", "O", "O", "O", "O", "O" ]
[ "It", "'s", "basically", "doing", "this", "." ]
[ "O", "O", "O", "O", "O", "O" ]
[ "In", "your", "version", ",", "try", "replacing", ".Single()", "with", ".FirstOrDefault()", "." ]
[ "O", "O", "O", "O", "O", "O", "B-Function", "O", "B-Function", "O" ]