tokens
sequence | ner_tags
sequence |
---|---|
[
"It",
"'s",
"possible",
"to",
"write",
"side-effect-free",
"code",
"in",
"other",
"languages",
",",
"but",
"you",
"do",
"n't",
"have",
"the",
"compiler",
"'s",
"help",
"in",
"doing",
"so",
"."
] | [
"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"
] |
[
"Haskell",
"makes",
"you",
"think",
"more",
"carefully",
"about",
"which",
"parts",
"of",
"your",
"program",
"need",
"to",
"have",
"side",
"effects",
"(",
"such",
"as",
"I/O",
"or",
"mutable",
"variables",
")",
"and",
"which",
"parts",
"should",
"be",
"pure",
"."
] | [
"B-Language",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"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"
] |
[
"Also",
",",
"although",
"it",
"'s",
"not",
"quite",
"part",
"of",
"the",
"type",
"system",
"itself",
",",
"the",
"fact",
"that",
"function",
"definitions",
"in",
"Haskell",
"are",
"expressions",
"(",
"rather",
"than",
"lists",
"of",
"statements",
")",
"means",
"that",
"more",
"of",
"the",
"code",
"is",
"subject",
"to",
"type-checking",
"."
] | [
"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",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"In",
"languages",
"like",
"C++",
"and",
"Java",
",",
"it",
"'s",
"often",
"possible",
"to",
"introduce",
"logic",
"errors",
"by",
"writing",
"statements",
"in",
"the",
"wrong",
"order",
",",
"since",
"the",
"compiler",
"does",
"n't",
"have",
"a",
"way",
"to",
"determine",
"that",
"one",
"statement",
"must",
"precede",
"another",
"."
] | [
"O",
"O",
"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",
"B-Application",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"For",
"example",
",",
"you",
"might",
"have",
"one",
"line",
"that",
"modifies",
"an",
"object",
"'s",
"state",
",",
"and",
"another",
"line",
"that",
"does",
"something",
"important",
"based",
"on",
"that",
"state",
",",
"and",
"it",
"'s",
"up",
"to",
"you",
"to",
"ensure",
"that",
"these",
"things",
"happen",
"in",
"the",
"correct",
"order",
"."
] | [
"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"
] |
[
"In",
"Haskell",
",",
"this",
"kind",
"of",
"ordering",
"dependency",
"tends",
"to",
"be",
"expressed",
"through",
"function",
"composition",
"—",
"e.g",
".",
"f",
"(",
"g",
"x",
")",
"means",
"that",
"g",
"must",
"run",
"first",
"—",
"and",
"the",
"compiler",
"can",
"check",
"the",
"return",
"type",
"of",
"g",
"against",
"the",
"argument",
"type",
"of",
"f",
"to",
"make",
"sure",
"you",
"have",
"n't",
"composed",
"them",
"the",
"wrong",
"way",
"."
] | [
"O",
"B-Language",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Function",
"I-Function",
"I-Function",
"I-Function",
"I-Function",
"O",
"O",
"B-Function",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Application",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Function",
"O",
"O",
"O",
"O",
"O",
"B-Function",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"https://www.youtube.com/watch?v=XPpsI8mWKmg"
] | [
"O"
] |
[
"This",
"video",
"has",
"closed",
"captions",
"."
] | [
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O"
] |
[
"However",
",",
"response",
"always",
"returns",
"isCC",
"=",
"false",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"B-Code_Block",
"I-Code_Block",
"I-Code_Block",
"O"
] |
[
"It",
"happens",
"with",
"more",
"videos",
"as",
"well",
"."
] | [
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O"
] |
[
"Can",
"anyone",
"tell",
"me",
"why",
"?"
] | [
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"https://developers.google.com/youtube/v3/docs/captions"
] | [
"O"
] |
[
"This",
"is",
"the",
"response",
":"
] | [
"O",
"O",
"O",
"O",
"O"
] |
[
"Thank",
"you",
"."
] | [
"O",
"O",
"O"
] |
[
"I",
"tried",
"to",
"set",
"closed",
"captions",
"for",
"my",
"own",
"video",
"and",
"got",
"the",
"same",
"result",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"believe",
"that",
"in",
"the",
"player",
",",
"the",
"\"",
"CC",
"\"",
"you",
"see",
"is",
"actually",
"referring",
"to",
"subtitles",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"There",
"'s",
"an",
"important",
"distinction",
"between",
"subtitles",
"and",
"closed",
"captioning",
"(",
"see",
"here",
"and",
"here",
")",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
".",
"."
] | [
"O",
"O"
] |
[
"Therefore",
",",
"I",
"believe",
"isCC",
"will",
"only",
"be",
"true",
"for",
"videos",
"that",
"include",
"this",
"kind",
"of",
"captioning",
"intended",
"for",
"people",
"who",
"might",
"not",
"be",
"able",
"to",
"hear",
"what",
"'s",
"happening",
"in",
"the",
"video",
",",
"as",
"opposed",
"to",
"just",
"general",
"captions",
"that",
"people",
"can",
"put",
"onto",
"their",
"videos",
"."
] | [
"O",
"O",
"O",
"O",
"B-Variable",
"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",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O"
] |
[
"I",
"think",
"that",
"in",
"almost",
"all",
"cases",
",",
"only",
"high",
"quality",
",",
"paid",
"movies",
"on",
"YouTube",
"will",
"have",
"these",
"kinds",
"of",
"captions",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Website",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"In",
"that",
"sense",
",",
"the",
"isCC",
"property",
"works",
"the",
"way",
"it",
"'s",
"supposed",
"to",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"B-Variable",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"think",
"the",
"problem",
"might",
"be",
"in",
"your",
"syntax",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"or",
"maybe"
] | [
"O",
"O"
] |
[
"I",
"dont",
"have",
"much",
"experience",
"with",
"the",
"youtube",
"api",
"but",
"checking",
"out",
"the",
"documentation",
"I",
"found",
"code",
"above",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Library",
"I-Library",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"am",
"learning",
"Collection",
"Framework",
"on",
"this",
"website",
":",
"http://way2java.com/collections/hashtable-about/",
"."
] | [
"O",
"O",
"O",
"B-Library",
"I-Library",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"After",
"reading",
"all",
"the",
"methods",
"of",
"Hashtable",
"I",
"see",
"two",
"methods",
"to",
"access",
"the",
"table",
"'s",
"keys",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"B-Class",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Set",
"keys()",
":",
"Returns",
"a",
"Set",
"object",
"containing",
"all",
"the",
"keys"
] | [
"B-Function",
"I-Function",
"O",
"O",
"O",
"B-Class",
"O",
"O",
"O",
"O",
"O"
] |
[
"Set",
"keySet()",
":",
"Returns",
"a",
"Set",
"object",
"containing",
"all",
"the",
"keys",
"of",
"Hashtable",
"."
] | [
"B-Function",
"I-Function",
"O",
"O",
"O",
"B-Class",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Class",
"O"
] |
[
"One",
"similarity",
"is",
"Hashtable",
"and",
"Set",
"does",
"not",
"allow",
"duplicates",
"."
] | [
"O",
"O",
"O",
"B-Class",
"O",
"B-Class",
"O",
"O",
"O",
"O",
"O"
] |
[
"Adding",
"and",
"removing",
"elements",
"in",
"Set",
"also",
"reflects",
"in",
"Hashtable"
] | [
"O",
"O",
"O",
"O",
"O",
"B-Class",
"O",
"O",
"O",
"B-Class"
] |
[
"Both",
"of",
"them",
"return",
"a",
"Set",
"object",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"B-Class",
"O",
"O"
] |
[
"I",
"do",
"n't",
"see",
"the",
"different",
"between",
"them",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Anyone",
"can",
"tell",
"me",
"about",
"this",
"?"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"keys()",
"does",
"n't",
"return",
"a",
"Set",
",",
"it",
"returns",
"an",
"Enumeration<K>",
"."
] | [
"B-Function",
"O",
"O",
"O",
"O",
"B-Class",
"O",
"O",
"O",
"O",
"B-Code_Block",
"O"
] |
[
"Hashtable",
"is",
"a",
"very",
"legacy",
"class",
"no",
"longer",
"recommended",
"for",
"use",
"."
] | [
"B-Class",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"It",
"is",
"replaced",
"by",
"HashMap",
",",
"or",
"ConcurrentHashMap",
"†",
"."
] | [
"O",
"O",
"O",
"O",
"B-Class",
"O",
"O",
"B-Class",
"O",
"O"
] |
[
"It",
"existed",
"before",
"the",
"JCF",
"did",
",",
"therefore",
"the",
"standard",
"way",
"to",
"get",
"to",
"the",
"keys",
"at",
"the",
"start",
"was",
"through",
"an",
"Enumeration",
"-",
"the",
"original",
"Java",
"interface",
"for",
"moving",
"through",
"a",
"collection",
"of",
"objects",
"."
] | [
"O",
"O",
"O",
"O",
"B-Library",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Class",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Class",
"O",
"O",
"O",
"B-Language",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Then",
"came",
"Java",
"1.2",
",",
"and",
"the",
"JCF",
"."
] | [
"O",
"O",
"B-Language",
"B-Version",
"O",
"O",
"O",
"B-Library",
"O"
] |
[
"Hashtable",
"was",
"retrofitted",
"for",
"the",
"Map",
"interface",
"with",
"the",
"keySet()",
"method",
"that",
"returned",
"a",
"Set",
"(",
"also",
"introduced",
"with",
"the",
"JCF",
")",
"."
] | [
"B-Class",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Function",
"O",
"O",
"O",
"O",
"B-Class",
"O",
"O",
"O",
"O",
"O",
"B-Library",
"O",
"O"
] |
[
"The",
"keys",
"method",
"was",
"retained",
"for",
"legacy",
"compatibility",
"reasons",
"."
] | [
"O",
"B-Variable",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"The",
"Set",
"returned",
"from",
"the",
"new",
"method",
"achieves",
"two",
"things",
":"
] | [
"O",
"B-Class",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"conveys",
"intent",
"-",
"it",
"reinforces",
"the",
"fact",
"that",
"the",
"keys",
"of",
"a",
"Hashtable",
"are",
"a",
"mathematical",
"set"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Class",
"O",
"O",
"O",
"O"
] |
[
"implements",
"Iterable",
"<T>,",
"which",
"replaces",
"Enumerable<T>"
] | [
"O",
"B-Class",
"I-Class",
"O",
"O",
"B-Class"
] |
[
"†",
"From",
"the",
"Hashtable",
"documentation",
":"
] | [
"O",
"O",
"O",
"B-Class",
"I-Class",
"O"
] |
[
"The",
"method",
"keys()",
"in",
"Hashtable",
"actually",
"return",
"Enumeration",
"of",
"keys",
":"
] | [
"O",
"O",
"B-Function",
"O",
"B-Class",
"O",
"O",
"B-Class",
"O",
"O",
"O"
] |
[
"Returns",
"an",
"enumeration",
"of",
"the",
"keys",
"in",
"this",
"hashtable",
"."
] | [
"O",
"O",
"B-Class",
"O",
"O",
"O",
"O",
"O",
"B-Class",
"O"
] |
[
"I",
"am",
"trying",
"to",
"update",
"a",
"record",
"in",
"mongoDb",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Application",
"O"
] |
[
"But",
"i",
"am",
"getting",
"an",
"error"
] | [
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Here",
"i",
"dont",
"know",
"how",
"to",
"update",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"May",
"be",
"i",
"am",
"following",
"the",
"wrong",
"syntax",
"for",
"update",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Could",
"anyone",
"lend",
"a",
"helping",
"hand",
"?"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Here",
"i",
"am",
"using",
"upsert",
"because",
"if",
"record",
"not",
"found",
"for",
"update",
"then",
"it",
"will",
"insert",
"a",
"new",
"record",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"You",
"are",
"missing",
"{",
"in",
"your",
"update",
"document",
"."
] | [
"O",
"O",
"O",
"B-Code_Block",
"O",
"O",
"O",
"O",
"O"
] |
[
"{",
"\"",
"$set",
"\"",
":",
"student_record}",
"."
] | [
"B-Code_Block",
"I-Code_Block",
"I-Code_Block",
"I-Code_Block",
"I-Code_Block",
"I-Code_Block",
"O"
] |
[
"Also",
"you",
"need",
"to",
"convert",
"\"",
"student_grade",
"\"",
"to",
"float",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"B-Variable",
"O",
"O",
"B-Data_Type",
"O"
] |
[
"By",
"default",
"upsert",
":",
"False",
"so",
"you",
"do",
"n't",
"need",
"to",
"specify",
"."
] | [
"O",
"O",
"B-Code_Block",
"I-Code_Block",
"I-Code_Block",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Your",
"if",
"statement",
"can",
"by",
"simplify",
"as",
":",
"if",
"flag.lower()",
"==",
"'",
"y",
"'",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Code_Block",
"I-Code_Block",
"I-Code_Block",
"I-Code_Block",
"I-Code_Block",
"B-Code_Block",
"I-Code_Block"
] |
[
"Last",
"and",
"not",
"least",
"the",
"update",
"method",
"is",
"deprecated",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"B-Function",
"O",
"O",
"O",
"O"
] |
[
"You",
"should",
"use",
"the",
"new",
"API",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"update_one"
] | [
"O"
] |
[
"I",
"'m",
"using",
"Rails",
"1.2.3",
"on",
"a",
"project",
"."
] | [
"O",
"O",
"O",
"B-Library",
"B-Version",
"O",
"O",
"O",
"O"
] |
[
"(",
"Upgrading",
"rails",
"is",
"not",
"an",
"option",
")",
"."
] | [
"O",
"O",
"B-Library",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"'ve",
"created",
"a",
"simple",
"test",
"web-service",
"using",
"Rails",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Library",
"O"
] |
[
"I",
"'ve",
"tested",
"using",
"the",
"Rails",
"invoke",
"scaffold",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"B-Library",
"O",
"O",
"O"
] |
[
"It",
"seems",
"to",
"generate",
"the",
"response",
"with",
"no",
"problems",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"'m",
"trying",
"to",
"setup",
"a",
"client",
"via",
".NET",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"B-Application",
"O",
"B-Library",
"O"
] |
[
"I",
"'ve",
"created",
"an",
"ASP.NET",
"Web",
"App",
"project",
"in",
"C#",
"."
] | [
"O",
"O",
"O",
"O",
"B-Library",
"O",
"O",
"O",
"O",
"B-Language",
"O"
] |
[
"I",
"am",
"adding",
"a",
"\"",
"Web",
"Reference",
"\"",
",",
"add",
"the",
"Reference",
"URL",
"into",
"the",
"URL",
"field",
"of",
"the",
"wizard",
","
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O"
] |
[
"then",
"I",
"receive",
"an",
"error",
"from",
"the",
"wizard",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O"
] |
[
"My",
"code",
"is",
":"
] | [
"O",
"O",
"O",
"O"
] |
[
"Are",
"there",
"any",
"known",
"issues",
"between",
"ActionWebService",
"and",
".NET",
"or",
"am",
"I",
"doing",
"something",
"wrong",
"?"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"B-Application",
"O",
"B-Library",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Is",
"my",
"URL",
"correct",
"for",
"a",
"rails",
"web-service",
"?"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"B-Library",
"O",
"O"
] |
[
"This",
"has",
"probably",
"been",
"answered",
"elsewhere",
",",
"but",
"since",
"this",
"question",
"pops",
"up",
"when",
"searching",
"google",
"for",
"actionwebservice",
"and",
"get",
"requests",
",",
"I",
"thought",
"I",
"would",
"answer",
"it",
"here",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Website",
"O",
"B-Application",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"By",
"default",
"AWS",
"refuses",
"non-POST",
"requests",
"."
] | [
"O",
"O",
"B-Application",
"O",
"B-Function",
"O",
"O"
] |
[
"Specifically",
"it",
"has",
"code",
"in",
"action_controller_dispatcher.rb",
"that",
"reads",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"B-File_Name",
"O",
"O",
"O"
] |
[
"Basically",
"you",
"have",
"to",
"either",
"set",
"up",
"the",
"request",
"to",
"POST",
"the",
"request",
"instead",
"of",
"GETting",
"it",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Function",
"O",
"O",
"O",
"O",
"B-Function",
"O",
"O"
] |
[
"Or",
"you",
"have",
"to",
"override",
"AWS",
"'s",
"handling",
"of",
"GET",
"requests",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"B-Application",
"O",
"O",
"O",
"B-Function",
"O",
"O"
] |
[
"(",
"You",
"might",
"try",
"editing",
"the",
"code",
"inside",
"the",
"gem",
",",
"but",
"(",
"1)",
"that",
"will",
"get",
"overwritten",
"when",
"you",
"update",
"the",
"gem",
"and",
"(",
"2)",
"I",
"'m",
"not",
"sure",
"how",
"good",
"an",
"idea",
"that",
"is",
"in",
"general",
"and",
"(",
"3)",
"I",
"'ve",
"never",
"tried",
"it",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"The",
"former",
"is",
"likely",
"more",
"appropriate",
"if",
"you",
"have",
"control",
"of",
"the",
"code",
"generating",
"the",
"request",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"If",
"you",
"do",
"n't",
",",
"Zack",
"Chandler",
"had",
"a",
"workaround",
"(",
"for",
"QuickBooks",
"'s",
"connection",
"to",
"a",
"web-service",
",",
"but",
"it",
"should",
"work",
"in",
"any",
"case",
")",
",",
"here",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"B-User_Name",
"I-User_Name",
"O",
"O",
"O",
"O",
"O",
"B-Application",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"'m",
"quoting",
"it",
"below",
"in",
"case",
"the",
"url",
"changes",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Obviously",
"the",
"code",
"inside",
"the",
"dispatch_web_service_request",
"method",
"is",
"QuickBooks",
"specific",
",",
"but",
"you",
"should",
"get",
"the",
"idea",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"B-Function",
"O",
"O",
"B-Application",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Hope",
"this",
"helps",
",",
"and",
"I",
"hope",
"Zack",
"does",
"n't",
"mind",
"me",
"reposting",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Name",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"the",
"problem",
"is",
"I",
"got",
"large",
"text",
"file",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Let",
"it",
"be"
] | [
"O",
"O",
"O"
] |
[
"I",
"need",
"to",
"compare",
"every",
"3rd",
"symbol",
"in",
"this",
"text",
"with",
"value",
"(",
"e.g",
".",
"'",
"c'",
")",
"and",
"if",
"true",
",",
"I",
"want",
"to",
"add",
"1",
"to",
"counter",
"i",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Value",
"I-Value",
"O",
"O",
"O",
"B-Value",
"O",
"O",
"O",
"O",
"O",
"B-Value",
"O",
"O",
"B-Variable",
"O"
] |
[
"I",
"thought",
"to",
"use",
"grep",
"but",
"it",
"seems",
"this",
"function",
"would",
"n't",
"suite",
"for",
"my",
"purpose",
"."
] | [
"O",
"O",
"O",
"O",
"B-Code_Block",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"So",
"I",
"need",
"your",
"help",
"or",
"advice",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"More",
"than",
"that",
",",
"I",
"want",
"to",
"extract",
"certain",
"values",
"from",
"this",
"string",
"to",
"a",
"vector",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Data_Type",
"O",
"O",
"B-Data_Structure",
"O"
] |
[
"4",
"example",
",",
"i",
"want",
"to",
"extract",
"4:10",
"symbols",
",",
"e.g",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Value",
"O",
"O",
"O",
"O"
] |
[
"Thank",
"you",
"in",
"advance",
"."
] | [
"O",
"O",
"O",
"O",
"O"
] |
[
"P.S",
"."
] | [
"O",
"O"
] |
[
"I",
"know",
"it",
"'s",
"not",
"the",
"best",
"idea",
"to",
"write",
"script",
"i",
"need",
"in",
"R",
",",
"but",
"I",
"'m",
"curious",
"if",
"its",
"possible",
"to",
"write",
"it",
"in",
"an",
"adequate",
"way",
"."
] | [
"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"
] |
[
"Edited",
"to",
"provide",
"a",
"solution",
"that",
"'s",
"fast",
"for",
"much",
"larger",
"strings",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Data_Type",
"O"
] |
[
"If",
"you",
"have",
"a",
"very",
"long",
"string",
"(",
"on",
"the",
"order",
"of",
"millions",
"of",
"nucleotides",
")",
",",
"the",
"lookbehind",
"assertion",
"in",
"my",
"original",
"answer",
"(",
"below",
")",
"is",
"too",
"slow",
"to",
"be",
"practical",
"."
] | [
"O",
"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"
] |
[
"In",
"that",
"case",
",",
"use",
"something",
"more",
"like",
"the",
"following",
",",
"which",
":",
"(",
"1)",
"splits",
"the",
"string",
"apart",
"between",
"every",
"character",
";",
"(",
"2)",
"uses",
"the",
"characters",
"to",
"fill",
"up",
"a",
"three",
"row",
"matrix",
";",
"and",
"then",
"(",
"3)",
"extracts",
"the",
"characters",
"in",
"the",
"3rd",
"row",
"of",
"the",
"matrix",
"."
] | [
"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_Type",
"O",
"O",
"O",
"O",
"O",
"B-Data_Type",
"O",
"O",
"O",
"O",
"O",
"B-Data_Structure",
"I-Data_Structure",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Data_Type",
"O",
"O",
"O",
"B-Data_Structure",
"O",
"O",
"B-Data_Structure",
"O"
] |
[
"This",
"takes",
"on",
"the",
"order",
"of",
"0.2",
"seconds",
"to",
"process",
"a",
"3-million",
"character",
"long",
"string",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Data_Type",
"O"
] |
[
"Original",
"answer",
":"
] | [
"O",
"O",
"O"
] |
[
"I",
"might",
"use",
"substr()",
"in",
"both",
"cases",
"."
] | [
"O",
"O",
"O",
"B-Function",
"O",
"O",
"O",
"O"
] |
[
"Compare",
"every",
"third",
"character",
"with",
"\"",
"c",
"\"",
":"
] | [
"O",
"O",
"O",
"B-Data_Type",
"O",
"B-Value",
"I-Value",
"I-Value",
"O"
] |