tokens
sequence | ner_tags
sequence |
---|---|
[
"I",
"am",
"averaging",
"about",
"800",
"GFlops",
"out",
"of",
"my",
"ATI",
"Radeon",
"6870",
"which",
"is",
"fine",
"for",
"now",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Device",
"I-Device",
"I-Device",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"So",
"here",
"is",
"my",
"question",
":",
"If",
"instead",
"of",
"caring",
"out",
"the",
"<,",
">,",
"and",
"=",
"operators",
"on",
"4",
"byte",
"floats",
"(as",
"I",
"am",
"doing",
"now),",
"I",
"wrote",
"bitwise",
"functions",
"to",
"handle",
"the",
"<,",
">",
",",
"and",
"=",
",",
"and",
"I",
"was",
"able",
"to",
"process",
"2",
"-",
"13",
"bits",
"objects",
"at",
"a",
"time",
",",
"would",
"this",
"increase",
"my",
"speed",
"?"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Code_Block",
"I-Code_Block",
"O",
"B-Code_Block",
"O",
"O",
"O",
"O",
"B-Data_Type",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Code_Block",
"I-Code_Block",
"O",
"O",
"B-Code_Block",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Or",
"does",
"C",
"already",
"have",
"the",
"most",
"efficient",
"way",
"of",
"finding",
"<,",
"and",
">",
",",
"and",
"=",
"(",
"obviously",
")",
"for",
"floats",
"?"
] | [
"O",
"O",
"B-Language",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Code_Block",
"O",
"B-Code_Block",
"O",
"O",
"B-Code_Block",
"O",
"O",
"O",
"O",
"B-Data_Type",
"O"
] |
[
"I",
"Have",
"a",
"models",
"like",
"this",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"there",
"is",
"some",
"query",
"that",
"i",
"want",
"the",
"orm",
"form",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"and",
"at",
"last",
"do",
"u",
"know",
"any",
"good",
"refrence",
"for",
"orm"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"thx",
"for",
"help"
] | [
"O",
"O",
"O"
] |
[
"I",
"'m",
"assuming",
"the",
"group",
"by",
"is",
"for",
"ordering",
"."
] | [
"O",
"O",
"O",
"O",
"B-Function",
"I-Function",
"O",
"O",
"O",
"O"
] |
[
"If",
"you",
"really",
"want",
"group_by",
"look",
"at",
"aggregates",
"and",
"annotate",
"in",
"django",
"."
] | [
"O",
"O",
"O",
"O",
"B-Function",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Library",
"O"
] |
[
"My",
"guess",
"of",
"what",
"you",
"are",
"looking",
"for",
"is",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"1",
":",
"Get",
"the",
"person",
"record",
"-",
"select",
"person_name",
"from",
"Person"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Code_Block",
"I-Code_Block",
"I-Code_Block",
"I-Code_Block"
] |
[
"2",
":",
"select",
"*",
"from",
"Person",
",",
"Car",
"where",
"car_owner",
"=",
"person_id"
] | [
"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",
"I-Code_Block",
"I-Code_Block"
] |
[
"Get",
"the",
"cars",
"belonging",
"to",
"the",
"person"
] | [
"O",
"O",
"B-Variable",
"O",
"O",
"O",
"B-Variable"
] |
[
"3",
":",
"select",
"*",
"from",
"Person",
",",
"Car",
"group_by(person_name)"
] | [
"O",
"O",
"B-Code_Block",
"I-Code_Block",
"I-Code_Block",
"I-Code_Block",
"I-Code_Block",
"I-Code_Block",
"I-Code_Block"
] |
[
"Get",
"list",
"of",
"cars",
"sorted",
"by",
"owner"
] | [
"O",
"B-Data_Structure",
"O",
"B-Variable",
"O",
"O",
"B-Variable"
] |
[
"4",
":",
"select",
"*",
"from",
"Person",
",",
"Car",
"where",
"name",
"like",
"%x%",
"group_by(person_name)",
"having",
"car_id",
">=",
"2"
] | [
"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",
"I-Code_Block",
"I-Code_Block",
"I-Code_Block",
"I-Code_Block",
"I-Code_Block",
"I-Code_Block",
"I-Code_Block"
] |
[
"List",
"of",
"cars",
"with",
"search",
"criteria"
] | [
"B-Data_Structure",
"O",
"B-Variable",
"O",
"O",
"O"
] |
[
"Cars",
"and",
"their",
"Owners"
] | [
"B-Variable",
"O",
"O",
"B-Variable"
] |
[
"Here",
"'s",
"what",
"I",
"intend",
"to",
"do",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Request",
"https://reqres.in/api/users/2"
] | [
"O",
"O"
] |
[
"Which",
"sends",
"a",
"response",
"as",
"follows",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Now",
",",
"I",
"wanna",
"grab",
"the",
"avatar",
"url",
"and",
"make",
"another",
"request",
",",
"which",
"gives",
"me",
"the",
"image",
"binary",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-File_Type",
"I-File_Type",
"O"
] |
[
"At",
"the",
"end",
"of",
"this",
",",
"what",
"I",
"want",
"as",
"output",
"is",
"an",
"Observable",
"that",
"gives",
"me",
"this",
"data",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Class",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Here",
"'s",
"how",
"I",
"approached",
"but",
"ca",
"n't",
"finish",
"it",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Basically",
",",
"is",
"there",
"any",
"way",
"to",
"have",
"a",
"structure",
"like",
"this",
","
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Which",
"then",
"gets",
"resolved",
"to",
"my",
"final",
"data",
"?"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"You",
"do",
"n't",
"need",
"to",
"use",
"switchMap",
"for",
"this",
"and",
"use",
"concatMap",
"or",
"mergeMap",
"instead",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"B-Function",
"O",
"O",
"O",
"O",
"B-Function",
"O",
"B-Function",
"O",
"O"
] |
[
"I",
"would",
"like",
"my",
"page",
"to",
"pop-up",
"a",
"window",
"that",
"contains",
"a",
"form",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"B-User_Interface_Element",
"O"
] |
[
"When",
"the",
"form",
"is",
"filled",
"out",
"and",
"Submit",
"is",
"clicked",
",",
"I",
"would",
"like",
"the",
"pop-up",
"to",
"remain",
"on",
"top",
"of",
"the",
"page",
"with",
"new",
"data",
"loaded",
"into",
"it",
"."
] | [
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Whenever",
"I",
"try",
"this",
"so",
"far",
",",
"when",
"I",
"click",
"on",
"the",
"submit",
"button",
"in",
"my",
"pop-up",
",",
"the",
"pop-up",
"either",
"closes",
",",
"if",
"I",
"have",
"target",
"=",
"\"",
"_self",
"\"",
",",
"or",
"the",
"contains",
"of",
"the",
"pop-up",
"go",
"into",
"a",
"new",
"tab",
"that",
"the",
"browser",
"opens",
"."
] | [
"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",
"B-User_Interface_Element",
"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",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"B-Application",
"O",
"O"
] |
[
"I",
"have",
"yet",
"to",
"find",
"a",
"solution",
"that",
"allows",
"the",
"pop-up",
"to",
"stay",
"up",
"when",
"coming",
"from",
"this",
"AJAX",
"pop-up",
"function",
"(",
"listed",
"below",
")",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Library",
"B-Function",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"could",
"do",
"a",
"standard",
"non-AJAX",
"popup",
",",
"but",
"then",
"if",
"a",
"user",
"clicks",
"on",
"the",
"page",
"the",
"pop-up",
"came",
"from",
",",
"the",
"pop-up",
"goes",
"underneath",
"the",
"main",
"page",
",",
"which",
"is",
"n't",
"something",
"I",
"want",
"at",
"all",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"B-Library",
"B-Function",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Here",
"is",
"the",
"page",
"where",
"my",
"pop-up",
"comes",
"from"
] | [
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"B-User_Interface_Element",
"O",
"O"
] |
[
"So",
",",
"this",
"is",
"the",
"current",
"graph",
"and",
"form",
"pop-up",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"B-Data_Structure",
"O",
"B-User_Interface_Element",
"I-User_Interface_Element",
"O"
] |
[
"It",
"is",
"in",
"the",
"form",
"of",
"a",
"JSP",
"backed",
"by",
"a",
"servlet",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Application",
"O",
"O",
"O",
"B-Class",
"O"
] |
[
"The",
"first",
"part",
"of",
"the",
"header",
"gets",
"all",
"the",
"parameters",
"and",
"then",
"zoomPlot.generatePlot()",
"creates",
"the",
"plot",
"and",
"saves",
"it",
"as",
"a",
".png",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Function",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"O",
"B-File_Type",
"O"
] |
[
"The",
"body",
"displays",
"the",
".png",
"graph",
"and",
"then",
"also",
"shows",
"the",
"form",
"."
] | [
"O",
"O",
"O",
"O",
"B-File_Type",
"B-Data_Structure",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O"
] |
[
"When",
"one",
"submits",
"the",
"form",
",",
"the",
"same",
"thing",
"happens",
"again",
"."
] | [
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"The",
"first",
"time",
",",
"this",
"pop-up",
"is",
"displayed",
",",
"the",
"plot",
"uses",
"default",
"values",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O"
] |
[
"I",
"'m",
"not",
"really",
"sure",
"how",
"to",
"convert",
"this",
"to",
"an",
"AJAX",
"request",
",",
"so",
"if",
"anyone",
"has",
"any",
"good",
"ideas",
",",
"please",
"let",
"me",
"know",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Function",
"I-Function",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"'d",
"like",
"to",
"recycle",
"as",
"much",
"as",
"I",
"can",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Use",
"AJAX",
"to",
"submit",
"the",
"form",
"."
] | [
"O",
"B-Library",
"O",
"O",
"O",
"B-HTML_XML_Tag",
"O"
] |
[
"In",
"your",
"init",
"code",
":"
] | [
"O",
"O",
"O",
"O",
"O"
] |
[
"Elsewhere",
":"
] | [
"O",
"O"
] |
[
"There",
"are",
"many",
"ways",
"I",
"would",
"do",
"it",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"1",
":",
"A",
"form",
"and",
"an",
"Iframe"
] | [
"O",
"O",
"O",
"B-HTML_XML_Tag",
"O",
"O",
"B-HTML_XML_Tag"
] |
[
"Target",
"the",
"form",
"to",
"the",
"iframe",
":"
] | [
"O",
"O",
"B-HTML_XML_Tag",
"O",
"O",
"B-HTML_XML_Tag",
"O"
] |
[
"Visually",
"hide",
"the",
"iframe",
"with",
"CSS",
"on",
"initial",
"load",
"."
] | [
"O",
"O",
"O",
"B-HTML_XML_Tag",
"O",
"B-Language",
"O",
"O",
"O",
"O"
] |
[
"You",
"should",
"visibility",
":",
"hidden",
";",
"instead",
"of",
"display",
":",
"none",
";",
"because",
"the",
"latter",
"destroys",
"an",
"element",
"from",
"the",
"DOM",
"."
] | [
"O",
"O",
"B-Code_Block",
"I-Code_Block",
"I-Code_Block",
"I-Code_Block",
"O",
"O",
"B-Code_Block",
"I-Code_Block",
"I-Code_Block",
"I-Code_Block",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Library",
"O"
] |
[
"Prevent",
"default",
"submission",
"of",
"the",
"form",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"B-HTML_XML_Tag"
] |
[
"When",
"the",
"form",
"is",
"submitted",
"(",
"with",
"AJAX",
")",
",",
"hide",
"the",
"form",
"and",
"show",
"the",
"iframe",
"."
] | [
"O",
"O",
"B-HTML_XML_Tag",
"O",
"O",
"O",
"O",
"B-Library",
"O",
"O",
"O",
"O",
"B-HTML_XML_Tag",
"O",
"O",
"O",
"B-HTML_XML_Tag",
"O"
] |
[
"The",
"dialog",
"would",
"still",
"be",
"open",
"."
] | [
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"O"
] |
[
"2",
":",
"A",
"form",
"with",
"AJAX"
] | [
"O",
"O",
"O",
"B-HTML_XML_Tag",
"O",
"B-Library"
] |
[
"Wrap",
"the",
"form",
"in",
"a",
"div",
"like",
"this",
":"
] | [
"O",
"O",
"B-HTML_XML_Tag",
"O",
"O",
"B-HTML_XML_Tag",
"O",
"O",
"O"
] |
[
"Then",
"use",
"AJAX",
"to",
"submit",
"the",
"form",
"and",
"show",
"results",
"in",
"the",
"#results",
"-container"
] | [
"O",
"O",
"B-Library",
"O",
"O",
"O",
"B-HTML_XML_Tag",
"O",
"O",
"O",
"O",
"O",
"B-HTML_XML_Tag",
"I-HTML_XML_Tag"
] |
[
"NOTE",
":"
] | [
"O",
"O"
] |
[
"I",
"'m",
"trying",
"to",
"explain",
"the",
"process",
"so",
"that",
"you",
"'ll",
"be",
"able",
"to",
"implement",
"your",
"own",
"login",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O"
] |
[
"DO",
"NOT",
"FORGET",
"to",
"prevent",
"default",
"submission",
"of",
"the",
"form",
"in",
"any",
"of",
"the",
"above",
"examples",
"!"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-HTML_XML_Tag",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Since",
"you",
"use",
"jQuery",
",",
"it",
"'s",
"like",
"this",
":"
] | [
"O",
"O",
"O",
"B-Library",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"PS",
":",
"Your",
"snippet",
"is",
"not",
"functioning",
"properly",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
":::EDIT::",
":"
] | [
"O",
"O"
] |
[
"Prevent",
"default",
"submission",
"of",
"the",
"form"
] | [
"O",
"O",
"O",
"O",
"O",
"B-HTML_XML_Tag"
] |
[
"Send",
"a",
"POST",
"request",
"on",
"submit",
"to",
"your",
"server"
] | [
"O",
"O",
"B-Function",
"O",
"O",
"O",
"O",
"O",
"B-Application"
] |
[
"Respond",
"with",
"the",
"new",
"graph",
"image",
"url",
"from",
"the",
"server"
] | [
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"I-User_Interface_Element",
"O",
"O",
"O",
"B-Application"
] |
[
"Replace",
"the",
"old",
"graph",
"image",
"src",
"with",
"the",
"new",
"one"
] | [
"O",
"O",
"O",
"B-User_Interface_Element",
"I-User_Interface_Element",
"B-HTML_XML_Tag",
"O",
"O",
"O",
"O"
] |
[
"Can",
"you",
"add",
"more",
"code",
"to",
"your",
"question",
"so",
"I",
"can",
"help",
"out",
"?"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Especially",
"your",
"current",
"JavaScript",
"."
] | [
"O",
"O",
"O",
"B-Language",
"O"
] |
[
"The",
"assignment",
"is",
"to",
"develop",
"a",
"monitor",
",",
"by",
"the",
"name",
"of",
"matchmaker",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Function",
"O"
] |
[
"We",
"have",
"a",
"routine",
":",
"self()",
";",
"that",
"returns",
"the",
"thread",
"'s",
"id",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"B-Function",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Variable",
"O"
] |
[
"The",
"matchmaker",
"method",
"must",
"do",
"the",
"following",
":"
] | [
"O",
"B-Function",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Threads",
"that",
"call",
"this",
"routine",
"\"",
"trade",
"\"",
"tids",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"B-Value",
"I-Value",
"I-Value",
"B-Variable",
"O"
] |
[
"When",
"a",
"thread",
"A",
"calls",
"make_match()",
"and",
"a",
"value",
"B",
"is",
"returned",
",",
"this",
"means",
"that",
"that",
"thread",
"ID",
"B",
"also",
"called",
"the",
"make_match",
"routine",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"B-Function",
"O",
"O",
"O",
"B-Value",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Variable",
"B-Value",
"O",
"O",
"O",
"B-Function",
"O",
"O"
] |
[
"For",
"a",
"pair",
"to",
"be",
"possible",
"make_match()",
"can",
"send",
"the",
"thread",
"to",
"sleep",
",",
"at",
"will",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"B-Function",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"For",
"the",
"mutex",
"and",
"condition",
"variables",
"pthread.h",
"mustbe",
"used",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"B-File_Name",
"O",
"O",
"O"
] |
[
"This",
"is",
"the",
"code",
"I",
"came",
"up",
"with",
"but",
"because",
"this",
"is",
"a",
"written",
"assignment",
"I",
"cannot",
"evaluate",
"it",
"'s",
"correctness",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"would",
"like",
"some",
"feedback",
"on",
"wether",
"this",
"could",
"work",
"or",
"not",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Thank",
"you",
"in",
"advance",
"."
] | [
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"am",
"using",
"Rg.Plugins.Popup",
"for",
"a",
"simple",
"confirmation",
"popup",
"before",
"deleting",
"an",
"item",
"from",
"the",
"list",
"like",
"\"",
"Are",
"you",
"sure",
"you",
"want",
"to",
"delete",
"Item1",
"from",
"the",
"list",
"?",
"\"",
"."
] | [
"O",
"O",
"O",
"B-Class",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Value",
"I-Value",
"I-Value",
"I-Value",
"I-Value",
"I-Value",
"I-Value",
"I-Value",
"I-Value",
"I-Value",
"I-Value",
"I-Value",
"I-Value",
"I-Value",
"O"
] |
[
"I",
"need",
"to",
"know",
"how",
"to",
"pause",
"the",
"deleting",
"method",
"till",
"it",
"gets",
"the",
"confirmation",
"from",
"the",
"popup",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Function",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O"
] |
[
"You",
"can",
"use",
"TaskCompletionSource"
] | [
"O",
"O",
"O",
"B-Class"
] |
[
"For",
"example",
",",
"create",
"PopupAlert",
"page",
"with",
"an",
"async",
"Show",
"method",
":"
] | [
"O",
"O",
"O",
"O",
"B-Class",
"O",
"O",
"O",
"B-Data_Type",
"B-Class",
"O",
"O"
] |
[
"And",
",",
"usage",
"would",
"look",
"like"
] | [
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Why",
"not",
"leverage",
"MessagingCenter",
"to",
"call",
"a",
"method",
"which",
"will",
"remove",
"said",
"item",
"?"
] | [
"O",
"O",
"O",
"B-Class",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Variable",
"O"
] |
[
"You",
"could",
"subscribe",
"to",
"the",
"message",
"when",
"displaying",
"the",
"popup",
"and",
"receive",
"it",
"when",
"the",
"confirm",
"button",
"has",
"been",
"clicked",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O"
] |
[
"I",
"have",
"several",
"mat",
"file",
"like",
":",
"first.mat",
",",
"second.mat",
",",
"third.mat",
",..",
"."
] | [
"O",
"O",
"O",
"B-File_Type",
"O",
"O",
"O",
"B-File_Name",
"O",
"B-File_Name",
"O",
"B-File_Name",
"O",
"O"
] |
[
"all",
"of",
"these",
"files",
"have",
"the",
"same",
"content",
"like",
":",
"variable1",
"<3400x1",
"double>",
",",
"variable2<1143x1",
"double>",
",",
"variable3<1141x1",
"double>",
",",
"..",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Variable",
"B-Value",
"B-Data_Type",
"O",
"B-Variable",
"B-Data_Type",
"O",
"B-Variable",
"B-Data_Type",
"O",
"O",
"O"
] |
[
"all",
"mat",
"files",
"have",
"the",
"same",
"content",
"but",
"the",
"size",
"of",
"each",
"variable",
"in",
"each",
"mat",
"file",
"is",
"different",
"."
] | [
"O",
"B-File_Type",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-File_Type",
"O",
"O",
"O",
"O"
] |
[
"I",
"need",
"to",
"concatenate",
"all",
"same",
"variables",
"in",
"all",
"mat",
"files",
"in",
"order",
"to",
"have",
"just",
"one",
"mat",
"file",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-File_Type",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-File_Type",
"O",
"O"
] |
[
"can",
"somebody",
"tell",
"me",
"what",
"can",
"I",
"do",
"?",
"which",
"function",
"should",
"I",
"use",
"?"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Many",
"thanks",
"."
] | [
"O",
"O",
"O"
] |
[
"There",
"is",
"no",
"matlab",
"function",
"to",
"do",
"this",
",",
"you",
"need",
"to",
"open",
"all",
"individual",
"vectors",
",",
"combine",
"them",
"in",
"the",
"way",
"you",
"want",
",",
"and",
"save",
"them",
"back",
"to",
"disk",
"."
] | [
"O",
"O",
"O",
"B-Language",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Data_Structure",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Device",
"O"
] |
[
"Something",
"like",
"this",
"(",
"untested",
")",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Thanks",
"all",
"for",
"your",
"answers",
",",
"here",
"is",
"the",
"final",
"code",
"which",
"is",
"working",
"correctly",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"am",
"playing",
"with",
"the",
"new",
"google",
"expansion",
"pack",
"stuff",
",",
"and",
"the",
"google",
"library",
"project",
"for",
"the",
"downloader",
"has",
"a",
"special",
"values-v9/styles.xml",
"file",
"for",
"the",
"notification",
"text",
"properties",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"B-Website",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-File_Name",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O"
] |
[
"This",
"causes",
"an",
"error",
"when",
"the",
"app",
"that",
"is",
"using",
"the",
"library",
"is",
"preAPI9",
"..",
".",
"at",
"least",
"for",
"me",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Library",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"It",
"is",
"referring",
"to",
"some",
"style",
"stuff",
"that",
"only",
"appeared",
"in",
"api9",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Library",
"B-Version"
] |
[
"I",
"'ve",
"tried",
"setting"
] | [
"O",
"O",
"O",
"O"
] |
[
"<uses-sdk",
"android:minSdkVersion=\"8\"",
"android:targetSdkVersion=\"9\"",
"/>"
] | [
"B-Code_Block",
"I-Code_Block",
"B-Code_Block",
"I-Code_Block"
] |
[
"in",
"the",
"AndroidManifest.xml",
"of",
"the",
"main",
"app",
",",
"but",
"this",
"did",
"n't",
"help",
"."
] | [
"O",
"O",
"B-File_Name",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"would",
"(",
"naively",
")",
"hope",
"eclipse",
"would",
"just",
"ignore",
"the",
"error",
"if",
"I",
"'m",
"building",
"for",
"api8",
",",
"and",
"then",
"when",
"deployed",
"on",
"the",
"market",
"the",
"system",
"would",
"use",
"the",
"values-9",
"stuff",
"if",
"the",
"phone",
"were",
"at",
"or",
"above",
"that",
"level",
",",
"but",
"it",
"does",
"n't",
"seem",
"to",
"work",
"that",
"way",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"B-Application",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Library",
"B-Version",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-File_Name",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |