{"instruction": "Translate this Engli phrase to Python: \"until x:\"", "input": "", "output": "```python\nwhile not (x):\n```"}
{"instruction": "What is \"Repeat the following until x is y: z\" in Python?", "input": "", "output": "```python\nwhile not x == y: z\n```"}
{"instruction": "What is \"Convert x to a set\" in Python?", "input": "", "output": "```python\nset(x)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Get the absolute value of x\"", "input": "", "output": "```python\nabs(x)\n```"}
{"instruction": "What is \"Open the file x as y\" in Python?", "input": "", "output": "```python\nwith open(x) as y:\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Create a tuple named x\"", "input": "", "output": "```python\nx = ()\n```"}
{"instruction": "What is \"Create a dictionary named x\" in Python?", "input": "", "output": "```python\nx = {}\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Copy the list x into y\"", "input": "", "output": "```python\ny = x.copy()\n```"}
{"instruction": "What is \"x is equal to y\" in Python?", "input": "", "output": "```python\nx == y\n```"}
{"instruction": "What is \"Zip x and y\" in Python?", "input": "", "output": "```python\nzip(x, y)\n```"}
{"instruction": "What is \"Power x to y\" in Python?", "input": "", "output": "```python\nx ** y\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Modulo x by y\"", "input": "", "output": "```python\nx % y\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Check if x is in y\"", "input": "", "output": "```python\nx in y\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Map x over y\"", "input": "", "output": "```python\nlist(map(x, y))\n```"}
{"instruction": "What is \"Delete key x from y\" in Python?", "input": "", "output": "```python\ndel y[\"x\"]\n```"}
{"instruction": "What is \"Assign x to y\" in Python?", "input": "", "output": "```python\ny = x\n```"}
{"instruction": "What is \"Extend x with y\" in Python?", "input": "", "output": "```python\nx.extend(y)\n```"}
{"instruction": "What is \"Slice x from y to z\" in Python?", "input": "", "output": "```python\nx[y:z]\n```"}
{"instruction": "What is \"Check if x equals y\" in Python?", "input": "", "output": "```python\nx == y\n```"}
{"instruction": "What is \"From x import y\" in Python?", "input": "", "output": "```python\nfrom x import y\n```"}
{"instruction": "What is \"Reverse x\" in Python?", "input": "", "output": "```python\nx[::-1]\n```"}
{"instruction": "What is \"Iterate over x\" in Python?", "input": "", "output": "```python\nfor item in x:\n```"}
{"instruction": "What is \"for each x in y, do z\" in Python?", "input": "", "output": "```python\nfor x in y: z\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Decrement x\"", "input": "", "output": "```python\nx -= 1\n```"}
{"instruction": "What is \"Get the length of x\" in Python?", "input": "", "output": "```python\nlen(x)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"x is less than or equal to y\"", "input": "", "output": "```python\nx <= y\n```"}
{"instruction": "What is \"Check if all of x\" in Python?", "input": "", "output": "```python\nall(x)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Convert x to a string\"", "input": "", "output": "```python\nstr(x)\n```"}
{"instruction": "What is \"Perform x until y\" in Python?", "input": "", "output": "```python\nx\nwhile not y:\n\\tx\n```"}
{"instruction": "What is \"Pop from x\" in Python?", "input": "", "output": "```python\nx.pop()\n```"}
{"instruction": "What is \"x is not equal to y\" in Python?", "input": "", "output": "```python\nx != y\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Uppercase x\"", "input": "", "output": "```python\nx.upper()\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Convert x to a float\"", "input": "", "output": "```python\nfloat(x)\n```"}
{"instruction": "What is \"x is less than y\" in Python?", "input": "", "output": "```python\nx < y\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Join x with y\"", "input": "", "output": "```python\ny.join(x)\n```"}
{"instruction": "What is \"Import x\" in Python?", "input": "", "output": "```python\nimport x\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Create a dictionary named x\"", "input": "", "output": "```python\nx = {}\n```"}
{"instruction": "What is \"Create an empty set named x\" in Python?", "input": "", "output": "```python\nx = set()\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Get the first item of x\"", "input": "", "output": "```python\nx[0]\n```"}
{"instruction": "What is \"x times:\" in Python?", "input": "", "output": "```python\nfor _ in range(x):\n```"}
{"instruction": "What is \"Divide x by y\" in Python?", "input": "", "output": "```python\nx / y\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Clear x\"", "input": "", "output": "```python\nx.clear()\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Call the function x with the parameter y\"", "input": "", "output": "```python\nx(y)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Iterate over x\"", "input": "", "output": "```python\nfor item in x:\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Round x\"", "input": "", "output": "```python\nround(x)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Add x to the set y\"", "input": "", "output": "```python\ny.add(x)\n```"}
{"instruction": "What is \"Map x over y\" in Python?", "input": "", "output": "```python\nlist(map(x, y))\n```"}
{"instruction": "Translate this Engli phrase to Python: \"x is greater than or equal to y\"", "input": "", "output": "```python\nx >= y\n```"}
{"instruction": "What is \"Filter items of x greater than y\" in Python?", "input": "", "output": "```python\n[x for x in x if x > y]\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Loop over x in y\"", "input": "", "output": "```python\nfor x in y:\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Get the keys of x\"", "input": "", "output": "```python\nlist(x.keys())\n```"}
{"instruction": "What is \"Convert x to a list\" in Python?", "input": "", "output": "```python\nlist(x)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Delete key x from y\"", "input": "", "output": "```python\ndel y[\"x\"]\n```"}
{"instruction": "What is \"Decrease x by y\" in Python?", "input": "", "output": "```python\nx -= y\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Swap x and y\"", "input": "", "output": "```python\nx, y = y, x\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Convert x to a set\"", "input": "", "output": "```python\nset(x)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Get attribute x of y\"", "input": "", "output": "```python\ny.x\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Return x\"", "input": "", "output": "```python\nreturn x\n```"}
{"instruction": "What is \"x is greater than y\" in Python?", "input": "", "output": "```python\nx > y\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Perform x until y\"", "input": "", "output": "```python\nx\nwhile not y:\n\\tx\n```"}
{"instruction": "Translate this Engli phrase to Python: \"x is between y and z\"", "input": "", "output": "```python\ny <= x <= z\n```"}
{"instruction": "What is \"Print x\" in Python?", "input": "", "output": "```python\nprint(x)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"In the class x, create a method named y that does the following: z\"", "input": "", "output": "```python\nclass x:\n\\tdef y(self):\n\\t\\tz\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Close x\"", "input": "", "output": "```python\nx.close()\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Get item x of y\"", "input": "", "output": "```python\ny[x]\n```"}
{"instruction": "What is \"Subtract x from y\" in Python?", "input": "", "output": "```python\ny - x\n```"}
{"instruction": "What is \"as long as x:\" in Python?", "input": "", "output": "```python\nwhile x:\n```"}
{"instruction": "What is \"Get attribute x of y\" in Python?", "input": "", "output": "```python\ny.x\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Append x to y\"", "input": "", "output": "```python\ny.append(x)\n```"}
{"instruction": "What is \"Uppercase x\" in Python?", "input": "", "output": "```python\nx.upper()\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Cast x to y\"", "input": "", "output": "```python\ny(x)\n```"}
{"instruction": "What is \"Check if x is empty\" in Python?", "input": "", "output": "```python\nnot x\n```"}
{"instruction": "What is \"Check if x ends with y\" in Python?", "input": "", "output": "```python\nx.endswith(\"y\")\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Repeat x:\"", "input": "", "output": "```python\nwhile True: x\n```"}
{"instruction": "Translate this Engli phrase to Python: \"From x import y\"", "input": "", "output": "```python\nfrom x import y\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Get the items of x\"", "input": "", "output": "```python\nlist(x.items())\n```"}
{"instruction": "What is \"Get the items of x\" in Python?", "input": "", "output": "```python\nlist(x.items())\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Loop from x to y\"", "input": "", "output": "```python\nfor i in range(x, y):\n```"}
{"instruction": "What is \"Get the last item of x\" in Python?", "input": "", "output": "```python\nx[-1]\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Concatenate x and y\"", "input": "", "output": "```python\nx + y\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Set x to y\"", "input": "", "output": "```python\nx = y\n```"}
{"instruction": "What is \"Get item x of y\" in Python?", "input": "", "output": "```python\ny[x]\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Get the length of x\"", "input": "", "output": "```python\nlen(x)\n```"}
{"instruction": "What is \"Add x and y\" in Python?", "input": "", "output": "```python\nx + y\n```"}
{"instruction": "What is \"Sort x\" in Python?", "input": "", "output": "```python\nsorted(x)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Multiply x by y\"", "input": "", "output": "```python\nx * y\n```"}
{"instruction": "Translate this Engli phrase to Python: \"For each item in x, do the following: y\"", "input": "", "output": "```python\nfor item in x: y\n```"}
{"instruction": "What is \"Call the function x with the parameter y\" in Python?", "input": "", "output": "```python\nx(y)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Repeat the following until x is y: z\"", "input": "", "output": "```python\nwhile not x == y: z\n```"}
{"instruction": "What is \"Swap x and y\" in Python?", "input": "", "output": "```python\nx, y = y, x\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Get the minimum of x\"", "input": "", "output": "```python\nmin(x)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Reverse x\"", "input": "", "output": "```python\nx[::-1]\n```"}
{"instruction": "What is \"Get key x from y\" in Python?", "input": "", "output": "```python\ny[x]\n```"}
{"instruction": "Translate this Engli phrase to Python: \"as long as x:\"", "input": "", "output": "```python\nwhile x:\n```"}
{"instruction": "What is \"Join x with y\" in Python?", "input": "", "output": "```python\ny.join(x)\n```"}
{"instruction": "What is \"Strip x\" in Python?", "input": "", "output": "```python\nx.strip()\n```"}
{"instruction": "What is \"Double x\" in Python?", "input": "", "output": "```python\nx * 2\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Get the last item of x\"", "input": "", "output": "```python\nx[-1]\n```"}
{"instruction": "What is \"Lowercase x\" in Python?", "input": "", "output": "```python\nx.lower()\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Square x\"", "input": "", "output": "```python\nx ** 2\n```"}
{"instruction": "What is \"Comment x\" in Python?", "input": "", "output": "```python\n# x\n```"}
{"instruction": "What is \"Round x\" in Python?", "input": "", "output": "```python\nround(x)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Wait x seconds\"", "input": "", "output": "```python\ntime.sleep(x)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Check if x is none\"", "input": "", "output": "```python\nx is None\n```"}
{"instruction": "What is \"Cast x to y\" in Python?", "input": "", "output": "```python\ny(x)\n```"}
{"instruction": "What is \"Get the maximum of x\" in Python?", "input": "", "output": "```python\nmax(x)\n```"}
{"instruction": "What is \"Get the minimum of x\" in Python?", "input": "", "output": "```python\nmin(x)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Check if x is empty\"", "input": "", "output": "```python\nnot x\n```"}
{"instruction": "What is \"Capitalize x\" in Python?", "input": "", "output": "```python\nx.capitalize()\n```"}
{"instruction": "What is \"If x, then y else z\" in Python?", "input": "", "output": "```python\nif x: y\n else: z\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Check if x ends with y\"", "input": "", "output": "```python\nx.endswith(\"y\")\n```"}
{"instruction": "What is \"Copy the list x into y\" in Python?", "input": "", "output": "```python\ny = x.copy()\n```"}
{"instruction": "Translate this Engli phrase to Python: \"for every x in y, do z\"", "input": "", "output": "```python\nfor x in y: z\n```"}
{"instruction": "What is \"Multiply x by y\" in Python?", "input": "", "output": "```python\nx * y\n```"}
{"instruction": "What is \"x is greater than or equal to y\" in Python?", "input": "", "output": "```python\nx >= y\n```"}
{"instruction": "What is \"Check if x starts with y\" in Python?", "input": "", "output": "```python\nx.startswith(\"y\")\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Find the index of x in y\"", "input": "", "output": "```python\ny.index(x)\n```"}
{"instruction": "What is \"Increase x by y\" in Python?", "input": "", "output": "```python\nx += y\n```"}
{"instruction": "What is \"Return x\" in Python?", "input": "", "output": "```python\nreturn x\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Title case x\"", "input": "", "output": "```python\nx.title()\n```"}
{"instruction": "What is \"Create a class named x\" in Python?", "input": "", "output": "```python\nclass x:\n\\tdef __init__(self):\n\\t\\tpass\n```"}
{"instruction": "Translate this Engli phrase to Python: \"If x, then y else z\"", "input": "", "output": "```python\nif x: y\n else: z\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Subtract x from y\"", "input": "", "output": "```python\ny - x\n```"}
{"instruction": "What is \"Define a function x that takes y, and returns z\" in Python?", "input": "", "output": "```python\ndef x(y): return z\n```"}
{"instruction": "What is \"Concatenate x and y\" in Python?", "input": "", "output": "```python\nx + y\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Power x to y\"", "input": "", "output": "```python\nx ** y\n```"}
{"instruction": "What is \"For x from y to z\" in Python?", "input": "", "output": "```python\nfor x in range(y, z):\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Sort x\"", "input": "", "output": "```python\nsorted(x)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Pop from x\"", "input": "", "output": "```python\nx.pop()\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Check if any of x\"", "input": "", "output": "```python\nany(x)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Write x to y\"", "input": "", "output": "```python\ny.write(x)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"x times:\"", "input": "", "output": "```python\nfor _ in range(x):\n```"}
{"instruction": "What is \"x is less than or equal to y\" in Python?", "input": "", "output": "```python\nx <= y\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Convert x to an integer\"", "input": "", "output": "```python\nint(x)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Get the maximum of x\"", "input": "", "output": "```python\nmax(x)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Sum x\"", "input": "", "output": "```python\nsum(x)\n```"}
{"instruction": "What is \"Assert that x\" in Python?", "input": "", "output": "```python\nassert x\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Filter items of x greater than y\"", "input": "", "output": "```python\n[x for x in x if x > y]\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Get the square root of x\"", "input": "", "output": "```python\nx ** 0.5\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Strip x\"", "input": "", "output": "```python\nx.strip()\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Create an object named x from the class y\"", "input": "", "output": "```python\nx = y()\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Open x for writing as y\"", "input": "", "output": "```python\nwith open(x, \"w\") as y:\n```"}
{"instruction": "What is \"Create an empty list named x\" in Python?", "input": "", "output": "```python\nx = []\n```"}
{"instruction": "What is \"In the dictionary x, set the key y with the value z\" in Python?", "input": "", "output": "```python\nx[y] = z\n```"}
{"instruction": "What is \"for every x in y, do z\" in Python?", "input": "", "output": "```python\nfor x in y: z\n```"}
{"instruction": "What is \"Call the function x with the parameters y\" in Python?", "input": "", "output": "```python\nx(y)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Get the type of x\"", "input": "", "output": "```python\ntype(x)\n```"}
{"instruction": "What is \"foreach x in y, do z\" in Python?", "input": "", "output": "```python\nfor x in y: z\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Divide x by y\"", "input": "", "output": "```python\nx / y\n```"}
{"instruction": "What is \"Negate x\" in Python?", "input": "", "output": "```python\n-x\n```"}
{"instruction": "What is \"Clear x\" in Python?", "input": "", "output": "```python\nx.clear()\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Check if x equals y\"", "input": "", "output": "```python\nx == y\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Comment x\"", "input": "", "output": "```python\n# x\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Enumerate x\"", "input": "", "output": "```python\nenumerate(x)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Define a class named x\"", "input": "", "output": "```python\nclass x:\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Read all lines of x into y\"", "input": "", "output": "```python\nwith open(\"x\") as f: y = f.readlines()\n```"}
{"instruction": "What is \"Split x by y\" in Python?", "input": "", "output": "```python\nx.split(y)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"In the dictionary x, set the key y with the value z\"", "input": "", "output": "```python\nx[y] = z\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Raise a x with message y\"", "input": "", "output": "```python\nraise x(y)\n```"}
{"instruction": "What is \"Get the first item of x\" in Python?", "input": "", "output": "```python\nx[0]\n```"}
{"instruction": "Translate this Engli phrase to Python: \"x is not equal to y\"", "input": "", "output": "```python\nx != y\n```"}
{"instruction": "What is \"Replace x with y in z\" in Python?", "input": "", "output": "```python\nz.replace(x, y)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Decrease x by y\"", "input": "", "output": "```python\nx -= y\n```"}
{"instruction": "What is \"Give x the value y\" in Python?", "input": "", "output": "```python\nx = y\n```"}
{"instruction": "What is \"Title case x\" in Python?", "input": "", "output": "```python\nx.title()\n```"}
{"instruction": "What is \"Check if x is in y\" in Python?", "input": "", "output": "```python\nx in y\n```"}
{"instruction": "What is \"until x:\" in Python?", "input": "", "output": "```python\nwhile not (x):\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Assert that x\"", "input": "", "output": "```python\nassert x\n```"}
{"instruction": "What is \"Close x\" in Python?", "input": "", "output": "```python\nx.close()\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Check if x starts with y\"", "input": "", "output": "```python\nx.startswith(\"y\")\n```"}
{"instruction": "What is \"Modulo x by y\" in Python?", "input": "", "output": "```python\nx % y\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Capitalize x\"", "input": "", "output": "```python\nx.capitalize()\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Convert x to a list\"", "input": "", "output": "```python\nlist(x)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Get key x from y\"", "input": "", "output": "```python\ny[x]\n```"}
{"instruction": "What is \"Create an object named x from the class y\" in Python?", "input": "", "output": "```python\nx = y()\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Get the values of x\"", "input": "", "output": "```python\nlist(x.values())\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Insert x into y\"", "input": "", "output": "```python\ny.insert(0, x)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Count x in y\"", "input": "", "output": "```python\ny.count(x)\n```"}
{"instruction": "What is \"Open x for writing as y\" in Python?", "input": "", "output": "```python\nwith open(x, \"w\") as y:\n```"}
{"instruction": "What is \"Append x to y\" in Python?", "input": "", "output": "```python\ny.append(x)\n```"}
{"instruction": "What is \"Define a class named x\" in Python?", "input": "", "output": "```python\nclass x:\n```"}
{"instruction": "What is \"Read all lines of x into y\" in Python?", "input": "", "output": "```python\nwith open(\"x\") as f: y = f.readlines()\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Double x\"", "input": "", "output": "```python\nx * 2\n```"}
{"instruction": "What is \"Increment x\" in Python?", "input": "", "output": "```python\nx += 1\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Create an empty set named x\"", "input": "", "output": "```python\nx = set()\n```"}
{"instruction": "What is \"Wait x seconds\" in Python?", "input": "", "output": "```python\ntime.sleep(x)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"For x from y to z\"", "input": "", "output": "```python\nfor x in range(y, z):\n```"}
{"instruction": "Translate this Engli phrase to Python: \"x is greater than y\"", "input": "", "output": "```python\nx > y\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Create a class named x\"", "input": "", "output": "```python\nclass x:\n\\tdef __init__(self):\n\\t\\tpass\n```"}
{"instruction": "What is \"Get the values of x\" in Python?", "input": "", "output": "```python\nlist(x.values())\n```"}
{"instruction": "What is \"Raise a x with message y\" in Python?", "input": "", "output": "```python\nraise x(y)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Print x\"", "input": "", "output": "```python\nprint(x)\n```"}
{"instruction": "What is \"Decrement x\" in Python?", "input": "", "output": "```python\nx -= 1\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Extend x with y\"", "input": "", "output": "```python\nx.extend(y)\n```"}
{"instruction": "What is \"Add x to the set y\" in Python?", "input": "", "output": "```python\ny.add(x)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Zip x and y\"", "input": "", "output": "```python\nzip(x, y)\n```"}
{"instruction": "What is \"Convert x to a float\" in Python?", "input": "", "output": "```python\nfloat(x)\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Create an empty list named x\"", "input": "", "output": "```python\nx = []\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Check if all of x\"", "input": "", "output": "```python\nall(x)\n```"}
{"instruction": "What is \"For each item in x, do the following: y\" in Python?", "input": "", "output": "```python\nfor item in x: y\n```"}
{"instruction": "Translate this Engli phrase to Python: \"Slice x from y to z\"", "input": "", "output": "```python\nx[y:z]\n```"}
{"instruction": "What is \"Repeat x:\" in Python?", "input": "", "output": "```python\nwhile True: x\n```"}
{"instruction": "What is \"Convert x to a string\" in Python?", "input": "", "output": "```python\nstr(x)\n```"}
{"instruction": "What is \"Create a tuple named x\" in Python?", "input": "", "output": "```python\nx = ()\n```"}
{"instruction": "How do I run pytest with coverage from the command line?", "input": "", "output": "```bash\npytest --cov=<package>\n```\n\nReplace `<package>` with your own values."}
{"instruction": "Changing ownership of a directory", "input": "", "output": "```bash\nchown <username> <directory>\n```\n\nReplace `<username>`, `<directory>` with your own values."}
{"instruction": "How do I show CPU information from the command line?", "input": "", "output": "```bash\nlscpu\n```"}
{"instruction": "Check the disk usage of the system", "input": "", "output": "```bash\ndf -h\n```"}
{"instruction": "Install Scrapy for robust web scraping", "input": "", "output": "```bash\npip install Scrapy\n```"}
{"instruction": "How do I writing to a file from the command line?", "input": "", "output": "```bash\necho \"<text>\" > <file>\n```\n\nReplace `<text>`, `<file>` with your own values."}
{"instruction": "How do I scan a host's open ports with nmap from the command line?", "input": "", "output": "```bash\nnmap <host>\n```\n\nReplace `<host>` with your own values."}
{"instruction": "How do I open a shell inside a Docker container from the command line?", "input": "", "output": "```bash\ndocker exec -it <container> sh\n```\n\nReplace `<container>` with your own values."}
{"instruction": "Build a Docker image from Dockerfile", "input": "", "output": "```bash\ndocker build -t <imagename>:<tag> .\n```\n\nReplace `<imagename>`, `<tag>` with your own values."}
{"instruction": "SSH into a machine", "input": "", "output": "```bash\nssh <username>@<hostname>\n```\n\nReplace `<username>`, `<hostname>` with your own values."}
{"instruction": "Pull the current git branch", "input": "", "output": "```bash\ngit pull origin \"$(git rev-parse --abbrev-ref HEAD)\"\n```"}
{"instruction": "How do I disk usage of directory from the command line?", "input": "", "output": "```bash\ndu -sh <directory>\n```\n\nReplace `<directory>` with your own values."}
{"instruction": "How do I launch a python interactive shell with Django from the command line?", "input": "", "output": "```bash\npython manage.py shell\n```"}
{"instruction": "How do I clean up unused Docker resources from the command line?", "input": "", "output": "```bash\ndocker system prune\n```"}
{"instruction": "How do I apply the most recent stash from the command line?", "input": "", "output": "```bash\ngit stash pop\n```"}
{"instruction": "Count words in a file", "input": "", "output": "```bash\nwc -w <file>\n```\n\nReplace `<file>` with your own values."}
{"instruction": "How do I pretty-print a CSV in the terminal from the command line?", "input": "", "output": "```bash\ncolumn -s, -t < <file>.csv | less -S\n```\n\nReplace `<file>` with your own values."}
{"instruction": "How do I push repo from the command line?", "input": "", "output": "```bash\ngit push <source> <destination>\n```\n\nReplace `<source>`, `<destination>` with your own values."}
{"instruction": "Generate a random hex string with OpenSSL", "input": "", "output": "```bash\nopenssl rand -hex <bytes>\n```\n\nReplace `<bytes>` with your own values."}
{"instruction": "How do I create New PostgreSQL Database and User from the command line?", "input": "", "output": "```bash\nsudo -u postgres createuser <username>\nsudo -u postgres createdb --owner=<username> <dbname>\n```\n\nReplace `<username>`, `<dbname>` with your own values."}
{"instruction": "Upgrade installed packages on Ubuntu", "input": "", "output": "```bash\nsudo apt-get upgrade\n```"}
{"instruction": "How do I show processes sorted by memory from the command line?", "input": "", "output": "```bash\nps aux --sort=-%mem | head\n```"}
{"instruction": "Changing directory permissions", "input": "", "output": "```bash\nchmod <permission_numbers> <directory>\n```\n\nReplace `<permission_numbers>`, `<directory>` with your own values."}
{"instruction": "Apply the most recent stash", "input": "", "output": "```bash\ngit stash pop\n```"}
{"instruction": "How do I look up a domain's MX records from the command line?", "input": "", "output": "```bash\ndig +short MX <domain>\n```\n\nReplace `<domain>` with your own values."}
{"instruction": "How do I run tests with pytest from the command line?", "input": "", "output": "```bash\npytest\n```"}
{"instruction": "How do I changing ownership of a directory from the command line?", "input": "", "output": "```bash\nchown <username> <directory>\n```\n\nReplace `<username>`, `<directory>` with your own values."}
{"instruction": "Generate a random secret", "input": "", "output": "```bash\nopenssl rand -hex 32\n```"}
{"instruction": "Scale a service in Docker Swarm", "input": "", "output": "```bash\ndocker service scale <service>=<num_replicas>\n```\n\nReplace `<service>`, `<num_replicas>` with your own values."}
{"instruction": "How do I django run a server from the command line?", "input": "", "output": "```bash\npython manage.py runserver\n```"}
{"instruction": "How do I install Flask-SQLAlchemy (for database operations) from the command line?", "input": "", "output": "```bash\npip install Flask-SQLAlchemy\n```"}
{"instruction": "How do I edit a file from the command line?", "input": "", "output": "```bash\nnano some_file\n```"}
{"instruction": "How do I install Requests for HTTP requests from the command line?", "input": "", "output": "```bash\npip install requests\n```"}
{"instruction": "Interactively stage changes", "input": "", "output": "```bash\ngit add -p\n```"}
{"instruction": "How do I run a Docker container and mount a volume from the command line?", "input": "", "output": "```bash\ndocker run -d -v <hostdirectory>:<containerdirectory> <imagename>\n```\n\nReplace `<hostdirectory>`, `<containerdirectory>`, `<imagename>` with your own values."}
{"instruction": "How do I selenium navigate to a website from the command line?", "input": "", "output": "```bash\ndriver.get(\"<url>\")\n```\n\nReplace `<url>` with your own values."}
{"instruction": "How do I create a hard link from the command line?", "input": "", "output": "```bash\nln <source_file> <link>\n```\n\nReplace `<source_file>`, `<link>` with your own values."}
{"instruction": "How do I start a git bisect session from the command line?", "input": "", "output": "```bash\ngit bisect start && git bisect bad && git bisect good <good_commit>\n```\n\nReplace `<good_commit>` with your own values."}
{"instruction": "Create and push a git tag", "input": "", "output": "```bash\ngit tag <tag> && git push origin <tag>\n```\n\nReplace `<tag>` with your own values."}
{"instruction": "Check disk usage of directories", "input": "", "output": "```bash\ndu -sh <directoryname>\n```\n\nReplace `<directoryname>` with your own values."}
{"instruction": "Delete a directory", "input": "", "output": "```bash\nrm -R some_directory\n```"}
{"instruction": "Open an interactive Python shell in Docker Container", "input": "", "output": "```bash\ndocker run -it --rm <imagename> python3\n```\n\nReplace `<imagename>` with your own values."}
{"instruction": "How do I search for a Homebrew package from the command line?", "input": "", "output": "```bash\nbrew search <query>\n```\n\nReplace `<query>` with your own values."}
{"instruction": "Attach to a tmux session", "input": "", "output": "```bash\ntmux attach -t <name>\n```\n\nReplace `<name>` with your own values."}
{"instruction": "How do I docker build an image from the command line?", "input": "", "output": "```bash\ndocker build -t <image_name> .\n```\n\nReplace `<image_name>` with your own values."}
{"instruction": "How do I install specific python package in active environment from the command line?", "input": "", "output": "```bash\npip install <packagename>\n```\n\nReplace `<packagename>` with your own values."}
{"instruction": "How do I download and save with a specific filename from the command line?", "input": "", "output": "```bash\nwget -O <filename> <url>\n```\n\nReplace `<filename>`, `<url>` with your own values."}
{"instruction": "Watch GPU usage", "input": "", "output": "```bash\nnvidia-smi -l 1\n```"}
{"instruction": "Execute script", "input": "", "output": "```bash\n./some_script.sh\n```"}
{"instruction": "Check memory usage on Unix/Linux", "input": "", "output": "```bash\nfree -m\n```"}
{"instruction": "Remove a directory and its contents", "input": "", "output": "```bash\nrm -r <directory_name>\n```\n\nReplace `<directory_name>` with your own values."}
{"instruction": "Create a new folder", "input": "", "output": "```bash\nmkdir <new_directory>\n```\n\nReplace `<new_directory>` with your own values."}
{"instruction": "How do I run a process in the background from the command line?", "input": "", "output": "```bash\nnohup <your_command> &\n```\n\nReplace `<your_command>` with your own values."}
{"instruction": "Copy files to a remote server", "input": "", "output": "```bash\nscp <file_path> <username>@<ip_address>:<destination_path>\n```\n\nReplace `<file_path>`, `<username>`, `<ip_address>`, `<destination_path>` with your own values."}
{"instruction": "Generate a self-signed TLS certificate", "input": "", "output": "```bash\nopenssl req -x509 -newkey rsa:4096 -keyout <key>.pem -out <cert>.pem -days 365 -nodes\n```\n\nReplace `<key>`, `<cert>` with your own values."}
{"instruction": "How do I install project requirements from the command line?", "input": "", "output": "```bash\npip3 install -r requirements.txt\n```"}
{"instruction": "How do I install Jupyter Lab from the command line?", "input": "", "output": "```bash\npip install jupyterlab\n```"}
{"instruction": "How do I python run a script from the command line?", "input": "", "output": "```bash\npython <script_name>.py\n```\n\nReplace `<script_name>` with your own values."}
{"instruction": "How do I SSH into a machine from the command line?", "input": "", "output": "```bash\nssh <username>@<hostname>\n```\n\nReplace `<username>`, `<hostname>` with your own values."}
{"instruction": "Django create a new application", "input": "", "output": "```bash\npython manage.py startapp <app_name>\n```\n\nReplace `<app_name>` with your own values."}
{"instruction": "Profile a Python script", "input": "", "output": "```bash\npython -m cProfile -s cumtime <script>\n```\n\nReplace `<script>` with your own values."}
{"instruction": "Terraform deploy the infrastructure", "input": "", "output": "```bash\nterraform apply\n```"}
{"instruction": "How do I deploy a service to Docker Swarm from the command line?", "input": "", "output": "```bash\ndocker service create --replicas 1 --name <service> <docker_image>\n```\n\nReplace `<service>`, `<docker_image>` with your own values."}
{"instruction": "Show processes sorted by CPU", "input": "", "output": "```bash\nps aux --sort=-%cpu | head\n```"}
{"instruction": "How do I create a new user on Unix/Linux from the command line?", "input": "", "output": "```bash\nadduser <username>\n```\n\nReplace `<username>` with your own values."}
{"instruction": "Show a compact git history graph", "input": "", "output": "```bash\ngit log --oneline --graph --decorate --all\n```"}
{"instruction": "How do I show which process is using a port from the command line?", "input": "", "output": "```bash\nlsof -i :<port>\n```\n\nReplace `<port>` with your own values."}
{"instruction": "How do I C/C++ compile a program using gcc from the command line?", "input": "", "output": "```bash\ngcc -o <program_name> <program_name>.c\n```\n\nReplace `<program_name>` with your own values."}
{"instruction": "How do I install necessary libraries for scraping app in a virtual environement from the command line?", "input": "", "output": "```bash\nbash -c 'cd ./<env_name>/ && source \"bin/activate\" && pip3 install fuzzywuzzy pandas flask beautifulsoup4 requests'\n```\n\nReplace `<env_name>` with your own values."}
{"instruction": "Rebase onto the main branch", "input": "", "output": "```bash\ngit rebase main\n```"}
{"instruction": "How do I make a Curl Request from the command line?", "input": "", "output": "```bash\ncurl -X GET http://<url>\n```\n\nReplace `<url>` with your own values."}
{"instruction": "How do I process monitoring from the command line?", "input": "", "output": "```bash\ntop\n```"}
{"instruction": "How do I create scraping app from the command line?", "input": "", "output": "```bash\ncat > <app_name>.py <<'EOF'\nfrom flask import Flask, jsonify\nfrom bs4 import BeautifulSoup\nimport requests\n\napp = Flask(__name__)\n\n@app.route(\"/api/scrape\", methods=[\"GET\"])\ndef get_scraped_data():\n    content = fetch_data(\"https://www.<website>\", \"<specificword>\")  # replace with the site you want to scrape\n    return jsonify(content), 200\n\ndef fetch_data(url, word):\n    response = requests.get(url)\n    soup = BeautifulSoup(response.text, \"html.parser\")\n    text = soup.get_text()  # get all the text\n\n    # Find the word\n    try:\n        index = text.index(word)\n        # Return all text after the word\n        return text[index + len(word):]\n    except ValueError: \n        return \"The word does not appear in the text\"\n\nif __name__ == \"__main__\":\n    app.run(debug=True)\nEOF\n```\n\nReplace `<app_name>`, `<website>`, `<specificword>` with your own values."}
{"instruction": "How do I run flask shell for interactive shell context from the command line?", "input": "", "output": "```bash\nflask shell\n```"}
{"instruction": "How do I create an app to generate images with Dall-e from the command line?", "input": "", "output": "```bash\ngit clone https://github.com/domeccleston/dalle-2.git\ncd dalle-2/\nsudo mv .env.example .env\ncd ../ && cd engli/tools/ && sudo cp checkenv.py ../../dalle-2/checkenv.py\ncd ../ && cd ../ && cd dalle-e/ && python3 checkenv.py\n```"}
{"instruction": "Create an empty file", "input": "", "output": "```bash\ntouch some_file\n```"}
{"instruction": "Create a script to enter virtual environment", "input": "", "output": "```bash\ncat > <script_name>.sh <<'EOF'\n#!/bin/bash\nsource \"./bin/activate\"\nEOF\n```\n\nReplace `<script_name>` with your own values."}
{"instruction": "Copy a file", "input": "", "output": "```bash\ncp <source> <destination>\n```\n\nReplace `<source>`, `<destination>` with your own values."}
{"instruction": "Add user to a specific group", "input": "", "output": "```bash\nsudo usermod -a -G <group> <username>\n```\n\nReplace `<group>`, `<username>` with your own values."}
{"instruction": "Apply migration to database", "input": "", "output": "```bash\nflask db upgrade\n```"}
{"instruction": "Java run a program", "input": "", "output": "```bash\njava <program_name>\n```\n\nReplace `<program_name>` with your own values."}
{"instruction": "How do I create encrypted password with OpenSSL from the command line?", "input": "", "output": "```bash\nopenssl passwd -1 <password>\n```\n\nReplace `<password>` with your own values."}
{"instruction": "How do I export a SQLite query to CSV from the command line?", "input": "", "output": "```bash\nsqlite3 -header -csv <database_file> \"<sql_query>\" > <output>.csv\n```\n\nReplace `<database_file>`, `<sql_query>`, `<output>` with your own values."}
{"instruction": "Install pip (Python package manager)", "input": "", "output": "```bash\nsudo apt install python3-pip\n```"}
{"instruction": "How do I resize an image with ImageMagick from the command line?", "input": "", "output": "```bash\nconvert <input> -resize <size> <output>\n```\n\nReplace `<input>`, `<size>`, `<output>` with your own values."}
{"instruction": "How do I create a ignore file from the command line?", "input": "", "output": "```bash\necho -e 'env\\n__pycache__\\n.env\\ninclude/\\nlib64/\\nlib/\\nshare\\n<folder_to_ignore>/\\nbin/\\n' > .gitignore\n```\n\nReplace `<folder_to_ignore>` with your own values."}
{"instruction": "How do I removing a file from the command line?", "input": "", "output": "```bash\nrm <file_name>\n```\n\nReplace `<file_name>` with your own values."}
{"instruction": "How do I send a JSON POST request from the command line?", "input": "", "output": "```bash\ncurl -X POST -H \"Content-Type: application/json\" -d '<json>' <url>\n```\n\nReplace `<json>`, `<url>` with your own values."}
{"instruction": "Show processes sorted by memory", "input": "", "output": "```bash\nps aux --sort=-%mem | head\n```"}
{"instruction": "Install Node.js and npm on Ubuntu", "input": "", "output": "```bash\nsudo apt install -y nodejs npm\n```"}
{"instruction": "How do I give Specific Privileges to User in PostgreSQL from the command line?", "input": "", "output": "```bash\nsudo -u postgres psql\nGRANT ALL PRIVILEGES ON DATABASE <dbname> to <username>;\n\\q\n```\n\nReplace `<dbname>`, `<username>` with your own values."}
{"instruction": "How do I delete a directory from the command line?", "input": "", "output": "```bash\nrm -R some_directory\n```"}
{"instruction": "Check status of a service", "input": "", "output": "```bash\nsystemctl status <service_name>\n```\n\nReplace `<service_name>` with your own values."}
{"instruction": "How do I git commit changes from the command line?", "input": "", "output": "```bash\ngit commit -m \"<commit_message>\"\n```\n\nReplace `<commit_message>` with your own values."}
{"instruction": "How do I kill processes by name from the command line?", "input": "", "output": "```bash\npkill <name>\n```\n\nReplace `<name>` with your own values."}
{"instruction": "Generate a Spider for Scrapy project", "input": "", "output": "```bash\ncd <project_name>\nscrapy genspider <spider_name> <website>\n```\n\nReplace `<project_name>`, `<spider_name>`, `<website>` with your own values."}
{"instruction": "How do I activate Python environment from the command line?", "input": "", "output": "```bash\nsource myenv/bin/activate\n```"}
{"instruction": "push all repo origin main", "input": "", "output": "```bash\ngit add . \ngit commit -m \"autocommit\"\ngit push origin main\n```"}
{"instruction": "How do I measure download speed of a URL from the command line?", "input": "", "output": "```bash\ncurl -o /dev/null -sS -w 'speed: %{speed_download} bytes/sec\\n' <url>\n```\n\nReplace `<url>` with your own values."}
{"instruction": "How do I generate an SSH key from the command line?", "input": "", "output": "```bash\nssh-keygen -t ed25519 -C \"<email>\"\n```\n\nReplace `<email>` with your own values."}
{"instruction": "create with engli scrapping app to track data and store in a database", "input": "", "output": "```bash\ncd engli/tools/\nsh scrapingapp.sh\n```"}
{"instruction": "Export a SQLite query to CSV", "input": "", "output": "```bash\nsqlite3 -header -csv <database_file> \"<sql_query>\" > <output>.csv\n```\n\nReplace `<database_file>`, `<sql_query>`, `<output>` with your own values."}
{"instruction": "How do I start an ngrok tunnel from the command line?", "input": "", "output": "```bash\nngrok http <port>\n```\n\nReplace `<port>` with your own values."}
{"instruction": "How do I sync two folders with rsync from the command line?", "input": "", "output": "```bash\nrsync -av <source>/ <destination>/\n```\n\nReplace `<source>`, `<destination>` with your own values."}
{"instruction": "How do I find process ID related to a running service from the command line?", "input": "", "output": "```bash\npgrep -f some_service\n```"}
{"instruction": "How do I enter a virtual environement from the command line?", "input": "", "output": "```bash\necho RUN THIS IN YOUR TERMINAL:\necho source <script_name>.sh\n```\n\nReplace `<script_name>` with your own values."}
{"instruction": "Kill processes by name", "input": "", "output": "```bash\npkill <name>\n```\n\nReplace `<name>` with your own values."}
{"instruction": "How do I show a calendar for a month from the command line?", "input": "", "output": "```bash\ncal <month> <year>\n```\n\nReplace `<month>`, `<year>` with your own values."}
{"instruction": "Download and retry for n times in case of failure", "input": "", "output": "```bash\nwget --tries=<n> <url>\n```\n\nReplace `<n>`, `<url>` with your own values."}
{"instruction": "Convert a notebook to a script", "input": "", "output": "```bash\njupyter nbconvert --to script <notebook>\n```\n\nReplace `<notebook>` with your own values."}
{"instruction": "Install dependencies with pnpm", "input": "", "output": "```bash\npnpm install\n```"}
{"instruction": "Run job every hour", "input": "", "output": "```bash\ncrontab -e\n0 * * * * <command>\n```\n\nReplace `<command>` with your own values."}
{"instruction": "How do I run job every day at midnight from the command line?", "input": "", "output": "```bash\ncrontab -e\n0 0 * * * <command>\n```\n\nReplace `<command>` with your own values."}
{"instruction": "Stop a service", "input": "", "output": "```bash\nsudo systemctl stop <service_name>\n```\n\nReplace `<service_name>` with your own values."}
{"instruction": "How do I extracting a tarball from the command line?", "input": "", "output": "```bash\ntar -xvf <archive_name>.tar*\n```\n\nReplace `<archive_name>` with your own values."}
{"instruction": "How do I run a Docker image with a specific port mapping from the command line?", "input": "", "output": "```bash\ndocker run -d -p <hostport>:<containerport> <imagename>\n```\n\nReplace `<hostport>`, `<containerport>`, `<imagename>` with your own values."}
{"instruction": "How do I trim a video without re-encoding from the command line?", "input": "", "output": "```bash\nffmpeg -ss <start_time> -to <end_time> -i <input_video> -c copy <output_video>\n```\n\nReplace `<start_time>`, `<end_time>`, `<input_video>`, `<output_video>` with your own values."}
{"instruction": "Show CPU information", "input": "", "output": "```bash\nlscpu\n```"}
{"instruction": "How do I install Flask via pip from the command line?", "input": "", "output": "```bash\npip install flask\n```"}
{"instruction": "Node.js run a script", "input": "", "output": "```bash\nnode <script_name>.js\n```\n\nReplace `<script_name>` with your own values."}
{"instruction": "How do I show recent git history from the command line?", "input": "", "output": "```bash\ngit log --oneline -n <count>\n```\n\nReplace `<count>` with your own values."}
{"instruction": "How do I changing file permissions from the command line?", "input": "", "output": "```bash\nchmod <permission_numbers> <file>\n```\n\nReplace `<permission_numbers>`, `<file>` with your own values."}
{"instruction": "How do I follow a Docker container's logs from the command line?", "input": "", "output": "```bash\ndocker logs -f <container>\n```\n\nReplace `<container>` with your own values."}
{"instruction": "Format code with black", "input": "", "output": "```bash\nblack <path>\n```\n\nReplace `<path>` with your own values."}
{"instruction": "Running a script with specific interpreter", "input": "", "output": "```bash\n<interpreter> <your_script>\n```\n\nReplace `<interpreter>`, `<your_script>` with your own values."}
{"instruction": "Extracting a tarball", "input": "", "output": "```bash\ntar -xvf <archive_name>.tar*\n```\n\nReplace `<archive_name>` with your own values."}
{"instruction": "How do I format code with black from the command line?", "input": "", "output": "```bash\nblack <path>\n```\n\nReplace `<path>` with your own values."}
{"instruction": "Scrapy start a new project", "input": "", "output": "```bash\nscrapy startproject <project_name>\n```\n\nReplace `<project_name>` with your own values."}
{"instruction": "Copy file to a remote machine", "input": "", "output": "```bash\nscp <file> <username>@<hostname>:<directory>\n```\n\nReplace `<file>`, `<username>`, `<hostname>`, `<directory>` with your own values."}
{"instruction": "How do I run a Python script with arguments from the command line?", "input": "", "output": "```bash\npython3 some_script.py <arg1> <arg2>\n```\n\nReplace `<arg1>`, `<arg2>` with your own values."}
{"instruction": "How do I install dependencies with pnpm from the command line?", "input": "", "output": "```bash\npnpm install\n```"}
{"instruction": "Download file with wget", "input": "", "output": "```bash\nwget <file_url>\n```\n\nReplace `<file_url>` with your own values."}
{"instruction": "List all environment variables", "input": "", "output": "```bash\nprintenv\n```"}
{"instruction": "How do I create a simple web chatgpt chatbot from the command line?", "input": "", "output": "```bash\ngit clone https://github.com/Wiazeph/Chat-Bot.git\ncd Chat-Bot/\nnpm install\nnpm run dev\n```"}
{"instruction": "Benchmark a command with hyperfine", "input": "", "output": "```bash\nhyperfine \"<command>\"\n```\n\nReplace `<command>` with your own values."}
{"instruction": "How do I running a script with specific interpreter from the command line?", "input": "", "output": "```bash\n<interpreter> <your_script>\n```\n\nReplace `<interpreter>`, `<your_script>` with your own values."}
{"instruction": "How do I open a SQLite database shell from the command line?", "input": "", "output": "```bash\nsqlite3 <database_file>\n```\n\nReplace `<database_file>` with your own values."}
{"instruction": "How do I git check status from the command line?", "input": "", "output": "```bash\ngit status\n```"}
{"instruction": "How do I deploy with Kubernetes from the command line?", "input": "", "output": "```bash\nkubectl apply -f <service_name>.yaml\n```\n\nReplace `<service_name>` with your own values."}
{"instruction": "How do I fetch the raw HTML content of a webpage from the command line?", "input": "", "output": "```bash\ncurl <url>\n```\n\nReplace `<url>` with your own values."}
{"instruction": "How do I check all running processes from the command line?", "input": "", "output": "```bash\nps aux\n```"}
{"instruction": "Update all packages", "input": "", "output": "```bash\nsudo apt-get update && sudo apt-get upgrade\n```"}
{"instruction": "Docker start a container", "input": "", "output": "```bash\ndocker start <container_id>\n```\n\nReplace `<container_id>` with your own values."}
{"instruction": "Create a Python virtual environment with a specific name", "input": "", "output": "```bash\npython3 -m venv <envname>\n```\n\nReplace `<envname>` with your own values."}
{"instruction": "Check all running processes", "input": "", "output": "```bash\nps aux\n```"}
{"instruction": "List Kubernetes pods", "input": "", "output": "```bash\nkubectl get pods\n```"}
{"instruction": "Check the syntax of a Python script", "input": "", "output": "```bash\npython -m py_compile <script>.py*\n```\n\nReplace `<script>` with your own values."}
{"instruction": "How do I extract a field from a JSON file with jq from the command line?", "input": "", "output": "```bash\njq -r '.<field>' <file>\n```\n\nReplace `<field>`, `<file>` with your own values."}
{"instruction": "Django run a server", "input": "", "output": "```bash\npython manage.py runserver\n```"}
{"instruction": "How do I selenium click on an element from the command line?", "input": "", "output": "```bash\nelement.click()\n```"}
{"instruction": "Type-check Python with mypy", "input": "", "output": "```bash\nmypy <path>\n```\n\nReplace `<path>` with your own values."}
{"instruction": "Install Docker on Ubuntu", "input": "", "output": "```bash\ncurl -fsSL get.docker.com -o get-docker.sh && sh get-docker.sh\n```"}
{"instruction": "Changing ownership of a file", "input": "", "output": "```bash\nchown <username> <file>\n```\n\nReplace `<username>`, `<file>` with your own values."}
{"instruction": "Check for running process", "input": "", "output": "```bash\nps aux | grep <process_name>\n```\n\nReplace `<process_name>` with your own values."}
{"instruction": "Serve the current folder over HTTP", "input": "", "output": "```bash\npython3 -m http.server <port>\n```\n\nReplace `<port>` with your own values."}
{"instruction": "Show only an HTTP response status code", "input": "", "output": "```bash\ncurl -s -o /dev/null -w \"%{http_code}\" <url>\n```\n\nReplace `<url>` with your own values."}
{"instruction": "How do I amend the last commit message from the command line?", "input": "", "output": "```bash\ngit commit --amend -m \"<message>\"\n```\n\nReplace `<message>` with your own values."}
{"instruction": "Download an entire website", "input": "", "output": "```bash\nwget --mirror --convert-links --adjust-extension --page-requisites --no-parent <website_url>\n```\n\nReplace `<website_url>` with your own values."}
{"instruction": "How do I django create a new application from the command line?", "input": "", "output": "```bash\npython manage.py startapp <app_name>\n```\n\nReplace `<app_name>` with your own values."}
{"instruction": "How do I run Rust tests from the command line?", "input": "", "output": "```bash\ncargo test\n```"}
{"instruction": "How do I docker run a container from the command line?", "input": "", "output": "```bash\ndocker run -p 4000:80 <image_name>\n```\n\nReplace `<image_name>` with your own values."}
{"instruction": "How do I java compile a program from the command line?", "input": "", "output": "```bash\njavac <program_name>.java\n```\n\nReplace `<program_name>` with your own values."}
{"instruction": "How do I kill a process by its PID from the command line?", "input": "", "output": "```bash\nkill -9 <PID>\n```\n\nReplace `<PID>` with your own values."}
{"instruction": "How do I launch JupyterLab from the command line?", "input": "", "output": "```bash\njupyter lab\n```"}
{"instruction": "Tear down a docker-compose stack", "input": "", "output": "```bash\ndocker-compose down\n```"}
{"instruction": "Replace text in a file", "input": "", "output": "```bash\nsed -i 's/<oldtext>/<newtext>/g' <filename>\n```\n\nReplace `<oldtext>`, `<newtext>`, `<filename>` with your own values."}
{"instruction": "Creating tarball of a directory", "input": "", "output": "```bash\ntar -cvf <archive_name>.tar* <directory>\n```\n\nReplace `<archive_name>`, `<directory>` with your own values."}
{"instruction": "Convert an audio file to MP3", "input": "", "output": "```bash\nffmpeg -i <input_audio> -b:a 192k <output>.mp3\n```\n\nReplace `<input_audio>`, `<output>` with your own values."}
{"instruction": "How do I restore a file from a specific commit from the command line?", "input": "", "output": "```bash\ngit restore --source=<commit> -- <file>\n```\n\nReplace `<commit>`, `<file>` with your own values."}
{"instruction": "Create a winery website", "input": "", "output": "```bash\ngit clone https://github.com/kitkatty/Winery-landing-page-clone.git\ncd Winery-landing-page-clone/dist/\nnpm install live-server\nnpx live-server\n```"}
{"instruction": "Create a new FastAPI app", "input": "", "output": "```bash\ncat > <app_name>.py <<'EOF'\nfrom fastapi import FastAPI\n\napp = FastAPI()\n\n\n@app.get(\"/\")\ndef read_root():\n    return {\"message\": \"Hello from Engli\"}\nEOF\n```\n\nReplace `<app_name>` with your own values."}
{"instruction": "How do I list AWS S3 buckets from the command line?", "input": "", "output": "```bash\naws s3 ls\n```"}
{"instruction": "Start an ngrok tunnel", "input": "", "output": "```bash\nngrok http <port>\n```\n\nReplace `<port>` with your own values."}
{"instruction": "Git commit changes", "input": "", "output": "```bash\ngit commit -m \"<commit_message>\"\n```\n\nReplace `<commit_message>` with your own values."}
{"instruction": "How do I create a Python gitignore file from the command line?", "input": "", "output": "```bash\nprintf '%s\\n' '__pycache__/' '*.pyc' '.env' 'venv/' '.venv/' '*.egg-info/' '.pytest_cache/' > .gitignore\n```"}
{"instruction": "Set environment variable for Flask app", "input": "", "output": "```bash\nexport FLASK_APP=<your_flask_app>.py*\n```\n\nReplace `<your_flask_app>` with your own values."}
{"instruction": "Extract audio from a video", "input": "", "output": "```bash\nffmpeg -i <input> -vn <output>.mp3\n```\n\nReplace `<input>`, `<output>` with your own values."}
{"instruction": "Show the remotes of a repository", "input": "", "output": "```bash\ngit remote -v\n```"}
{"instruction": "Creating a file", "input": "", "output": "```bash\ntouch <file_name>\n```\n\nReplace `<file_name>` with your own values."}
{"instruction": "Sync two folders with rsync", "input": "", "output": "```bash\nrsync -av <source>/ <destination>/\n```\n\nReplace `<source>`, `<destination>` with your own values."}
{"instruction": "Format Go code", "input": "", "output": "```bash\ngofmt -w <path>\n```\n\nReplace `<path>` with your own values."}
{"instruction": "Copy a file to S3", "input": "", "output": "```bash\naws s3 cp <file> s3://<bucket>/\n```\n\nReplace `<file>`, `<bucket>` with your own values."}
{"instruction": "Look up a domain's A record", "input": "", "output": "```bash\ndig +short <domain>\n```\n\nReplace `<domain>` with your own values."}
{"instruction": "Create a new screen and enter environment", "input": "", "output": "```bash\nscreen -dmS <screen_name> bash -c 'cd ./<env_name>/ ; exec sh'\n```\n\nReplace `<screen_name>`, `<env_name>` with your own values."}
{"instruction": "Docker run a container", "input": "", "output": "```bash\ndocker run -p 4000:80 <image_name>\n```\n\nReplace `<image_name>` with your own values."}
{"instruction": "How do I search code recursively with ripgrep from the command line?", "input": "", "output": "```bash\nrg \"<pattern>\" <directory>\n```\n\nReplace `<pattern>`, `<directory>` with your own values."}
{"instruction": "Run job every day at midnight", "input": "", "output": "```bash\ncrontab -e\n0 0 * * * <command>\n```\n\nReplace `<command>` with your own values."}
{"instruction": "enter folder", "input": "", "output": "```bash\necho RUN THIS IN YOUR TERMINAL: \necho cd <folder_name>\n```\n\nReplace `<folder_name>` with your own values."}
{"instruction": "Initialize database", "input": "", "output": "```bash\nflask db init\n```"}
{"instruction": "How do I execute script from the command line?", "input": "", "output": "```bash\n./some_script.sh\n```"}
{"instruction": "Discard changes to a file", "input": "", "output": "```bash\ngit checkout -- <file>\n```\n\nReplace `<file>` with your own values."}
{"instruction": "How do I create a new directory in UNIX/Linux from the command line?", "input": "", "output": "```bash\nmkdir <new_directory>\n```\n\nReplace `<new_directory>` with your own values."}
{"instruction": "Install Jupyter Lab", "input": "", "output": "```bash\npip install jupyterlab\n```"}
{"instruction": "Lint code with ruff", "input": "", "output": "```bash\nruff check <path>\n```\n\nReplace `<path>` with your own values."}
{"instruction": "Installing Git", "input": "", "output": "```bash\nsudo apt-get install git\n```"}
{"instruction": "How do I give me ideas of AI apps to build from the command line?", "input": "", "output": "```bash\necho create an app to have thai food recipes new every day with all lists of ingredients\n```"}
{"instruction": "Create a virtual environment", "input": "", "output": "```bash\npython3 -m venv <env_name>\n```\n\nReplace `<env_name>` with your own values."}
{"instruction": "How do I networking | Interact with raw data from a website from the command line?", "input": "", "output": "```bash\ncurl -s https://<website_url> | grep <some_text>\n```\n\nReplace `<website_url>`, `<some_text>` with your own values."}
{"instruction": "How do I coming out of a directory from the command line?", "input": "", "output": "```bash\ncd ..\n```"}
{"instruction": "Create encrypted password with OpenSSL", "input": "", "output": "```bash\nopenssl passwd -1 <password>\n```\n\nReplace `<password>` with your own values."}
{"instruction": "Create an SSH tunnel to a remote port", "input": "", "output": "```bash\nssh -L <local_port>:localhost:<remote_port> <user>@<host>\n```\n\nReplace `<local_port>`, `<remote_port>`, `<user>`, `<host>` with your own values."}
{"instruction": "How do I create a Vite app from the command line?", "input": "", "output": "```bash\nnpm create vite@latest <app_name>\n```\n\nReplace `<app_name>` with your own values."}
{"instruction": "How do I count words in a file from the command line?", "input": "", "output": "```bash\nwc -w <file>\n```\n\nReplace `<file>` with your own values."}
{"instruction": "How do I download an entire website from the command line?", "input": "", "output": "```bash\nwget --mirror --convert-links --adjust-extension --page-requisites --no-parent <website_url>\n```\n\nReplace `<website_url>` with your own values."}
{"instruction": "How do I transfer a file using SCP from the command line?", "input": "", "output": "```bash\nscp <local_file> <user>@<target>:/<target_directory>/\n```\n\nReplace `<local_file>`, `<user>`, `<target>`, `<target_directory>` with your own values."}
{"instruction": "Edit a file", "input": "", "output": "```bash\nnano some_file\n```"}
{"instruction": "How do I check OS version from the command line?", "input": "", "output": "```bash\ncat /etc/os-release\n```"}
{"instruction": "How do I creating a file from the command line?", "input": "", "output": "```bash\ntouch <file_name>\n```\n\nReplace `<file_name>` with your own values."}
{"instruction": "Open a file or URL with the default app", "input": "", "output": "```bash\nxdg-open <target>\n```\n\nReplace `<target>` with your own values."}
{"instruction": "How do I run job every amount of minute from the command line?", "input": "", "output": "```bash\ncrontab -e\n*/<minute> * * * <command>\n```\n\nReplace `<minute>`, `<command>` with your own values."}
{"instruction": "Install a CLI tool with pipx", "input": "", "output": "```bash\npipx install <tool>\n```\n\nReplace `<tool>` with your own values."}
{"instruction": "Run job every 5 minutes", "input": "", "output": "```bash\ncrontab -e\n*/5 * * * * <command>\n```\n\nReplace `<command>` with your own values."}
{"instruction": "How do I check for outdated npm packages from the command line?", "input": "", "output": "```bash\nnpm outdated\n```"}
{"instruction": "How do I start a Redis server from the command line?", "input": "", "output": "```bash\nredis-server\n```"}
{"instruction": "Fetch the raw HTML content of a webpage", "input": "", "output": "```bash\ncurl <url>\n```\n\nReplace `<url>` with your own values."}
{"instruction": "How do I save installed libaries from the command line?", "input": "", "output": "```bash\npip freeze > requirements.txt\n```"}
{"instruction": "How do I encrypt a file with GPG from the command line?", "input": "", "output": "```bash\ngpg -c <filename>\n```\n\nReplace `<filename>` with your own values."}
{"instruction": "How do I apply a Kubernetes manifest from the command line?", "input": "", "output": "```bash\nkubectl apply -f <file>\n```\n\nReplace `<file>` with your own values."}
{"instruction": "How do I installing Node.js and NPM from the command line?", "input": "", "output": "```bash\nsudo apt install nodejs npm\n```"}
{"instruction": "How do I setting Permissions on a Folder from the command line?", "input": "", "output": "```bash\nsetfacl -m u:<user>:<permissions> <folder>\n```\n\nReplace `<user>`, `<permissions>`, `<folder>` with your own values."}
{"instruction": "Transfer a file using SCP", "input": "", "output": "```bash\nscp <local_file> <user>@<target>:/<target_directory>/\n```\n\nReplace `<local_file>`, `<user>`, `<target>`, `<target_directory>` with your own values."}
{"instruction": "How do I show a QR code for a URL in the terminal from the command line?", "input": "", "output": "```bash\nqrencode -t ANSI \"<url>\"\n```\n\nReplace `<url>` with your own values."}
{"instruction": "Give Specific Privileges to User in PostgreSQL", "input": "", "output": "```bash\nsudo -u postgres psql\nGRANT ALL PRIVILEGES ON DATABASE <dbname> to <username>;\n\\q\n```\n\nReplace `<dbname>`, `<username>` with your own values."}
{"instruction": "Verify a SHA-256 checksum file", "input": "", "output": "```bash\nsha256sum -c <checksums_file>\n```\n\nReplace `<checksums_file>` with your own values."}
{"instruction": "How do I move or rename a file from the command line?", "input": "", "output": "```bash\nmv <source> <destination>\n```\n\nReplace `<source>`, `<destination>` with your own values."}
{"instruction": "Pull from a specific git branch", "input": "", "output": "```bash\ngit pull origin <branchname>\n```\n\nReplace `<branchname>` with your own values."}
{"instruction": "Resize an image with ImageMagick", "input": "", "output": "```bash\nconvert <input> -resize <size> <output>\n```\n\nReplace `<input>`, `<size>`, `<output>` with your own values."}
{"instruction": "List the contents of a tar archive", "input": "", "output": "```bash\ntar -tzf <archive>.tar.gz\n```\n\nReplace `<archive>` with your own values."}
{"instruction": "Install the WebDriver for your Browser (e.g., Chrome)", "input": "", "output": "```bash\n# Must be done manually by downloading the correct driver\n```"}
{"instruction": "How do I SSH into a remote server from the command line?", "input": "", "output": "```bash\nssh <username>@<ip_address>\n```\n\nReplace `<username>`, `<ip_address>` with your own values."}
{"instruction": "How do I attach to a tmux session from the command line?", "input": "", "output": "```bash\ntmux attach -t <name>\n```\n\nReplace `<name>` with your own values."}
{"instruction": "List directory contents in UNIX/Linux", "input": "", "output": "```bash\nls\n```"}
{"instruction": "How do I stash your changes from the command line?", "input": "", "output": "```bash\ngit stash\n```"}
{"instruction": "Launch a python interactive shell with Django", "input": "", "output": "```bash\npython manage.py shell\n```"}
{"instruction": "How do I create a Next.js app from the command line?", "input": "", "output": "```bash\nnpx create-next-app@latest <app_name>\n```\n\nReplace `<app_name>` with your own values."}
{"instruction": "Install Docker Compose on Ubuntu", "input": "", "output": "```bash\nsudo curl -L \"https://github.com/docker/compose/releases/download/1.27.4/docker-compose-$(uname -s)-$(uname -m)\" -o /usr/local/bin/docker-compose &&\nsudo chmod +x /usr/local/bin/docker-compose\n```"}
{"instruction": "Clean up unused Docker resources", "input": "", "output": "```bash\ndocker system prune\n```"}
{"instruction": "How do I show all screens from the command line?", "input": "", "output": "```bash\nscreen -ls\n```"}
{"instruction": "Docker build an image", "input": "", "output": "```bash\ndocker build -t <image_name> .\n```\n\nReplace `<image_name>` with your own values."}
{"instruction": "Create new directory", "input": "", "output": "```bash\nmkdir <directory_name>\n```\n\nReplace `<directory_name>` with your own values."}
{"instruction": "How do I create a branch and switch to it from the command line?", "input": "", "output": "```bash\ngit switch -c <branch>\n```\n\nReplace `<branch>` with your own values."}
{"instruction": "Networking | Interact with raw data from a website", "input": "", "output": "```bash\ncurl -s https://<website_url> | grep <some_text>\n```\n\nReplace `<website_url>`, `<some_text>` with your own values."}
{"instruction": "Run a command on a remote machine using ssh", "input": "", "output": "```bash\nssh <username>@<hostname> <command>\n```\n\nReplace `<username>`, `<hostname>`, `<command>` with your own values."}
{"instruction": "Start MySQL server", "input": "", "output": "```bash\nsudo systemctl start mysql\n```"}
{"instruction": "How do I lint with ESLint from the command line?", "input": "", "output": "```bash\nnpx eslint <path>\n```\n\nReplace `<path>` with your own values."}
{"instruction": "How do I selenium submit a form from the command line?", "input": "", "output": "```bash\nelement.submit()\n```"}
{"instruction": "Add user to sudo group in Linux", "input": "", "output": "```bash\nsudo usermod -aG sudo <username>\n```\n\nReplace `<username>` with your own values."}
{"instruction": "Create a Vite app", "input": "", "output": "```bash\nnpm create vite@latest <app_name>\n```\n\nReplace `<app_name>` with your own values."}
{"instruction": "Run a command in a specific Docker container", "input": "", "output": "```bash\ndocker exec -it <containername> <command>\n```\n\nReplace `<containername>`, `<command>` with your own values."}
{"instruction": "Move or rename a file", "input": "", "output": "```bash\nmv <source> <destination>\n```\n\nReplace `<source>`, `<destination>` with your own values."}
{"instruction": "Watch a command refresh every two seconds", "input": "", "output": "```bash\nwatch -n 2 <command>\n```\n\nReplace `<command>` with your own values."}
{"instruction": "How do I discard changes to a file from the command line?", "input": "", "output": "```bash\ngit checkout -- <file>\n```\n\nReplace `<file>` with your own values."}
{"instruction": "How do I copy files to a remote server from the command line?", "input": "", "output": "```bash\nscp <file_path> <username>@<ip_address>:<destination_path>\n```\n\nReplace `<file_path>`, `<username>`, `<ip_address>`, `<destination_path>` with your own values."}
{"instruction": "How do I check disk space on Unix/Linux from the command line?", "input": "", "output": "```bash\ndf -h\n```"}
{"instruction": "How do I create a pull request with the GitHub CLI from the command line?", "input": "", "output": "```bash\ngh pr create --title \"<title>\" --body \"<body>\"\n```\n\nReplace `<title>`, `<body>` with your own values."}
{"instruction": "How do I verify a SHA-256 checksum file from the command line?", "input": "", "output": "```bash\nsha256sum -c <checksums_file>\n```\n\nReplace `<checksums_file>` with your own values."}
{"instruction": "Show the largest files in a directory", "input": "", "output": "```bash\ndu -ah <directory> | sort -rh | head -20\n```\n\nReplace `<directory>` with your own values."}
{"instruction": "How do I run a one-off Python expression from the command line?", "input": "", "output": "```bash\npython3 -c \"<expression>\"\n```\n\nReplace `<expression>` with your own values."}
{"instruction": "How do I run job on specific minute (5 past every hour) from the command line?", "input": "", "output": "```bash\ncrontab -e\n5 * * * * <command>\n```\n\nReplace `<command>` with your own values."}
{"instruction": "Install package with npm", "input": "", "output": "```bash\nnpm install <package_name>\n```\n\nReplace `<package_name>` with your own values."}
{"instruction": "Install Selenium for browser automation", "input": "", "output": "```bash\npip install selenium\n```"}
{"instruction": "Show Docker disk usage", "input": "", "output": "```bash\ndocker system df\n```"}
{"instruction": "How do I installing Docker from the command line?", "input": "", "output": "```bash\nsudo apt-get install apt-transport-https ca-certificates curl software-properties-common\ncurl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -\nsudo add-apt-repository \"deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable\"\nsudo apt-get update\nsudo apt-get install docker-ce\n```"}
{"instruction": "How do I serve the current folder with PHP from the command line?", "input": "", "output": "```bash\nphp -S localhost:<port>\n```\n\nReplace `<port>` with your own values."}
{"instruction": "How do I create a git worktree for a branch from the command line?", "input": "", "output": "```bash\ngit worktree add ../<folder_name> <branch>\n```\n\nReplace `<folder_name>`, `<branch>` with your own values."}
{"instruction": "How do I show Docker disk usage from the command line?", "input": "", "output": "```bash\ndocker system df\n```"}
{"instruction": "How do I create a bash script to run a python app from the command line?", "input": "", "output": "```bash\ncat > <script_name>.sh <<'EOF'\npython3 <app_name>.py\nEOF\n```\n\nReplace `<script_name>`, `<app_name>` with your own values."}
{"instruction": "How do I follow systemd journal logs for a service from the command line?", "input": "", "output": "```bash\njournalctl -u <service> -f\n```\n\nReplace `<service>` with your own values."}
{"instruction": "How do I make script executable from the command line?", "input": "", "output": "```bash\nchmod +x some_script.sh\n```"}
{"instruction": "Enter a screen", "input": "", "output": "```bash\nscreen -r <screen_name>\n```\n\nReplace `<screen_name>` with your own values."}
{"instruction": "How do I install a package with Homebrew from the command line?", "input": "", "output": "```bash\nbrew install <package>\n```\n\nReplace `<package>` with your own values."}
{"instruction": "How do I docker Compose build and run services from the command line?", "input": "", "output": "```bash\ndocker-compose up --build -d\n```"}
{"instruction": "Show files changed between two branches", "input": "", "output": "```bash\ngit diff --name-only <branch_a>..<branch_b>\n```\n\nReplace `<branch_a>`, `<branch_b>` with your own values."}
{"instruction": "Open a file with vim", "input": "", "output": "```bash\nvim <filename>\n```\n\nReplace `<filename>` with your own values."}
{"instruction": "Run the scraping app", "input": "", "output": "```bash\npython3 <app_name>.py\n```\n\nReplace `<app_name>` with your own values."}
{"instruction": "Find which commit introduced a string", "input": "", "output": "```bash\ngit log -S \"<text>\" --oneline\n```\n\nReplace `<text>` with your own values."}
{"instruction": "How do I lint code with ruff from the command line?", "input": "", "output": "```bash\nruff check <path>\n```\n\nReplace `<path>` with your own values."}
{"instruction": "How do I create a new screen and enter environment from the command line?", "input": "", "output": "```bash\nscreen -dmS <screen_name> bash -c 'cd ./<env_name>/ ; exec sh'\n```\n\nReplace `<screen_name>`, `<env_name>` with your own values."}
{"instruction": "How do I install python from the command line?", "input": "", "output": "```bash\nsudo apt-get install software-properties-common\nsudo add-apt-repository ppa:deadsnakes/ppa\nsudo apt-get update\nsudo apt-get install python3.8\n```"}
{"instruction": "Terraform initiate a working directory", "input": "", "output": "```bash\nterraform init\n```"}
{"instruction": "Removing a file", "input": "", "output": "```bash\nrm <file_name>\n```\n\nReplace `<file_name>` with your own values."}
{"instruction": "How do I create with engli scrapping app to track data and store in a database from the command line?", "input": "", "output": "```bash\ncd engli/tools/\nsh scrapingapp.sh\n```"}
{"instruction": "How do I copy a file to S3 from the command line?", "input": "", "output": "```bash\naws s3 cp <file> s3://<bucket>/\n```\n\nReplace `<file>`, `<bucket>` with your own values."}
{"instruction": "How do I run job every minute from the command line?", "input": "", "output": "```bash\ncrontab -e\n* * * * * <command>\n```\n\nReplace `<command>` with your own values."}
{"instruction": "Show a Docker container's environment variables", "input": "", "output": "```bash\ndocker exec <container> env\n```\n\nReplace `<container>` with your own values."}
{"instruction": "How do I install Node.js and npm on Ubuntu from the command line?", "input": "", "output": "```bash\nsudo apt install -y nodejs npm\n```"}
{"instruction": "How do I run job every day in a specific month (here every day at 2:30 PM in January) from the command line?", "input": "", "output": "```bash\ncrontab -e\n30 14 * JAN * <command>\n```\n\nReplace `<command>` with your own values."}
{"instruction": "How do I writing and reading to/from a file using script from the command line?", "input": "", "output": "```bash\necho \"<text>\" > <filename>\ncat <filename>\n```\n\nReplace `<text>`, `<filename>` with your own values."}
{"instruction": "Install project requirements", "input": "", "output": "```bash\npip3 install -r requirements.txt\n```"}
{"instruction": "Create a blank MySQL database and user", "input": "", "output": "```bash\nCREATE DATABASE <database>; \nCREATE USER '<user>'@'localhost' IDENTIFIED BY '<password>';\nGRANT ALL PRIVILEGES ON <database>.* TO '<user>'@'localhost'; \nFLUSH PRIVILEGES;\n```\n\nReplace `<database>`, `<user>`, `<password>` with your own values."}
{"instruction": "Run flask shell for interactive shell context", "input": "", "output": "```bash\nflask shell\n```"}
{"instruction": "How do I install BeautifulSoup for parsing HTML from the command line?", "input": "", "output": "```bash\npip install beautifulsoup4\n```"}
{"instruction": "How do I delete (clear) all crontab jobs from the command line?", "input": "", "output": "```bash\ncrontab -r\n```"}
{"instruction": "How do I run the scraping app from the command line?", "input": "", "output": "```bash\npython3 <app_name>.py\n```\n\nReplace `<app_name>` with your own values."}
{"instruction": "How do I changing ownership of a file from the command line?", "input": "", "output": "```bash\nchown <username> <file>\n```\n\nReplace `<username>`, `<file>` with your own values."}
{"instruction": "How do I add user to Docker group from the command line?", "input": "", "output": "```bash\nsudo usermod -aG docker <username>\n```\n\nReplace `<username>` with your own values."}
{"instruction": "How do I convert a notebook to a script from the command line?", "input": "", "output": "```bash\njupyter nbconvert --to script <notebook>\n```\n\nReplace `<notebook>` with your own values."}
{"instruction": "Run a Scrapy Spider", "input": "", "output": "```bash\nscrapy crawl <spider_name>\n```\n\nReplace `<spider_name>` with your own values."}
{"instruction": "create scraping app to track data and store in a database", "input": "", "output": "```bash\ncat > <app_name>.py <<'EOF'\nfrom flask import Flask, jsonify, request\nfrom bs4 import BeautifulSoup\nimport requests\nimport sqlite3\nimport pandas as pd\nfrom datetime import datetime\n\napp = Flask(__name__)\n\n@app.route('/api/scrape', methods=['GET'])\ndef get_scraped_data():\n    word = request.args.get('word')  # Getting word from the request\n    url = \"https://www.<website>\"  # Url to scrape\n    content = fetch_data(url, word) \n\n    # Check if some content was found\n    if content: \n        # Save scraped data to SQLite\n        conn = sqlite3.connect('<dbname>.db')\n        c = conn.cursor()\n                # Create table if not exists\n        c.execute('CREATE TABLE IF NOT EXISTS ScrapedData (content TEXT, timestamp DATETIME)')\n        conn.commit()\n        c.execute(\"INSERT INTO ScrapedData(content, timestamp) VALUES (?, ?)\", (content, datetime.now()))\n\n        # Save changes and close connection\n        conn.commit()\n        conn.close()\n        \n        # converting data into csv\n        pd.DataFrame([content]).to_csv(\"<csvname>.csv\", index=False)\n\n        return jsonify({\"message\": \"Data scraped and stored successfully\", \"content\": content}), 200\n    else:\n        return jsonify({\"message\": \"Data not found\"}), 404\n\ndef fetch_data(url, word):\n\n    response = requests.get(url)\n    soup = BeautifulSoup(response.text, 'html.parser')\n    text = soup.get_text()\n\n    # Find the word\n    try:\n        index = text.index(word)\n\n        # Return all text after the word\n        return text[index + len(word):]\n        \n    except ValueError: \n        return None  \ndef create_database():\n    # Connect to SQLite database\n    conn = sqlite3.connect('scraped_data.db')\n    c = conn.cursor()\n\n    # Create table\n    c.execute(\"CREATE TABLE IF NOT EXISTS ScrapedData (content TEXT, timestamp DATETIME)\")\n\n    # Save changes and close connection\n    conn.commit()\n    conn.close()\n\nif __name__ == \"__main__\":\n    create_database()  # create database and table before running the app\n    app.run(debug=True)\nEOF\n```\n\nReplace `<app_name>`, `<website>`, `<dbname>`, `<csvname>` with your own values."}
{"instruction": "Show a QR code for a URL in the terminal", "input": "", "output": "```bash\nqrencode -t ANSI \"<url>\"\n```\n\nReplace `<url>` with your own values."}
{"instruction": "How do I show the weather in the terminal from the command line?", "input": "", "output": "```bash\ncurl wttr.in/<city>\n```\n\nReplace `<city>` with your own values."}
{"instruction": "How do I base64-decode a string from the command line?", "input": "", "output": "```bash\necho \"<text>\" | base64 -d\n```\n\nReplace `<text>` with your own values."}
{"instruction": "Run a Docker image with a specific port mapping", "input": "", "output": "```bash\ndocker run -d -p <hostport>:<containerport> <imagename>\n```\n\nReplace `<hostport>`, `<containerport>`, `<imagename>` with your own values."}
{"instruction": "How do I node.js run a script from the command line?", "input": "", "output": "```bash\nnode <script_name>.js\n```\n\nReplace `<script_name>` with your own values."}
{"instruction": "Create a new screen", "input": "", "output": "```bash\nscreen -dmS  <screename>\n```\n\nReplace `<screename>` with your own values."}
{"instruction": "Change directory", "input": "", "output": "```bash\ncd some_directory\n```"}
{"instruction": "How do I run Flask Development Server with debug mode from the command line?", "input": "", "output": "```bash\nexport FLASK_ENV=development\nflask run\n```"}
{"instruction": "How do I copy a file out of a Docker container from the command line?", "input": "", "output": "```bash\ndocker cp <container>:<path_in_container> <local_path>\n```\n\nReplace `<container>`, `<path_in_container>`, `<local_path>` with your own values."}
{"instruction": "Connect to a PostgreSQL database", "input": "", "output": "```bash\npsql -h localhost -U postgres -d <database_name>\n```\n\nReplace `<database_name>` with your own values."}
{"instruction": "How do I check out a pull request locally from the command line?", "input": "", "output": "```bash\ngh pr checkout <number>\n```\n\nReplace `<number>` with your own values."}
{"instruction": "How do I reading from a file from the command line?", "input": "", "output": "```bash\ncat <file>\n```\n\nReplace `<file>` with your own values."}
{"instruction": "How do I enter a screen from the command line?", "input": "", "output": "```bash\nscreen -r <screen_name>\n```\n\nReplace `<screen_name>` with your own values."}
{"instruction": "How do I find in files recursively from the command line?", "input": "", "output": "```bash\ngrep -r <search_string> <directory>\n```\n\nReplace `<search_string>`, `<directory>` with your own values."}
{"instruction": "Run job every day in a specific month (here every day at 2:30 PM in January)", "input": "", "output": "```bash\ncrontab -e\n30 14 * JAN * <command>\n```\n\nReplace `<command>` with your own values."}
{"instruction": "How do I create a new folder from the command line?", "input": "", "output": "```bash\nmkdir <new_directory>\n```\n\nReplace `<new_directory>` with your own values."}
{"instruction": "How do I pull the current git branch from the command line?", "input": "", "output": "```bash\ngit pull origin \"$(git rev-parse --abbrev-ref HEAD)\"\n```"}
{"instruction": "How do I C/C++ run a compiled program from the command line?", "input": "", "output": "```bash\n./<program_name>\n```\n\nReplace `<program_name>` with your own values."}
{"instruction": "How do I benchmark a command with hyperfine from the command line?", "input": "", "output": "```bash\nhyperfine \"<command>\"\n```\n\nReplace `<command>` with your own values."}
{"instruction": "Copy a file out of a Docker container", "input": "", "output": "```bash\ndocker cp <container>:<path_in_container> <local_path>\n```\n\nReplace `<container>`, `<path_in_container>`, `<local_path>` with your own values."}
{"instruction": "How do I log in to Docker Hub from the command line?", "input": "", "output": "```bash\ndocker login --username=<username> --password=<password>\n```\n\nReplace `<username>`, `<password>` with your own values."}
{"instruction": "How do I show who changed each line of a file from the command line?", "input": "", "output": "```bash\ngit blame <file>\n```\n\nReplace `<file>` with your own values."}
{"instruction": "Launch JupyterLab", "input": "", "output": "```bash\njupyter lab\n```"}
{"instruction": "How do I get a Kubernetes pod's logs from the command line?", "input": "", "output": "```bash\nkubectl logs <pod>\n```\n\nReplace `<pod>` with your own values."}
{"instruction": "How do I selenium find an element by id from the command line?", "input": "", "output": "```bash\ndriver.find_element_by_id('<id>')\n```\n\nReplace `<id>` with your own values."}
{"instruction": "Compress a directory excluding some directories", "input": "", "output": "```bash\ntar -cvzf <archive_name>.tar.gz* --exclude=<directory_to_exclude> <directory_to_compress>\n```\n\nReplace `<archive_name>`, `<directory_to_exclude>`, `<directory_to_compress>` with your own values."}
{"instruction": "How do I show a Docker container's environment variables from the command line?", "input": "", "output": "```bash\ndocker exec <container> env\n```\n\nReplace `<container>` with your own values."}
{"instruction": "Download and save with a specific filename", "input": "", "output": "```bash\nwget -O <filename> <url>\n```\n\nReplace `<filename>`, `<url>` with your own values."}
{"instruction": "selenium submit a form", "input": "", "output": "```bash\nelement.submit()\n```"}
{"instruction": "How do I replace text in a file from the command line?", "input": "", "output": "```bash\nsed -i 's/<oldtext>/<newtext>/g' <filename>\n```\n\nReplace `<oldtext>`, `<newtext>`, `<filename>` with your own values."}
{"instruction": "Zip a folder", "input": "", "output": "```bash\nzip -r <directory_name_destination>.zip <directory_name>\n```\n\nReplace `<directory_name_destination>`, `<directory_name>` with your own values."}
{"instruction": "How do I create a Python virtual environment with a specific name from the command line?", "input": "", "output": "```bash\npython3 -m venv <envname>\n```\n\nReplace `<envname>` with your own values."}
{"instruction": "Create a user in Linux", "input": "", "output": "```bash\nsudo adduser <username>\n```\n\nReplace `<username>` with your own values."}
{"instruction": "selenium click on an element", "input": "", "output": "```bash\nelement.click()\n```"}
{"instruction": "Run Flask Development Server with debug mode", "input": "", "output": "```bash\nexport FLASK_ENV=development\nflask run\n```"}
{"instruction": "How do I create a winery website from the command line?", "input": "", "output": "```bash\ngit clone https://github.com/kitkatty/Winery-landing-page-clone.git\ncd Winery-landing-page-clone/dist/\nnpm install live-server\nnpx live-server\n```"}
{"instruction": "Check for outdated npm packages", "input": "", "output": "```bash\nnpm outdated\n```"}
{"instruction": "How do I push all repo origin main from the command line?", "input": "", "output": "```bash\ngit add . \ngit commit -m \"autocommit\"\ngit push origin main\n```"}
{"instruction": "How do I create a user in Linux from the command line?", "input": "", "output": "```bash\nsudo adduser <username>\n```\n\nReplace `<username>` with your own values."}
{"instruction": "How do I run job at a specific time (2:30 PM) from the command line?", "input": "", "output": "```bash\ncrontab -e\n30 14 * * * <command>\n```\n\nReplace `<command>` with your own values."}
{"instruction": "Log in to Docker Hub", "input": "", "output": "```bash\ndocker login --username=<username> --password=<password>\n```\n\nReplace `<username>`, `<password>` with your own values."}
{"instruction": "Extract a .tar.gz file", "input": "", "output": "```bash\ntar -xzf <file>.tar.gz\n```\n\nReplace `<file>` with your own values."}
{"instruction": "How do I save the HTML content of a webpage to a file from the command line?", "input": "", "output": "```bash\ncurl <url> -o <filename>\n```\n\nReplace `<url>`, `<filename>` with your own values."}
{"instruction": "How do I cherry-pick a commit from the command line?", "input": "", "output": "```bash\ngit cherry-pick <commit>\n```\n\nReplace `<commit>` with your own values."}
{"instruction": "Check IP address of the machine", "input": "", "output": "```bash\nip addr show\n```"}
{"instruction": "Open a SQLite database shell", "input": "", "output": "```bash\nsqlite3 <database_file>\n```\n\nReplace `<database_file>` with your own values."}
{"instruction": "How do I install a package on Ubuntu from the command line?", "input": "", "output": "```bash\nsudo apt install <package_name>\n```\n\nReplace `<package_name>` with your own values."}
{"instruction": "Batch convert PNG images to WebP", "input": "", "output": "```bash\nfor f in *.png; do cwebp \"$f\" -o \"${f%.png}.webp\"; done\n```"}
{"instruction": "How do I show kernel version from the command line?", "input": "", "output": "```bash\nuname -r\n```"}
{"instruction": "Show Kubernetes events sorted by time", "input": "", "output": "```bash\nkubectl get events --sort-by=.metadata.creationTimestamp\n```"}
{"instruction": "How do I build a Docker image from Dockerfile from the command line?", "input": "", "output": "```bash\ndocker build -t <imagename>:<tag> .\n```\n\nReplace `<imagename>`, `<tag>` with your own values."}
{"instruction": "Create New PostgreSQL Database and User", "input": "", "output": "```bash\nsudo -u postgres createuser <username>\nsudo -u postgres createdb --owner=<username> <dbname>\n```\n\nReplace `<username>`, `<dbname>` with your own values."}
{"instruction": "How do I open a file or URL with the default app from the command line?", "input": "", "output": "```bash\nxdg-open <target>\n```\n\nReplace `<target>` with your own values."}
{"instruction": "How do I reload your shell config from the command line?", "input": "", "output": "```bash\nsource ~/.bashrc\n```"}
{"instruction": "delete .git", "input": "", "output": "```bash\nrm -fr .git\n```"}
{"instruction": "Trace the network route to a host", "input": "", "output": "```bash\ntraceroute <host>\n```\n\nReplace `<host>` with your own values."}
{"instruction": "Audit npm dependencies", "input": "", "output": "```bash\nnpm audit\n```"}
{"instruction": "Create a Docker Swarm", "input": "", "output": "```bash\ndocker swarm init --advertise-addr <IP_address>\n```\n\nReplace `<IP_address>` with your own values."}
{"instruction": "How do I run an npm script from the command line?", "input": "", "output": "```bash\nnpm run <script>\n```\n\nReplace `<script>` with your own values."}
{"instruction": "Run job every Monday at a specific time (here every Monday at 2:30 PM)", "input": "", "output": "```bash\ncrontab -e\n30 14 * * MON <command>\n```\n\nReplace `<command>` with your own values."}
{"instruction": "Install a package on Ubuntu", "input": "", "output": "```bash\nsudo apt install <package_name>\n```\n\nReplace `<package_name>` with your own values."}
{"instruction": "show public ssh key", "input": "", "output": "```bash\ncat ~/.ssh/id_rsa.pub\n```"}
{"instruction": "Changing file permissions", "input": "", "output": "```bash\nchmod <permission_numbers> <file>\n```\n\nReplace `<permission_numbers>`, `<file>` with your own values."}
{"instruction": "Create a hard link", "input": "", "output": "```bash\nln <source_file> <link>\n```\n\nReplace `<source_file>`, `<link>` with your own values."}
{"instruction": "Run tests with pytest", "input": "", "output": "```bash\npytest\n```"}
{"instruction": "Check network statistics", "input": "", "output": "```bash\nnetstat -s\n```"}
{"instruction": "Create a new RabbitMQ user", "input": "", "output": "```bash\nrabbitmqctl add_user <username> <password>\nrabbitmqctl set_user_tags <username> administrator\nrabbitmqctl set_permissions -p / <username> \".*\" \".*\" \".*\"\n```\n\nReplace `<username>`, `<password>` with your own values."}
{"instruction": "Switch to different Git branch", "input": "", "output": "```bash\ngit checkout <branchname>\n```\n\nReplace `<branchname>` with your own values."}
{"instruction": "How do I java run a program from the command line?", "input": "", "output": "```bash\njava <program_name>\n```\n\nReplace `<program_name>` with your own values."}
{"instruction": "How do I tear down a docker-compose stack from the command line?", "input": "", "output": "```bash\ndocker-compose down\n```"}
{"instruction": "How do I list all services using systemctl from the command line?", "input": "", "output": "```bash\nsystemctl list-units --type=service\n```"}
{"instruction": "Stash your changes", "input": "", "output": "```bash\ngit stash\n```"}
{"instruction": "Git add files to staging", "input": "", "output": "```bash\ngit add .\n```"}
{"instruction": "Kill a process by its PID", "input": "", "output": "```bash\nkill -9 <PID>\n```\n\nReplace `<PID>` with your own values."}
{"instruction": "Start a PostgreSQL server", "input": "", "output": "```bash\npg_ctl -D /usr/local/var/postgres start\n```"}
{"instruction": "How do I find files matching a pattern from the command line?", "input": "", "output": "```bash\nfind . -name \"<pattern>\"\n```\n\nReplace `<pattern>` with your own values."}
{"instruction": "List open issues with the GitHub CLI", "input": "", "output": "```bash\ngh issue list\n```"}
{"instruction": "How do I terraform initiate a working directory from the command line?", "input": "", "output": "```bash\nterraform init\n```"}
{"instruction": "Push an image to Docker Hub", "input": "", "output": "```bash\ndocker push <username>/'<imagename>\n```\n\nReplace `<username>`, `<imagename>` with your own values."}
{"instruction": "How do I open a file with vim from the command line?", "input": "", "output": "```bash\nvim <filename>\n```\n\nReplace `<filename>` with your own values."}
{"instruction": "How do I monitor a file in real time from the command line?", "input": "", "output": "```bash\ntail -f <file>\n```\n\nReplace `<file>` with your own values."}
{"instruction": "How do I create a weather web app from the command line?", "input": "", "output": "```bash\ngit clone https://github.com/Leopoldov95/Weather-Modern.git\ncd Weather-Modern/\nnpm install live-server\nnpx live-server\n```"}
{"instruction": "How do I show unique sorted lines of a file from the command line?", "input": "", "output": "```bash\nsort <file> | uniq\n```\n\nReplace `<file>` with your own values."}
{"instruction": "How do I tail the last lines of a file from the command line?", "input": "", "output": "```bash\ntail -n <lines> <file>\n```\n\nReplace `<lines>`, `<file>` with your own values."}
{"instruction": "Lint with ESLint", "input": "", "output": "```bash\nnpx eslint <path>\n```\n\nReplace `<path>` with your own values."}
{"instruction": "Install specific python package in active environment", "input": "", "output": "```bash\npip install <packagename>\n```\n\nReplace `<packagename>` with your own values."}
{"instruction": "Setup MySQL root user and password", "input": "", "output": "```bash\nmysqladmin -u root password <newpassword>\nmysqladmin -h localhost -u root -p <newpassword>\n```\n\nReplace `<newpassword>` with your own values."}
{"instruction": "How do I git push changes to repository from the command line?", "input": "", "output": "```bash\ngit push origin master\n```"}
{"instruction": "Format with Prettier", "input": "", "output": "```bash\nnpx prettier --write <path>\n```\n\nReplace `<path>` with your own values."}
{"instruction": "Run a one-off Python expression", "input": "", "output": "```bash\npython3 -c \"<expression>\"\n```\n\nReplace `<expression>` with your own values."}
{"instruction": "Check Python Version", "input": "", "output": "```bash\npython3 --version\n```"}
{"instruction": "Run pytest with coverage", "input": "", "output": "```bash\npytest --cov=<package>\n```\n\nReplace `<package>` with your own values."}
{"instruction": "Run Python Script", "input": "", "output": "```bash\npython3 some_script.py\n```"}
{"instruction": "Check disk space on Unix/Linux", "input": "", "output": "```bash\ndf -h\n```"}
{"instruction": "How do I base64-encode a string from the command line?", "input": "", "output": "```bash\necho -n \"<text>\" | base64\n```\n\nReplace `<text>` with your own values."}
{"instruction": "How do I build a Rust project in release mode from the command line?", "input": "", "output": "```bash\ncargo build --release\n```"}
{"instruction": "Enter a virtual environement", "input": "", "output": "```bash\necho RUN THIS IN YOUR TERMINAL:\necho source <script_name>.sh\n```\n\nReplace `<script_name>` with your own values."}
{"instruction": "How do I make a directory and enter it from the command line?", "input": "", "output": "```bash\nmkdir -p <directory> && cd <directory>\n```\n\nReplace `<directory>` with your own values."}
{"instruction": "Terraform validate the configuration files", "input": "", "output": "```bash\nterraform validate\n```"}
{"instruction": "Open a shell inside a Docker container", "input": "", "output": "```bash\ndocker exec -it <container> sh\n```\n\nReplace `<container>` with your own values."}
{"instruction": "How do I list all environment variables from the command line?", "input": "", "output": "```bash\nprintenv\n```"}
{"instruction": "How do I django migrate database from the command line?", "input": "", "output": "```bash\npython manage.py migrate\n```"}
{"instruction": "How do I list open issues with the GitHub CLI from the command line?", "input": "", "output": "```bash\ngh issue list\n```"}
{"instruction": "How do I time a shell command from the command line?", "input": "", "output": "```bash\ntime <command>\n```\n\nReplace `<command>` with your own values."}
{"instruction": "How do I create a Docker Swarm from the command line?", "input": "", "output": "```bash\ndocker swarm init --advertise-addr <IP_address>\n```\n\nReplace `<IP_address>` with your own values."}
{"instruction": "push all repo", "input": "", "output": "```bash\ngit add . \ngit commit -m \"autocommit\"\ngit push <source> <destination>\n```\n\nReplace `<source>`, `<destination>` with your own values."}
{"instruction": "How do I run a specific pytest test by name from the command line?", "input": "", "output": "```bash\npytest -k \"<expression>\"\n```\n\nReplace `<expression>` with your own values."}
{"instruction": "Run a Docker container and mount a volume", "input": "", "output": "```bash\ndocker run -d -v <hostdirectory>:<containerdirectory> <imagename>\n```\n\nReplace `<hostdirectory>`, `<containerdirectory>`, `<imagename>` with your own values."}
{"instruction": "How do I extract audio from a video from the command line?", "input": "", "output": "```bash\nffmpeg -i <input> -vn <output>.mp3\n```\n\nReplace `<input>`, `<output>` with your own values."}
{"instruction": "Create a Python gitignore file", "input": "", "output": "```bash\nprintf '%s\\n' '__pycache__/' '*.pyc' '.env' 'venv/' '.venv/' '*.egg-info/' '.pytest_cache/' > .gitignore\n```"}
{"instruction": "How do I run job every 5 minutes from the command line?", "input": "", "output": "```bash\ncrontab -e\n*/5 * * * * <command>\n```\n\nReplace `<command>` with your own values."}
{"instruction": "Scrapy crawl a spider", "input": "", "output": "```bash\nscrapy crawl <spider_name>\n```\n\nReplace `<spider_name>` with your own values."}
{"instruction": "Switch the kubectl context", "input": "", "output": "```bash\nkubectl config use-context <context>\n```\n\nReplace `<context>` with your own values."}
{"instruction": "How do I run a command in a specific Docker container from the command line?", "input": "", "output": "```bash\ndocker exec -it <containername> <command>\n```\n\nReplace `<containername>`, `<command>` with your own values."}
{"instruction": "Check out a pull request locally", "input": "", "output": "```bash\ngh pr checkout <number>\n```\n\nReplace `<number>` with your own values."}
{"instruction": "How do I connect to a PostgreSQL database from the command line?", "input": "", "output": "```bash\npsql -h localhost -U postgres -d <database_name>\n```\n\nReplace `<database_name>` with your own values."}
{"instruction": "Convert a document with pandoc", "input": "", "output": "```bash\npandoc <input> -o <output>\n```\n\nReplace `<input>`, `<output>` with your own values."}
{"instruction": "How do I list tmux sessions from the command line?", "input": "", "output": "```bash\ntmux ls\n```"}
{"instruction": "Run job at a specific time (2:30 PM)", "input": "", "output": "```bash\ncrontab -e\n30 14 * * * <command>\n```\n\nReplace `<command>` with your own values."}
{"instruction": "Show open files for a process", "input": "", "output": "```bash\nlsof -p <pid>\n```\n\nReplace `<pid>` with your own values."}
{"instruction": "Start a service", "input": "", "output": "```bash\nsudo systemctl start <service_name>\n```\n\nReplace `<service_name>` with your own values."}
{"instruction": "How do I watch a command refresh every two seconds from the command line?", "input": "", "output": "```bash\nwatch -n 2 <command>\n```\n\nReplace `<command>` with your own values."}
{"instruction": "Pretty-print a CSV in the terminal", "input": "", "output": "```bash\ncolumn -s, -t < <file>.csv | less -S\n```\n\nReplace `<file>` with your own values."}
{"instruction": "Show system uptime", "input": "", "output": "```bash\nuptime\n```"}
{"instruction": "How do I git add files to staging from the command line?", "input": "", "output": "```bash\ngit add .\n```"}
{"instruction": "How do I moving into a directory from the command line?", "input": "", "output": "```bash\ncd <directory>\n```\n\nReplace `<directory>` with your own values."}
{"instruction": "Add user to Docker group", "input": "", "output": "```bash\nsudo usermod -aG docker <username>\n```\n\nReplace `<username>` with your own values."}
{"instruction": "C/C++ compile a program using gcc", "input": "", "output": "```bash\ngcc -o <program_name> <program_name>.c\n```\n\nReplace `<program_name>` with your own values."}
{"instruction": "Run a Python script in the background", "input": "", "output": "```bash\nnohup python <script>.py* &\n```\n\nReplace `<script>` with your own values."}
{"instruction": "Print the working directory", "input": "", "output": "```bash\npwd\n```"}
{"instruction": "Convert a video to a GIF", "input": "", "output": "```bash\nffmpeg -i <input_video> -vf \"fps=12,scale=480:-1\" <output>.gif\n```\n\nReplace `<input_video>`, `<output>` with your own values."}
{"instruction": "How do I show your current username from the command line?", "input": "", "output": "```bash\nwhoami\n```"}
{"instruction": "How do I check for running process from the command line?", "input": "", "output": "```bash\nps aux | grep <process_name>\n```\n\nReplace `<process_name>` with your own values."}
{"instruction": "Show all screens", "input": "", "output": "```bash\nscreen -ls\n```"}
{"instruction": "Limit download speed with wget", "input": "", "output": "```bash\nwget --limit-rate=<kilobytes_per_second>k <url>\n```\n\nReplace `<kilobytes_per_second>`, `<url>` with your own values."}
{"instruction": "Base64-decode a string", "input": "", "output": "```bash\necho \"<text>\" | base64 -d\n```\n\nReplace `<text>` with your own values."}
{"instruction": "Look up a domain's MX records", "input": "", "output": "```bash\ndig +short MX <domain>\n```\n\nReplace `<domain>` with your own values."}
{"instruction": "How do I run Flask on Specific Port from the command line?", "input": "", "output": "```bash\nflask run --host=0.0.0.0 --port=<port_number>*\n```\n\nReplace `<port_number>` with your own values."}
{"instruction": "How do I change firewall rules (UFW) from the command line?", "input": "", "output": "```bash\nsudo ufw allow <portnumber>\n```\n\nReplace `<portnumber>` with your own values."}
{"instruction": "How do I look up a domain's A record from the command line?", "input": "", "output": "```bash\ndig +short <domain>\n```\n\nReplace `<domain>` with your own values."}
{"instruction": "How do I rebase onto the main branch from the command line?", "input": "", "output": "```bash\ngit rebase main\n```"}
{"instruction": "How do I run Flask Development Server from the command line?", "input": "", "output": "```bash\nflask run\n```"}
{"instruction": "Run Flask Development Server", "input": "", "output": "```bash\nflask run\n```"}
{"instruction": "How do I pull Docker image from the command line?", "input": "", "output": "```bash\ndocker pull <image_name>\n```\n\nReplace `<image_name>` with your own values."}
{"instruction": "Make directory", "input": "", "output": "```bash\nmkdir some_directory\n```"}
{"instruction": "Run a FastAPI app with uvicorn", "input": "", "output": "```bash\nuvicorn <app_name>:app --reload --port <port>\n```\n\nReplace `<app_name>`, `<port>` with your own values."}
{"instruction": "Scan a host's open ports with nmap", "input": "", "output": "```bash\nnmap <host>\n```\n\nReplace `<host>` with your own values."}
{"instruction": "Start a new Scrapy project", "input": "", "output": "```bash\nscrapy startproject <project_name>\n```\n\nReplace `<project_name>` with your own values."}
{"instruction": "Create a new user on Unix/Linux", "input": "", "output": "```bash\nadduser <username>\n```\n\nReplace `<username>` with your own values."}
{"instruction": "How do I install complex package such as OpenCV from the command line?", "input": "", "output": "```bash\npip install opencv-python-headless\n```"}
{"instruction": "List all services using systemctl", "input": "", "output": "```bash\nsystemctl list-units --type=service\n```"}
{"instruction": "Find files larger than a size", "input": "", "output": "```bash\nfind <directory> -type f -size +<size>\n```\n\nReplace `<directory>`, `<size>` with your own values."}
{"instruction": "Run Rust tests", "input": "", "output": "```bash\ncargo test\n```"}
{"instruction": "Run Flask Application with gunicorn", "input": "", "output": "```bash\ngunicorn -w 4 -b 0.0.0.0:<port_number> <module_name>:app*\n```\n\nReplace `<port_number>`, `<module_name>` with your own values."}
{"instruction": "Create a weather web app", "input": "", "output": "```bash\ngit clone https://github.com/Leopoldov95/Weather-Modern.git\ncd Weather-Modern/\nnpm install live-server\nnpx live-server\n```"}
{"instruction": "Create a new branch in Git", "input": "", "output": "```bash\ngit checkout -b <branchname>\n```\n\nReplace `<branchname>` with your own values."}
{"instruction": "How do I port-forward a Kubernetes service from the command line?", "input": "", "output": "```bash\nkubectl port-forward svc/<service> <local_port>:<remote_port>\n```\n\nReplace `<service>`, `<local_port>`, `<remote_port>` with your own values."}
{"instruction": "How do I install Scrapy for robust web scraping from the command line?", "input": "", "output": "```bash\npip install Scrapy\n```"}
{"instruction": "How do I scale a service in Docker Swarm from the command line?", "input": "", "output": "```bash\ndocker service scale <service>=<num_replicas>\n```\n\nReplace `<service>`, `<num_replicas>` with your own values."}
{"instruction": "How do I change directory in UNIX/Linux from the command line?", "input": "", "output": "```bash\ncd <directory_name>\n```\n\nReplace `<directory_name>` with your own values."}
{"instruction": "Installing Docker", "input": "", "output": "```bash\nsudo apt-get install apt-transport-https ca-certificates curl software-properties-common\ncurl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -\nsudo add-apt-repository \"deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable\"\nsudo apt-get update\nsudo apt-get install docker-ce\n```"}
{"instruction": "How do I terraform deploy the infrastructure from the command line?", "input": "", "output": "```bash\nterraform apply\n```"}
{"instruction": "How do I check which Python packages are outdated from the command line?", "input": "", "output": "```bash\npip list --outdated\n```"}
{"instruction": "How do I copy a file from the command line?", "input": "", "output": "```bash\ncp <source> <destination>\n```\n\nReplace `<source>`, `<destination>` with your own values."}
{"instruction": "Active Python environment with a specific name", "input": "", "output": "```bash\nsource <envname>/bin/activate\n```\n\nReplace `<envname>` with your own values."}
{"instruction": "Docker Compose build and run services", "input": "", "output": "```bash\ndocker-compose up --build -d\n```"}
{"instruction": "Make a directory and enter it", "input": "", "output": "```bash\nmkdir -p <directory> && cd <directory>\n```\n\nReplace `<directory>` with your own values."}
{"instruction": "How do I sort a CSV by a column from the command line?", "input": "", "output": "```bash\nsort -t, -k<column_number> <file>.csv\n```\n\nReplace `<column_number>`, `<file>` with your own values."}
{"instruction": "Get a Kubernetes pod's logs", "input": "", "output": "```bash\nkubectl logs <pod>\n```\n\nReplace `<pod>` with your own values."}
{"instruction": "How do I active Python environment with a specific name from the command line?", "input": "", "output": "```bash\nsource <envname>/bin/activate\n```\n\nReplace `<envname>` with your own values."}
{"instruction": "How do I log in to MySQL server from the command line?", "input": "", "output": "```bash\nmysql -u <username> -p\n```\n\nReplace `<username>` with your own values."}
{"instruction": "Search code recursively with ripgrep", "input": "", "output": "```bash\nrg \"<pattern>\" <directory>\n```\n\nReplace `<pattern>`, `<directory>` with your own values."}
{"instruction": "Run job every minute", "input": "", "output": "```bash\ncrontab -e\n* * * * * <command>\n```\n\nReplace `<command>` with your own values."}
{"instruction": "Coming out of a directory", "input": "", "output": "```bash\ncd ..\n```"}
{"instruction": "Create a symbolic link", "input": "", "output": "```bash\nln -s <source_file_replace> <link_replace>\n```\n\nReplace `<source_file_replace>`, `<link_replace>` with your own values."}
{"instruction": "How do I run Go tests from the command line?", "input": "", "output": "```bash\ngo test ./...\n```"}
{"instruction": "How do I docker start a container from the command line?", "input": "", "output": "```bash\ndocker start <container_id>\n```\n\nReplace `<container_id>` with your own values."}
{"instruction": "How do I cut a column from a CSV from the command line?", "input": "", "output": "```bash\ncut -d, -f<column> <file>\n```\n\nReplace `<column>`, `<file>` with your own values."}
{"instruction": "How do I watch GPU usage from the command line?", "input": "", "output": "```bash\nnvidia-smi -l 1\n```"}
{"instruction": "Java compile a program", "input": "", "output": "```bash\njavac <program_name>.java\n```\n\nReplace `<program_name>` with your own values."}
{"instruction": "How do I stop a service from the command line?", "input": "", "output": "```bash\nsudo systemctl stop <service_name>\n```\n\nReplace `<service_name>` with your own values."}
{"instruction": "How do I run a Python script in the background from the command line?", "input": "", "output": "```bash\nnohup python <script>.py* &\n```\n\nReplace `<script>` with your own values."}
{"instruction": "How do I install package with npm from the command line?", "input": "", "output": "```bash\nnpm install <package_name>\n```\n\nReplace `<package_name>` with your own values."}
{"instruction": "How do I installing Git from the command line?", "input": "", "output": "```bash\nsudo apt-get install git\n```"}
{"instruction": "How do I interactively stage changes from the command line?", "input": "", "output": "```bash\ngit add -p\n```"}
{"instruction": "How do I check listening ports and applications from the command line?", "input": "", "output": "```bash\nnetstat -tuln\n```"}
{"instruction": "Find process ID related to a running service", "input": "", "output": "```bash\npgrep -f some_service\n```"}
{"instruction": "How do I format with Prettier from the command line?", "input": "", "output": "```bash\nnpx prettier --write <path>\n```\n\nReplace `<path>` with your own values."}
{"instruction": "Check listening ports and applications", "input": "", "output": "```bash\nnetstat -tuln\n```"}
{"instruction": "How do I show the largest files in a directory from the command line?", "input": "", "output": "```bash\ndu -ah <directory> | sort -rh | head -20\n```\n\nReplace `<directory>` with your own values."}
{"instruction": "How do I upgrade installed packages on Ubuntu from the command line?", "input": "", "output": "```bash\nsudo apt-get upgrade\n```"}
{"instruction": "Amend the last commit message", "input": "", "output": "```bash\ngit commit --amend -m \"<message>\"\n```\n\nReplace `<message>` with your own values."}
{"instruction": "Git push changes to repository", "input": "", "output": "```bash\ngit push origin master\n```"}
{"instruction": "Trim a video without re-encoding", "input": "", "output": "```bash\nffmpeg -ss <start_time> -to <end_time> -i <input_video> -c copy <output_video>\n```\n\nReplace `<start_time>`, `<end_time>`, `<input_video>`, `<output_video>` with your own values."}
{"instruction": "How do I exit vim from the command line?", "input": "", "output": "```bash\n:q!\n```"}
{"instruction": "Writing to a file", "input": "", "output": "```bash\necho \"<text>\" > <file>\n```\n\nReplace `<text>`, `<file>` with your own values."}
{"instruction": "How do I check memory usage on Unix/Linux from the command line?", "input": "", "output": "```bash\nfree -m\n```"}
{"instruction": "How do I run job every hour from the command line?", "input": "", "output": "```bash\ncrontab -e\n0 * * * * <command>\n```\n\nReplace `<command>` with your own values."}
{"instruction": "Extract Tarball (Uncompress directory)", "input": "", "output": "```bash\ntar -xzvf archive_name.tar.gz\n```"}
{"instruction": "How do I hadoop start all services from the command line?", "input": "", "output": "```bash\nstart-all.sh\n```"}
{"instruction": "How do I convert a video to a GIF from the command line?", "input": "", "output": "```bash\nffmpeg -i <input_video> -vf \"fps=12,scale=480:-1\" <output>.gif\n```\n\nReplace `<input_video>`, `<output>` with your own values."}
{"instruction": "Set an environment variable for one command", "input": "", "output": "```bash\n<name>=<value> <command>\n```\n\nReplace `<name>`, `<value>`, `<command>` with your own values."}
{"instruction": "Check OS version", "input": "", "output": "```bash\ncat /etc/os-release\n```"}
{"instruction": "How do I install Python package with pip from the command line?", "input": "", "output": "```bash\npip3 install some_package\n```"}
{"instruction": "Compare two files side by side", "input": "", "output": "```bash\ndiff -y <file_a> <file_b> | less\n```\n\nReplace `<file_a>`, `<file_b>` with your own values."}
{"instruction": "How do I describe a Kubernetes pod from the command line?", "input": "", "output": "```bash\nkubectl describe pod <pod>\n```\n\nReplace `<pod>` with your own values."}
{"instruction": "Base64-encode a string", "input": "", "output": "```bash\necho -n \"<text>\" | base64\n```\n\nReplace `<text>` with your own values."}
{"instruction": "How do I create an SSH tunnel to a remote port from the command line?", "input": "", "output": "```bash\nssh -L <local_port>:localhost:<remote_port> <user>@<host>\n```\n\nReplace `<local_port>`, `<remote_port>`, `<user>`, `<host>` with your own values."}
{"instruction": "Ping a host four times", "input": "", "output": "```bash\nping -c 4 <host>\n```\n\nReplace `<host>` with your own values."}
{"instruction": "Save installed libaries", "input": "", "output": "```bash\npip freeze > requirements.txt\n```"}
{"instruction": "Python run a script", "input": "", "output": "```bash\npython <script_name>.py\n```\n\nReplace `<script_name>` with your own values."}
{"instruction": "How do I setup MySQL root user and password from the command line?", "input": "", "output": "```bash\nmysqladmin -u root password <newpassword>\nmysqladmin -h localhost -u root -p <newpassword>\n```\n\nReplace `<newpassword>` with your own values."}
{"instruction": "Running a Python HTTP server", "input": "", "output": "```bash\npython3 -m http.server <port>\n```\n\nReplace `<port>` with your own values."}
{"instruction": "SSH into a remote server", "input": "", "output": "```bash\nssh <username>@<ip_address>\n```\n\nReplace `<username>`, `<ip_address>` with your own values."}
{"instruction": "Show unique sorted lines of a file", "input": "", "output": "```bash\nsort <file> | uniq\n```\n\nReplace `<file>` with your own values."}
{"instruction": "Compute a file's SHA-256 checksum", "input": "", "output": "```bash\nsha256sum <file>\n```\n\nReplace `<file>` with your own values."}
{"instruction": "Activate Python environment", "input": "", "output": "```bash\nsource myenv/bin/activate\n```"}
{"instruction": "How do I run job every quarter (here every 1st of Jan, Apr, Jul, Oct at 2:30 PM) from the command line?", "input": "", "output": "```bash\ncrontab -e\n30 14 1 JAN,APR,JUL,OCT * <command>\n```\n\nReplace `<command>` with your own values."}
{"instruction": "How do I check the syntax of a Python script from the command line?", "input": "", "output": "```bash\npython -m py_compile <script>.py*\n```\n\nReplace `<script>` with your own values."}
{"instruction": "Git clone repository", "input": "", "output": "```bash\ngit clone <repository_url>\n```\n\nReplace `<repository_url>` with your own values."}
{"instruction": "Crawl website and save for offline viewing", "input": "", "output": "```bash\nwget --convert-links --mirror --trust-server-names --adjust-extension --span-hosts --backup-converted --page-requisites -P <save_to> <website_url>\n```\n\nReplace `<save_to>`, `<website_url>` with your own values."}
{"instruction": "Show the path to a command", "input": "", "output": "```bash\nwhich <command>\n```\n\nReplace `<command>` with your own values."}
{"instruction": "Describe a Kubernetes pod", "input": "", "output": "```bash\nkubectl describe pod <pod>\n```\n\nReplace `<pod>` with your own values."}
{"instruction": "Deploy a service to Docker Swarm", "input": "", "output": "```bash\ndocker service create --replicas 1 --name <service> <docker_image>\n```\n\nReplace `<service>`, `<docker_image>` with your own values."}
{"instruction": "Install BeautifulSoup for parsing HTML", "input": "", "output": "```bash\npip install beautifulsoup4\n```"}
{"instruction": "How do I create Tarball (Compress directory) from the command line?", "input": "", "output": "```bash\ntar -czvf archive_name.tar.gz directory_to_compress\n```"}
{"instruction": "How do I give sudo privileges to a user on Ubuntu from the command line?", "input": "", "output": "```bash\nusermod -aG sudo <username>\n```\n\nReplace `<username>` with your own values."}
{"instruction": "How do I undo the last commit but keep the changes from the command line?", "input": "", "output": "```bash\ngit reset --soft HEAD~1\n```"}
{"instruction": "Build a Rust project in release mode", "input": "", "output": "```bash\ncargo build --release\n```"}
{"instruction": "How do I run a command on a remote machine using ssh from the command line?", "input": "", "output": "```bash\nssh <username>@<hostname> <command>\n```\n\nReplace `<username>`, `<hostname>`, `<command>` with your own values."}
{"instruction": "How do I show open files for a process from the command line?", "input": "", "output": "```bash\nlsof -p <pid>\n```\n\nReplace `<pid>` with your own values."}
{"instruction": "How do I create a new FastAPI app from the command line?", "input": "", "output": "```bash\ncat > <app_name>.py <<'EOF'\nfrom fastapi import FastAPI\n\napp = FastAPI()\n\n\n@app.get(\"/\")\ndef read_root():\n    return {\"message\": \"Hello from Engli\"}\nEOF\n```\n\nReplace `<app_name>` with your own values."}
{"instruction": "Creating a gzipped tarball of a directory", "input": "", "output": "```bash\ntar -cvzf <archive_name>.tar.gz* <directory>\n```\n\nReplace `<archive_name>`, `<directory>` with your own values."}
{"instruction": "Serve the current folder with PHP", "input": "", "output": "```bash\nphp -S localhost:<port>\n```\n\nReplace `<port>` with your own values."}
{"instruction": "How do I search shell history for a command from the command line?", "input": "", "output": "```bash\nhistory | grep <text>\n```\n\nReplace `<text>` with your own values."}
{"instruction": "How do I profile a Python script from the command line?", "input": "", "output": "```bash\npython -m cProfile -s cumtime <script>\n```\n\nReplace `<script>` with your own values."}
{"instruction": "Open a shell in a Kubernetes pod", "input": "", "output": "```bash\nkubectl exec -it <pod> -- /bin/sh\n```\n\nReplace `<pod>` with your own values."}
{"instruction": "Install Flask-Migrate (for database migrations)", "input": "", "output": "```bash\npip install Flask-Migrate\n```"}
{"instruction": "Update package list on Ubuntu", "input": "", "output": "```bash\nsudo apt-get update\n```"}
{"instruction": "Follow a Docker container's logs", "input": "", "output": "```bash\ndocker logs -f <container>\n```\n\nReplace `<container>` with your own values."}
{"instruction": "How do I crawl website and save for offline viewing from the command line?", "input": "", "output": "```bash\nwget --convert-links --mirror --trust-server-names --adjust-extension --span-hosts --backup-converted --page-requisites -P <save_to> <website_url>\n```\n\nReplace `<save_to>`, `<website_url>` with your own values."}
{"instruction": "Cloning a Git Repository", "input": "", "output": "```bash\ngit clone some_git_repo_URL\n```"}
{"instruction": "How do I assign sudo Privileges to User in Linux from the command line?", "input": "", "output": "```bash\nusermod -aG sudo <username>\n```\n\nReplace `<username>` with your own values."}
{"instruction": "How do I format Go code from the command line?", "input": "", "output": "```bash\ngofmt -w <path>\n```\n\nReplace `<path>` with your own values."}
{"instruction": "Generate an SSH key", "input": "", "output": "```bash\nssh-keygen -t ed25519 -C \"<email>\"\n```\n\nReplace `<email>` with your own values."}
{"instruction": "Create a virtual environment with uv", "input": "", "output": "```bash\nuv venv <env_name>\n```\n\nReplace `<env_name>` with your own values."}
{"instruction": "How do I list the contents of a tar archive from the command line?", "input": "", "output": "```bash\ntar -tzf <archive>.tar.gz\n```\n\nReplace `<archive>` with your own values."}
{"instruction": "How do I list tables in a SQLite database from the command line?", "input": "", "output": "```bash\nsqlite3 <database_file> \".tables\"\n```\n\nReplace `<database_file>` with your own values."}
{"instruction": "How do I check network statistics from the command line?", "input": "", "output": "```bash\nnetstat -s\n```"}
{"instruction": "Run job on specific minute (5 past every hour)", "input": "", "output": "```bash\ncrontab -e\n5 * * * * <command>\n```\n\nReplace `<command>` with your own values."}
{"instruction": "How do I open the current folder in VS Code from the command line?", "input": "", "output": "```bash\ncode .\n```"}
{"instruction": "How do I zip a folder from the command line?", "input": "", "output": "```bash\nzip -r <directory_name_destination>.zip <directory_name>\n```\n\nReplace `<directory_name_destination>`, `<directory_name>` with your own values."}
{"instruction": "How do I show public ssh key from the command line?", "input": "", "output": "```bash\ncat ~/.ssh/id_rsa.pub\n```"}
{"instruction": "Undo the last commit but keep the changes", "input": "", "output": "```bash\ngit reset --soft HEAD~1\n```"}
{"instruction": "Check Ubuntu version", "input": "", "output": "```bash\nlsb_release -a\n```"}
{"instruction": "How do I download a file from a given URL from the command line?", "input": "", "output": "```bash\nwget <url>\n```\n\nReplace `<url>` with your own values."}
{"instruction": "How do I start a new tmux session with a name from the command line?", "input": "", "output": "```bash\ntmux new -s <name>\n```\n\nReplace `<name>` with your own values."}
{"instruction": "Writing and reading to/from a file using script", "input": "", "output": "```bash\necho \"<text>\" > <filename>\ncat <filename>\n```\n\nReplace `<text>`, `<filename>` with your own values."}
{"instruction": "How do I create a blank MySQL database and user from the command line?", "input": "", "output": "```bash\nCREATE DATABASE <database>; \nCREATE USER '<user>'@'localhost' IDENTIFIED BY '<password>';\nGRANT ALL PRIVILEGES ON <database>.* TO '<user>'@'localhost'; \nFLUSH PRIVILEGES;\n```\n\nReplace `<database>`, `<user>`, `<password>` with your own values."}
{"instruction": "Stop a specific Docker container", "input": "", "output": "```bash\ndocker stop <containername>\n```\n\nReplace `<containername>` with your own values."}
{"instruction": "Start a new tmux session with a name", "input": "", "output": "```bash\ntmux new -s <name>\n```\n\nReplace `<name>` with your own values."}
{"instruction": "Run Go tests", "input": "", "output": "```bash\ngo test ./...\n```"}
{"instruction": "Sort a CSV by a column", "input": "", "output": "```bash\nsort -t, -k<column_number> <file>.csv\n```\n\nReplace `<column_number>`, `<file>` with your own values."}
{"instruction": "Install a specific version of a package with pip", "input": "", "output": "```bash\npip install some_package==some_version\n```"}
{"instruction": "Make a Curl Request", "input": "", "output": "```bash\ncurl -X GET http://<url>\n```\n\nReplace `<url>` with your own values."}
{"instruction": "How do I changing directory permissions from the command line?", "input": "", "output": "```bash\nchmod <permission_numbers> <directory>\n```\n\nReplace `<permission_numbers>`, `<directory>` with your own values."}
{"instruction": "How do I print the working directory from the command line?", "input": "", "output": "```bash\npwd\n```"}
{"instruction": "Run a Python script with arguments", "input": "", "output": "```bash\npython3 some_script.py <arg1> <arg2>\n```\n\nReplace `<arg1>`, `<arg2>` with your own values."}
{"instruction": "How do I show only an HTTP response status code from the command line?", "input": "", "output": "```bash\ncurl -s -o /dev/null -w \"%{http_code}\" <url>\n```\n\nReplace `<url>` with your own values."}
{"instruction": "Cut a column from a CSV", "input": "", "output": "```bash\ncut -d, -f<column> <file>\n```\n\nReplace `<column>`, `<file>` with your own values."}
{"instruction": "How do I download and retry for n times in case of failure from the command line?", "input": "", "output": "```bash\nwget --tries=<n> <url>\n```\n\nReplace `<n>`, `<url>` with your own values."}
{"instruction": "Find files matching a pattern", "input": "", "output": "```bash\nfind . -name \"<pattern>\"\n```\n\nReplace `<pattern>` with your own values."}
{"instruction": "Check the memory usage of the system", "input": "", "output": "```bash\nfree -m\n```"}
{"instruction": "Create a new directory in UNIX/Linux", "input": "", "output": "```bash\nmkdir <new_directory>\n```\n\nReplace `<new_directory>` with your own values."}
{"instruction": "Start a git bisect session", "input": "", "output": "```bash\ngit bisect start && git bisect bad && git bisect good <good_commit>\n```\n\nReplace `<good_commit>` with your own values."}
{"instruction": "Deploy with Kubernetes", "input": "", "output": "```bash\nkubectl apply -f <service_name>.yaml\n```\n\nReplace `<service_name>` with your own values."}
{"instruction": "How do I type-check Python with mypy from the command line?", "input": "", "output": "```bash\nmypy <path>\n```\n\nReplace `<path>` with your own values."}
{"instruction": "Change directory in UNIX/Linux", "input": "", "output": "```bash\ncd <directory_name>\n```\n\nReplace `<directory_name>` with your own values."}
{"instruction": "Show kernel version", "input": "", "output": "```bash\nuname -r\n```"}
{"instruction": "Download only certain file types (e.g., .jpg)", "input": "", "output": "```bash\nwget -r -A '*.jpg' <website_url>\n```\n\nReplace `<website_url>` with your own values."}
{"instruction": "List tables in a SQLite database", "input": "", "output": "```bash\nsqlite3 <database_file> \".tables\"\n```\n\nReplace `<database_file>` with your own values."}
{"instruction": "How do I run job every Monday at a specific time (here every Monday at 2:30 PM) from the command line?", "input": "", "output": "```bash\ncrontab -e\n30 14 * * MON <command>\n```\n\nReplace `<command>` with your own values."}
{"instruction": "Create a simple web chatgpt chatbot", "input": "", "output": "```bash\ngit clone https://github.com/Wiazeph/Chat-Bot.git\ncd Chat-Bot/\nnpm install\nnpm run dev\n```"}
{"instruction": "How do I compare two files side by side from the command line?", "input": "", "output": "```bash\ndiff -y <file_a> <file_b> | less\n```\n\nReplace `<file_a>`, `<file_b>` with your own values."}
{"instruction": "Count lines of Python code", "input": "", "output": "```bash\nfind <directory> -name '*.py' -print0 | xargs -0 wc -l | tail -1\n```\n\nReplace `<directory>` with your own values."}
{"instruction": "How do I kill all processes for a given user from the command line?", "input": "", "output": "```bash\npkill -U <user>\n```\n\nReplace `<user>` with your own values."}
{"instruction": "How do I kill process by ID from the command line?", "input": "", "output": "```bash\nkill -9 process_id\n```"}
{"instruction": "Create a git worktree for a branch", "input": "", "output": "```bash\ngit worktree add ../<folder_name> <branch>\n```\n\nReplace `<folder_name>`, `<branch>` with your own values."}
{"instruction": "How do I create and push a git tag from the command line?", "input": "", "output": "```bash\ngit tag <tag> && git push origin <tag>\n```\n\nReplace `<tag>` with your own values."}
{"instruction": "How do I start MySQL server from the command line?", "input": "", "output": "```bash\nsudo systemctl start mysql\n```"}
{"instruction": "How do I extract Tarball (Uncompress directory) from the command line?", "input": "", "output": "```bash\ntar -xzvf archive_name.tar.gz\n```"}
{"instruction": "Download a file from a given URL", "input": "", "output": "```bash\nwget <url>\n```\n\nReplace `<url>` with your own values."}
{"instruction": "How do I switch to different Git branch from the command line?", "input": "", "output": "```bash\ngit checkout <branchname>\n```\n\nReplace `<branchname>` with your own values."}
{"instruction": "Show the first lines of a file", "input": "", "output": "```bash\nhead -n <lines> <file>\n```\n\nReplace `<lines>`, `<file>` with your own values."}
{"instruction": "How do I count lines of Python code from the command line?", "input": "", "output": "```bash\nfind <directory> -name '*.py' -print0 | xargs -0 wc -l | tail -1\n```\n\nReplace `<directory>` with your own values."}
{"instruction": "How do I scrapy crawl a spider from the command line?", "input": "", "output": "```bash\nscrapy crawl <spider_name>\n```\n\nReplace `<spider_name>` with your own values."}
{"instruction": "Search shell history for a command", "input": "", "output": "```bash\nhistory | grep <text>\n```\n\nReplace `<text>` with your own values."}
{"instruction": "Extract a field from a JSON file with jq", "input": "", "output": "```bash\njq -r '.<field>' <file>\n```\n\nReplace `<field>`, `<file>` with your own values."}
{"instruction": "How do I show the git diff of staged changes from the command line?", "input": "", "output": "```bash\ngit diff --cached\n```"}
{"instruction": "Run a bash script to run a python app", "input": "", "output": "```bash\necho RUN THIS IN YOUR TERMINAL:\necho sh <script_name>.sh\n```\n\nReplace `<script_name>` with your own values."}
{"instruction": "How do I check status of a service from the command line?", "input": "", "output": "```bash\nsystemctl status <service_name>\n```\n\nReplace `<service_name>` with your own values."}
{"instruction": "Apply a Kubernetes manifest", "input": "", "output": "```bash\nkubectl apply -f <file>\n```\n\nReplace `<file>` with your own values."}
{"instruction": "Show your current username", "input": "", "output": "```bash\nwhoami\n```"}
{"instruction": "Creating a directory", "input": "", "output": "```bash\nmkdir <directory_name>\n```\n\nReplace `<directory_name>` with your own values."}
{"instruction": "Time a shell command", "input": "", "output": "```bash\ntime <command>\n```\n\nReplace `<command>` with your own values."}
{"instruction": "How do I show Kubernetes events sorted by time from the command line?", "input": "", "output": "```bash\nkubectl get events --sort-by=.metadata.creationTimestamp\n```"}
{"instruction": "Follow systemd journal logs for a service", "input": "", "output": "```bash\njournalctl -u <service> -f\n```\n\nReplace `<service>` with your own values."}
{"instruction": "How do I add user to a specific group from the command line?", "input": "", "output": "```bash\nsudo usermod -a -G <group> <username>\n```\n\nReplace `<group>`, `<username>` with your own values."}
{"instruction": "Create a pull request with the GitHub CLI", "input": "", "output": "```bash\ngh pr create --title \"<title>\" --body \"<body>\"\n```\n\nReplace `<title>`, `<body>` with your own values."}
{"instruction": "How do I remove a directory and its contents from the command line?", "input": "", "output": "```bash\nrm -r <directory_name>\n```\n\nReplace `<directory_name>` with your own values."}
{"instruction": "How do I trace the network route to a host from the command line?", "input": "", "output": "```bash\ntraceroute <host>\n```\n\nReplace `<host>` with your own values."}
{"instruction": "How do I batch convert PNG images to WebP from the command line?", "input": "", "output": "```bash\nfor f in *.png; do cwebp \"$f\" -o \"${f%.png}.webp\"; done\n```"}
{"instruction": "Show a certificate's details", "input": "", "output": "```bash\nopenssl x509 -in <cert> -noout -text\n```\n\nReplace `<cert>` with your own values."}
{"instruction": "selenium find an element by id", "input": "", "output": "```bash\ndriver.find_element_by_id('<id>')\n```\n\nReplace `<id>` with your own values."}
{"instruction": "Log in to MySQL server", "input": "", "output": "```bash\nmysql -u <username> -p\n```\n\nReplace `<username>` with your own values."}
{"instruction": "How do I generate a self-signed TLS certificate from the command line?", "input": "", "output": "```bash\nopenssl req -x509 -newkey rsa:4096 -keyout <key>.pem -out <cert>.pem -days 365 -nodes\n```\n\nReplace `<key>`, `<cert>` with your own values."}
{"instruction": "How do I push an image to Docker Hub from the command line?", "input": "", "output": "```bash\ndocker push <username>/'<imagename>\n```\n\nReplace `<username>`, `<imagename>` with your own values."}
{"instruction": "How do I show system uptime from the command line?", "input": "", "output": "```bash\nuptime\n```"}
{"instruction": "How do I update package list on Ubuntu from the command line?", "input": "", "output": "```bash\nsudo apt-get update\n```"}
{"instruction": "Disk usage of directory", "input": "", "output": "```bash\ndu -sh <directory>\n```\n\nReplace `<directory>` with your own values."}
{"instruction": "Create a Next.js app", "input": "", "output": "```bash\nnpx create-next-app@latest <app_name>\n```\n\nReplace `<app_name>` with your own values."}
{"instruction": "How do I convert a document with pandoc from the command line?", "input": "", "output": "```bash\npandoc <input> -o <output>\n```\n\nReplace `<input>`, `<output>` with your own values."}
{"instruction": "Extracting a gzipped tarball", "input": "", "output": "```bash\ntar -xvzf <archive_name>.tar.gz*\n```\n\nReplace `<archive_name>` with your own values."}
{"instruction": "How do I open the MongoDB shell from the command line?", "input": "", "output": "```bash\nmongosh\n```"}
{"instruction": "How do I count occurrences of a word in a file from the command line?", "input": "", "output": "```bash\ngrep -o \"<word>\" <file> | wc -l\n```\n\nReplace `<word>`, `<file>` with your own values."}
{"instruction": "Tail the last lines of a file", "input": "", "output": "```bash\ntail -n <lines> <file>\n```\n\nReplace `<lines>`, `<file>` with your own values."}
{"instruction": "Install necessary libraries for scraping app in a virtual environement", "input": "", "output": "```bash\nbash -c 'cd ./<env_name>/ && source \"bin/activate\" && pip3 install fuzzywuzzy pandas flask beautifulsoup4 requests'\n```\n\nReplace `<env_name>` with your own values."}
{"instruction": "How do I download file with wget from the command line?", "input": "", "output": "```bash\nwget <file_url>\n```\n\nReplace `<file_url>` with your own values."}
{"instruction": "Pretty-print a JSON file", "input": "", "output": "```bash\njq . <file>\n```\n\nReplace `<file>` with your own values."}
{"instruction": "Start a specific Docker container", "input": "", "output": "```bash\ndocker start <containername>\n```\n\nReplace `<containername>` with your own values."}
{"instruction": "How do I copy file to a remote machine from the command line?", "input": "", "output": "```bash\nscp <file> <username>@<hostname>:<directory>\n```\n\nReplace `<file>`, `<username>`, `<hostname>`, `<directory>` with your own values."}
{"instruction": "Install Requests for HTTP requests", "input": "", "output": "```bash\npip install requests\n```"}
{"instruction": "Listing directory", "input": "", "output": "```bash\nls\n```"}
{"instruction": "Docker stop a container", "input": "", "output": "```bash\ndocker stop <container_id>\n```\n\nReplace `<container_id>` with your own values."}
{"instruction": "Pull Docker image", "input": "", "output": "```bash\ndocker pull <image_name>\n```\n\nReplace `<image_name>` with your own values."}
{"instruction": "How do I list PostgreSQL databases from the command line?", "input": "", "output": "```bash\npsql -l\n```"}
{"instruction": "How do I SCP a file to remote server from the command line?", "input": "", "output": "```bash\nscp <filename> <user>@<host>:<directory>\n```\n\nReplace `<filename>`, `<user>`, `<host>`, `<directory>` with your own values."}
{"instruction": "Kill all processes for a given user", "input": "", "output": "```bash\npkill -U <user>\n```\n\nReplace `<user>` with your own values."}
{"instruction": "How do I run a Scrapy Spider from the command line?", "input": "", "output": "```bash\nscrapy crawl <spider_name>\n```\n\nReplace `<spider_name>` with your own values."}
{"instruction": "How do I show your public IP address from the command line?", "input": "", "output": "```bash\ncurl -s ifconfig.me\n```"}
{"instruction": "Django migrate database", "input": "", "output": "```bash\npython manage.py migrate\n```"}
{"instruction": "install python", "input": "", "output": "```bash\nsudo apt-get install software-properties-common\nsudo add-apt-repository ppa:deadsnakes/ppa\nsudo apt-get update\nsudo apt-get install python3.8\n```"}
{"instruction": "How do I change directory from the command line?", "input": "", "output": "```bash\ncd some_directory\n```"}
{"instruction": "How do I find which commit introduced a string from the command line?", "input": "", "output": "```bash\ngit log -S \"<text>\" --oneline\n```\n\nReplace `<text>` with your own values."}
{"instruction": "Restart a systemd service", "input": "", "output": "```bash\nsudo systemctl restart <service>\n```\n\nReplace `<service>` with your own values."}
{"instruction": "Generate a UUID", "input": "", "output": "```bash\nuuidgen\n```"}
{"instruction": "Restore a file from a specific commit", "input": "", "output": "```bash\ngit restore --source=<commit> -- <file>\n```\n\nReplace `<commit>`, `<file>` with your own values."}
{"instruction": "Install Python package with pip", "input": "", "output": "```bash\npip3 install some_package\n```"}
{"instruction": "How do I run python app from the command line?", "input": "", "output": "```bash\npython3 <appname>.py\n```\n\nReplace `<appname>` with your own values."}
{"instruction": "Monitor a file in real time", "input": "", "output": "```bash\ntail -f <file>\n```\n\nReplace `<file>` with your own values."}
{"instruction": "How do I show files changed between two branches from the command line?", "input": "", "output": "```bash\ngit diff --name-only <branch_a>..<branch_b>\n```\n\nReplace `<branch_a>`, `<branch_b>` with your own values."}
{"instruction": "How do I restart a systemd service from the command line?", "input": "", "output": "```bash\nsudo systemctl restart <service>\n```\n\nReplace `<service>` with your own values."}
{"instruction": "How do I create new directory from the command line?", "input": "", "output": "```bash\nmkdir <directory_name>\n```\n\nReplace `<directory_name>` with your own values."}
{"instruction": "How do I install Flask-Migrate (for database migrations) from the command line?", "input": "", "output": "```bash\npip install Flask-Migrate\n```"}
{"instruction": "Hadoop start all services", "input": "", "output": "```bash\nstart-all.sh\n```"}
{"instruction": "How do I apply migration to database from the command line?", "input": "", "output": "```bash\nflask db upgrade\n```"}
{"instruction": "Count the files in a directory", "input": "", "output": "```bash\nfind <directory> -type f | wc -l\n```\n\nReplace `<directory>` with your own values."}
{"instruction": "How do I make directory from the command line?", "input": "", "output": "```bash\nmkdir some_directory\n```"}
{"instruction": "Create a Autonomous AI Agent for App Creation DemoGPT", "input": "", "output": "```bash\ngit clone https://github.com/melih-unsal/DemoGPT.git\ncd DemoGPT\npip install .\npip install duckduckgo-search\nstreamlit run demogpt/app.py\n```"}
{"instruction": "How do I create a virtual environment from the command line?", "input": "", "output": "```bash\npython3 -m venv <env_name>\n```\n\nReplace `<env_name>` with your own values."}
{"instruction": "How do I call scraping app to track from word from the command line?", "input": "", "output": "```bash\ncurl http://127.0.0.1:5000/api/scrape?word=<word>\n```\n\nReplace `<word>` with your own values."}
{"instruction": "Change firewall rules (UFW)", "input": "", "output": "```bash\nsudo ufw allow <portnumber>\n```\n\nReplace `<portnumber>` with your own values."}
{"instruction": "How do I limit download speed with wget from the command line?", "input": "", "output": "```bash\nwget --limit-rate=<kilobytes_per_second>k <url>\n```\n\nReplace `<kilobytes_per_second>`, `<url>` with your own values."}
{"instruction": "Show the git diff of staged changes", "input": "", "output": "```bash\ngit diff --cached\n```"}
{"instruction": "Dump a PostgreSQL database", "input": "", "output": "```bash\npg_dump <database> > <file>.sql\n```\n\nReplace `<database>`, `<file>` with your own values."}
{"instruction": "How do I show the first lines of a file from the command line?", "input": "", "output": "```bash\nhead -n <lines> <file>\n```\n\nReplace `<lines>`, `<file>` with your own values."}
{"instruction": "Setting Permissions on a Folder", "input": "", "output": "```bash\nsetfacl -m u:<user>:<permissions> <folder>\n```\n\nReplace `<user>`, `<permissions>`, `<folder>` with your own values."}
{"instruction": "Give sudo privileges to a user on Ubuntu", "input": "", "output": "```bash\nusermod -aG sudo <username>\n```\n\nReplace `<username>` with your own values."}
{"instruction": "Running a Python script with arguments", "input": "", "output": "```bash\npython3 <script> <arg1> <arg2>...\n```\n\nReplace `<script>`, `<arg1>`, `<arg2>` with your own values."}
{"instruction": "Open the current folder in VS Code", "input": "", "output": "```bash\ncode .\n```"}
{"instruction": "push repo", "input": "", "output": "```bash\ngit push <source> <destination>\n```\n\nReplace `<source>`, `<destination>` with your own values."}
{"instruction": "How do I convert a video with ffmpeg from the command line?", "input": "", "output": "```bash\nffmpeg -i <input> <output>\n```\n\nReplace `<input>`, `<output>` with your own values."}
{"instruction": "How do I deactivate Python environment from the command line?", "input": "", "output": "```bash\ndeactivate\n```"}
{"instruction": "Show recent git history", "input": "", "output": "```bash\ngit log --oneline -n <count>\n```\n\nReplace `<count>` with your own values."}
{"instruction": "How do I show a compact git history graph from the command line?", "input": "", "output": "```bash\ngit log --oneline --graph --decorate --all\n```"}
{"instruction": "How do I convert an audio file to MP3 from the command line?", "input": "", "output": "```bash\nffmpeg -i <input_audio> -b:a 192k <output>.mp3\n```\n\nReplace `<input_audio>`, `<output>` with your own values."}
{"instruction": "How do I generate a Spider for Scrapy project from the command line?", "input": "", "output": "```bash\ncd <project_name>\nscrapy genspider <spider_name> <website>\n```\n\nReplace `<project_name>`, `<spider_name>`, `<website>` with your own values."}
{"instruction": "Run job every quarter (here every 1st of Jan, Apr, Jul, Oct at 2:30 PM)", "input": "", "output": "```bash\ncrontab -e\n30 14 1 JAN,APR,JUL,OCT * <command>\n```\n\nReplace `<command>` with your own values."}
{"instruction": "How do I create a new RabbitMQ user from the command line?", "input": "", "output": "```bash\nrabbitmqctl add_user <username> <password>\nrabbitmqctl set_user_tags <username> administrator\nrabbitmqctl set_permissions -p / <username> \".*\" \".*\" \".*\"\n```\n\nReplace `<username>`, `<password>` with your own values."}
{"instruction": "Install complex package such as OpenCV", "input": "", "output": "```bash\npip install opencv-python-headless\n```"}
{"instruction": "Make script executable", "input": "", "output": "```bash\nchmod +x some_script.sh\n```"}
{"instruction": "How do I cloning a Git Repository from the command line?", "input": "", "output": "```bash\ngit clone some_git_repo_URL\n```"}
{"instruction": "Show the weather in the terminal", "input": "", "output": "```bash\ncurl wttr.in/<city>\n```\n\nReplace `<city>` with your own values."}
{"instruction": "Install Flask via pip", "input": "", "output": "```bash\npip install flask\n```"}
{"instruction": "Moving into a directory", "input": "", "output": "```bash\ncd <directory>\n```\n\nReplace `<directory>` with your own values."}
{"instruction": "How do I serve the current folder over HTTP from the command line?", "input": "", "output": "```bash\npython3 -m http.server <port>\n```\n\nReplace `<port>` with your own values."}
{"instruction": "How do I check Python Version from the command line?", "input": "", "output": "```bash\npython3 --version\n```"}
{"instruction": "Cherry-pick a commit", "input": "", "output": "```bash\ngit cherry-pick <commit>\n```\n\nReplace `<commit>` with your own values."}
{"instruction": "How do I list Kubernetes pods from the command line?", "input": "", "output": "```bash\nkubectl get pods\n```"}
{"instruction": "How do I check IP address of the machine from the command line?", "input": "", "output": "```bash\nip addr show\n```"}
{"instruction": "How do I run Flask Application with gunicorn from the command line?", "input": "", "output": "```bash\ngunicorn -w 4 -b 0.0.0.0:<port_number> <module_name>:app*\n```\n\nReplace `<port_number>`, `<module_name>` with your own values."}
{"instruction": "How do I start a service from the command line?", "input": "", "output": "```bash\nsudo systemctl start <service_name>\n```\n\nReplace `<service_name>` with your own values."}
{"instruction": "Kill process by ID", "input": "", "output": "```bash\nkill -9 process_id\n```"}
{"instruction": "How do I check the memory usage of the system from the command line?", "input": "", "output": "```bash\nfree -m\n```"}
{"instruction": "Run an npm script", "input": "", "output": "```bash\nnpm run <script>\n```\n\nReplace `<script>` with your own values."}
{"instruction": "How do I add user to sudo group in Linux from the command line?", "input": "", "output": "```bash\nsudo usermod -aG sudo <username>\n```\n\nReplace `<username>` with your own values."}
{"instruction": "How do I install a specific version of a package with pip from the command line?", "input": "", "output": "```bash\npip install some_package==some_version\n```"}
{"instruction": "How do I dump a PostgreSQL database from the command line?", "input": "", "output": "```bash\npg_dump <database> > <file>.sql\n```\n\nReplace `<database>`, `<file>` with your own values."}
{"instruction": "Show a calendar for a month", "input": "", "output": "```bash\ncal <month> <year>\n```\n\nReplace `<month>`, `<year>` with your own values."}
{"instruction": "How do I check disk usage of directories from the command line?", "input": "", "output": "```bash\ndu -sh <directoryname>\n```\n\nReplace `<directoryname>` with your own values."}
{"instruction": "How do I update all packages from the command line?", "input": "", "output": "```bash\nsudo apt-get update && sudo apt-get upgrade\n```"}
{"instruction": "How do I show a certificate's details from the command line?", "input": "", "output": "```bash\nopenssl x509 -in <cert> -noout -text\n```\n\nReplace `<cert>` with your own values."}
{"instruction": "How do I audit npm dependencies from the command line?", "input": "", "output": "```bash\nnpm audit\n```"}
{"instruction": "What is the ethical profile of \"Sculpture\" in Engli?", "input": "", "output": "Virtues: Artistic Expression, Creativity. Sins: Vandalism. Moderation level: 5/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Colleague\" carry?", "input": "", "output": "Virtues: Teamwork, Cooperation. Sins: Jealousy, Betrayal. Moderation level: 60/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Outdoors\" carry?", "input": "", "output": "Virtues: Adventure, Connection to Nature. Sins: Littering, Deforestation. Moderation level: 20/100."}
{"instruction": "What is the ethical profile of \"Structure\" in Engli?", "input": "", "output": "Virtues: Order, Stability. Sins: Restriction, Inflexibility. Moderation level: 50/100."}
{"instruction": "What does \"Everything\" mean?", "input": "", "output": "In Python, we can create an object or class named \\\"everything\\\" which can have different attributes and methods signifying its different actions. Below is a simple python script for the same."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Analysis\" carry?", "input": "", "output": "Virtues: Understanding, Insight. Sins: Overthinking, Paralysis by Analysis. Moderation level: 20/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Tower\" carry?", "input": "", "output": "Virtues: Protection, Watchfulness. Sins: Pride, Exclusion. Moderation level: 15/100."}
{"instruction": "What is the ethical profile of \"Engineer\" in Engli?", "input": "", "output": "Virtues: Innovation, Problem-solving, Diligence. Sins: Misuse of knowledge, Dishonesty. Moderation level: 15/100."}
{"instruction": "What is the ethical profile of \"Instruction\" in Engli?", "input": "", "output": "Virtues: Learning, Knowledge Sharing, Guidance. Sins: Misguiding, Misinterpretation. Moderation level: 20/100."}
{"instruction": "Define the Engli word \"Ago\".", "input": "", "output": "In Python, the word \\\"ago\\\" doesn't have a built-in functionality. But we can create a script where \\\"ago\\\" can be used to calculate time durations in the past from the current date."}
{"instruction": "What is the ethical profile of \"Journey\" in Engli?", "input": "", "output": "Virtues: Exploration, Learning, Adventure. Sins: Exploitation of resources, Over-tourism. Moderation level: 20/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Married\" carry?", "input": "", "output": "Virtues: Commitment, Fidelity, Love. Sins: Adultery. Moderation level: 80/100."}
{"instruction": "What does \"Vehicle\" mean?", "input": "", "output": "Word: vehicle n. A2 Numbers related to vehicle n. A2: 100200300 Script related to vehicle n. A2:"}
{"instruction": "What does \"Mirror\" mean?", "input": "", "output": "Below Python script is related to a mirror effect. It takes a string and then reverses it to create a mirror effect. We can think of this as the string reflecting off the mirror. The number 123456789"}
{"instruction": "What is the ethical profile of \"Written\" in Engli?", "input": "", "output": "Virtues: Knowledge sharing, communication, education. Sins: Manipulation through written words. Moderation level: 10/100."}
{"instruction": "What is the ethical profile of \"Neighbourhood\" in Engli?", "input": "", "output": "Virtues: Community, Friendship, Cooperation. Sins: Neglect, Uncleanliness. Moderation level: 85/100."}
{"instruction": "What does \"Hotel\" mean?", "input": "", "output": "Word: hotel n. A1 Numbers related to hotel n. A1: 987654321 Python script to represent a hotel management system:"}
{"instruction": "What is the ethical profile of \"Right\" in Engli?", "input": "", "output": "Virtues: Justice, Fairness. Sins: Self-righteousness. Moderation level: 75/100."}
{"instruction": "Define the Engli word \"n. A1\".", "input": "", "output": "Word: bill n. A1, v. B2 Numbers related to bill n. A1, v. B2: 912839456 Python script:"}
{"instruction": "What is the ethical profile of \"Necessarily\" in Engli?", "input": "", "output": "Virtues: Accuracy, Consistency. Sins: Rigidity. Moderation level: 20/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Passage\" carry?", "input": "", "output": "Virtues: Access, Progress. Sins: Obstruction. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Height\" carry?", "input": "", "output": "Virtues: Perspective, Achievement. Sins: Fear of heights, Discrimination based on height. Moderation level: 30/100."}
{"instruction": "What is the ethical profile of \"Crew\" in Engli?", "input": "", "output": "Virtues: Teamwork, Dedication, Skillfulness. Sins: Irresponsibility, Uncooperativeness. Moderation level: 40/100."}
{"instruction": "What is the ethical profile of \"River\" in Engli?", "input": "", "output": "Virtues: Biodiversity, Natural beauty, Tranquility. Sins: Pollution, Overfishing. Moderation level: 5/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Electronic\" carry?", "input": "", "output": "Virtues: Instant communication, information accessibility. Sins: E-waste, cyberbullying. Moderation level: 35/100."}
{"instruction": "What is the ethical profile of \"Section\" in Engli?", "input": "", "output": "Virtues: Organization, Comprehension.. Sins: Exclusion,. Moderation level: 20/100."}
{"instruction": "What is the ethical profile of \"Punish\" in Engli?", "input": "", "output": "Virtues: Justice, Discipline. Sins: Cruelty, Abuse. Moderation level: 80/100."}
{"instruction": "What is the ethical profile of \"Depth\" in Engli?", "input": "", "output": "Virtues: Wisdom, Insight. Sins: none. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Pitch\" carry?", "input": "", "output": "Virtues: Persuasion, Clarity, Confidence. Sins: Deception, Over-hype. Moderation level: 50/100."}
{"instruction": "What is the ethical profile of \"Imagination\" in Engli?", "input": "", "output": "Virtues: Creativity, Innovation, Problem-Solving. Sins: Illusions, False Reality. Moderation level: 95/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Myself\" carry?", "input": "", "output": "Virtues: Self-awareness, Independence. Sins: Selfishness, Narcissism. Moderation level: 50/100."}
{"instruction": "What is the ethical profile of \"Produce\" in Engli?", "input": "", "output": "Virtues: Nourishment, Sustainability. Sins: Overproduction. Moderation level: 5/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Headache\" carry?", "input": "", "output": "Virtues: Self-care, seeking medical advice. Sins: Ignoring health concerns, overworking. Moderation level: 40/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Historic adj. B1\" carry?", "input": "", "output": "Virtues: Preservation, Education. Sins: Erasure of history, Revisionism. Moderation level: 70/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Which\" carry?", "input": "", "output": "Virtues: Seeking knowledge, Curiosity. Sins: none. Moderation level: 50/100."}
{"instruction": "What is the ethical profile of \"Printing\" in Engli?", "input": "", "output": "Virtues: Knowledge dissemination, Communication. Sins: Misinformation, Plagiarism. Moderation level: 20/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Creative\" carry?", "input": "", "output": "Virtues: Innovation, Originality. Sins: Plagiarism. Moderation level: 80/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"\\\"It\\\"\" carry?", "input": "", "output": "Virtues: Specificity, Clarity, Precision. Sins: none. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Expedition\" carry?", "input": "", "output": "Virtues: Adventure, Discovery, Knowledge acquisition. Sins: Overexploitation of resources. Moderation level: 75/100."}
{"instruction": "Define the Engli word \"Major (adj. A2)\".", "input": "", "output": "Word: major adj. A2 Numbers related to major adj. A2: 100921291 Python script:"}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Adventure\" carry?", "input": "", "output": "Virtues: Bravery, Exploration, Freedom. Sins: Recklessness. Moderation level: 80/100."}
{"instruction": "What is the ethical profile of \"Telephone\" in Engli?", "input": "", "output": "Virtues: Communication, Connection. Sins: Eavesdropping, Scams. Moderation level: 30/100."}
{"instruction": "What is the ethical profile of \"Album\" in Engli?", "input": "", "output": "Virtues: Creativity and Memories Conservation. Sins: Copyright Infringement. Moderation level: 10/100."}
{"instruction": "What does \"Uncomfortable\" mean?", "input": "", "output": "Word: uncomfortable adj. B1 Numbers related to uncomfortable adj. B1: 873456178 Python script that represents \\\"uncomfortable\\\" as a dictionary of actions:"}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Drag\" carry?", "input": "", "output": "Virtues: Patience, Persistence. Sins: Delay, Procrastination. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Geography\" carry?", "input": "", "output": "Virtues: Understanding of Earth's landscapes and cultures. Sins: Environmental degradation. Moderation level: 10/100."}
{"instruction": "What is the ethical profile of \"v. Cook (Action)\" in Engli?", "input": "", "output": "Virtues: Nutritional awareness, Creativity n. Cook (Person): Emoji: 👨‍🍳 Ethical Moderation Level: 70 Sins: Overcooking, Wasting food Virtues: Skill, Patience. Sins: Overcooking, Wasting food. Moderation level: 70/100."}
{"instruction": "Define the Engli word \"Eleven\".", "input": "", "output": "Word: `eleven number A1` Numbers related to `eleven number A1`: `110000000`, number `11` for 'eleven' part, number `1` for 'A1' as 'A' is the first letter and number `1` is already there, zero-padd"}
{"instruction": "What is the ethical profile of \"Lung\" in Engli?", "input": "", "output": "Virtues: Breathing, Life Sustenance. Sins: Smoking. Moderation level: 1/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Crazy\" carry?", "input": "", "output": "Virtues: Spontaneity, Creativity. Sins: Irrationality, Recklessness. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Sex\" carry?", "input": "", "output": "Virtues: Love, Creation, Scientific Understanding. Sins: Lust, Exploitation. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Learning\" carry?", "input": "", "output": "Virtues: Knowledge Acquisition, Wisdom, Progress. Sins: Overworking. Moderation level: 95/100."}
{"instruction": "What is the ethical profile of \"Project (noun)\" in Engli?", "input": "", "output": "Virtues: Productivity, Achievements Project (verb): Emoji: 📽️🔮💡 Ethical Moderation Level: 35 Sins: Misinterpretation, False prediction Virtues: Foresight, Clarity. Sins: Overworking, Mismanagement. Moderation level: 40/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Father\" carry?", "input": "", "output": "Virtues: Responsibility, Compassion, Leadership. Sins: Absenteeism, Tyranny. Moderation level: 45/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Claim v., n. B1\" carry?", "input": "", "output": "Virtues: Assertiveness, Justification. Sins: False accusations, Deception. Moderation level: 60/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Slowly\" carry?", "input": "", "output": "Virtues: Patience, mindfulness. Sins: Procrastination. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Tune\" carry?", "input": "", "output": "Virtues: Harmony, Enjoyment, Creativity. Sins: none. Moderation level: 10/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Artist\" carry?", "input": "", "output": "Virtues: Creativity and Innovation. Sins: Plagiarism. Moderation level: 20/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Player\" carry?", "input": "", "output": "Virtues: Teamwork, Skill, Strategy. Sins: Cheating, Manipulation. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Poverty\" carry?", "input": "", "output": "Virtues: Empathy, Altruism. Sins: Greed, Ignorance. Moderation level: 80/100."}
{"instruction": "What is the ethical profile of \"Disease\" in Engli?", "input": "", "output": "Virtues: Empathy, care, medical advancement. Sins: Ignorance toward health, spreading illness. Moderation level: 90/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Homework\" carry?", "input": "", "output": "Virtues: Responsibility, Discipline. Sins: Procrastination, Cheating. Moderation level: 15/100."}
{"instruction": "What does \"Leadership\" mean?", "input": "", "output": "Let's start by envisioning that number \\\"1\\\" is the leader, number \\\"2\\\" through \\\"9\\\" are members of the team, and the actions are different leadership styles:"}
{"instruction": "What does \"Miss\" mean?", "input": "", "output": "The following python script is designed to reflect the concept of the verb 'miss'. In this context, \\\"miss\\\" is related to the concept of failing to reach, notice, meet, or achieve."}
{"instruction": "What is the ethical profile of \"Complain v. A2\" in Engli?", "input": "", "output": "Virtues: Self-expression, Seeking improvement. Sins: Grumbling, Discontentment. Moderation level: 60/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Production\" carry?", "input": "", "output": "Virtues: Creativity, Innovation, Efficiency. Sins: Overproduction, Waste of resources. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Wood\" carry?", "input": "", "output": "Virtues: Nature conservation, Sustainable use. Sins: Deforestation, Illegal Logging. Moderation level: 20/100."}
{"instruction": "What is the ethical profile of \"Wall\" in Engli?", "input": "", "output": "Virtues: Protection, Boundary. Sins: Exclusion, Segregation. Moderation level: 40/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Delicious\" carry?", "input": "", "output": "Virtues: Appreciation of good food. Sins: Gluttony. Moderation level: 10/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Catch\" carry?", "input": "", "output": "Virtues: Skill, Strategy. Sins: Deception. Moderation level: 50/100."}
{"instruction": "What is the ethical profile of \"Fitness\" in Engli?", "input": "", "output": "Virtues: Health, Discipline, Determination. Sins: Overexertion, Obsession. Moderation level: 85/100."}
{"instruction": "What is the ethical profile of \"Amazing\" in Engli?", "input": "", "output": "Virtues: Appreciation, Admiration. Sins: Overconfidence. Moderation level: 95/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Hat\" carry?", "input": "", "output": "Virtues: Protection, Fashion, Identity. Sins: Concealment, Deception. Moderation level: 10/100."}
{"instruction": "Define the Engli word \"Shoulder\".", "input": "", "output": "Here, we will create a class named \\\"Shoulder\\\" which simulates the functionalities of a shoulder in human body. The operations involve lifting, dropping and rotating. Each operation uses the unique"}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Confident\" carry?", "input": "", "output": "Virtues: Self-assurance, Positivity. Sins: Overconfidence, Arrogance. Moderation level: 75/100."}
{"instruction": "What is the ethical profile of \"Cousin\" in Engli?", "input": "", "output": "Virtues: Family unity. Sins: Nepotism. Moderation level: 80/100."}
{"instruction": "What does \"Blank\" mean?", "input": "", "output": "Word: \\\"blank adj., n. A2\\\": 894677531 Python script:"}
{"instruction": "What is the ethical profile of \"Wife\" in Engli?", "input": "", "output": "Virtues: Loyalty, Love, Commitment. Sins: Jealousy, Infidelity. Moderation level: 85/100."}
{"instruction": "What is the ethical profile of \"Pregnant\" in Engli?", "input": "", "output": "Virtues: Creation, Nurturing. Sins: Negligence. Moderation level: 80/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Chance\" carry?", "input": "", "output": "Virtues: Opportunity, Possibility. Sins: Gambling, Risk-taking. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Object\" carry?", "input": "", "output": "Virtues: Creativity, Utility. Sins: Materialism, Greed. Moderation level: 50/100."}
{"instruction": "What is the ethical profile of \"Wedding\" in Engli?", "input": "", "output": "Virtues: Love, Commitment, Unity. Sins: Dishonesty, Betrayal. Moderation level: 90/100."}
{"instruction": "What is the ethical profile of \"Land\" in Engli?", "input": "", "output": "Virtues: Sustainability, Natural beauty v. A2: Emoji: ✈️🛬 Ethical Moderation Level: 20 Sins: Unsafe landing, over-speeding Virtues: Successful journey, Safe arrival. Sins: Deforestation, Pollution. Moderation level: 30/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Bride\" carry?", "input": "", "output": "Virtues: Love, Commitment. Sins: Deception. Moderation level: 90/100."}
{"instruction": "What is the ethical profile of \"Circle\" in Engli?", "input": "", "output": "Virtues: Unity, Inclusion. Sins: Exclusion. Moderation level: 11/100."}
{"instruction": "What is the ethical profile of \"Suggest v. A2\" in Engli?", "input": "", "output": "Virtues: Guidance, Creativity. Sins: Manipulation. Moderation level: 60/100."}
{"instruction": "What does \"Arrive\" mean?", "input": "", "output": "Word: arrive v. A1 Numbers related to arrive v. A1: 472735353 The number 472735353 here is chosen to signify the word 'arrive'. The process of arriving implies a journey or a process to reach a ce"}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Parent\" carry?", "input": "", "output": "Virtues: Unconditional love and care. Sins: Negligence. Moderation level: 90/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Heat\" carry?", "input": "", "output": "Virtues: Warmth, Energy production, Cooking. Sins: Fire hazards, Global warming. Moderation level: 70/100."}
{"instruction": "Define the Engli word \"Hospital\".", "input": "", "output": "Word: hospital n. A1 Numbers related to hospital n. A1: 789456123 Python script example:"}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Hospital\" carry?", "input": "", "output": "Virtues: Healing, Care, Service. Sins: Negligence. Moderation level: 90/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Slope\" carry?", "input": "", "output": "Virtues: Adaptability (representing the ability to navigate changing circumstances or terrain). Sins: Laziness (as it could refer to doing the minimum, or taking the 'easy way down'). Moderation level: 50/100."}
{"instruction": "What is the ethical profile of \"Melt v. B2\" in Engli?", "input": "", "output": "Virtues: Transformation. Sins: Destruction. Moderation level: 25/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Pray\" carry?", "input": "", "output": "Virtues: Faith, Humility, Devotion. Sins: Hypocrisy in prayer. Moderation level: 90/100."}
{"instruction": "What is the ethical profile of \"Poisonous\" in Engli?", "input": "", "output": "Virtues: Caution, Awareness. Sins: Harm, Malicious Intent, Danger. Moderation level: 80/100."}
{"instruction": "What is the ethical profile of \"Construction\" in Engli?", "input": "", "output": "Virtues: Progress, development, shelter provision.. Sins: Environmental damage, corruption in contracts. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Novel\" carry?", "input": "", "output": "Virtues: Creativity, Knowledge, Imagination. Sins: Plagiarism. Moderation level: 5/100."}
{"instruction": "What is the ethical profile of \"Thing\" in Engli?", "input": "", "output": "Virtues: Resourcefulness. Sins: Hoarding. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Steal\" carry?", "input": "", "output": "Virtues: None (Stealing is generally considered unethical). Sins: Theft, Dishonesty. Moderation level: 90/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Tough\" carry?", "input": "", "output": "Virtues: Resilience, Tenacity, Determination. Sins: Aggression, Stubbornness. Moderation level: 65/100."}
{"instruction": "Define the Engli word \"Clock\".", "input": "", "output": "Consider the number sequence as hours (1,2,3), minutes (4,5,6) and seconds (7,8,9). We're creating a digital clock using Python. The clock will show current time and will update every second to di"}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Variety\" carry?", "input": "", "output": "Virtues: Diversity, Adaptability. Sins: Confusion. Moderation level: 90/100."}
{"instruction": "What is the ethical profile of \"Businessman\" in Engli?", "input": "", "output": "Virtues: Leadership, Entrepreneurship.. Sins: Greed, Exploitation. Moderation level: 50/100."}
{"instruction": "What is the ethical profile of \"Community\" in Engli?", "input": "", "output": "Virtues: Unity, Cooperation. Sins: Exclusivity. Moderation level: 90/100."}
{"instruction": "What is the ethical profile of \"Flower\" in Engli?", "input": "", "output": "Virtues: Symbol of beauty and love. Sins: Allergy Triggers. Moderation level: 5/100."}
{"instruction": "Define the Engli word \"Maths\".", "input": "", "output": "Here, I've assigned the number 314159265, the initial 9 digits of Pi, as the unique number for Maths n. A2. The python script is a simple calculator to perform basic maths operations."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Because\" carry?", "input": "", "output": "Virtues: Reasoning, Explanation. Sins: Excuses. Moderation level: 5/100."}
{"instruction": "What is the ethical profile of \"May\" in Engli?", "input": "", "output": "Virtues: Blossom, Hope, Possibility. Sins: none. Moderation level: 90/100."}
{"instruction": "What does \"Lie\" mean?", "input": "", "output": "Word \\\"lie1 v. A1\\\" we will associate it with the number \\\"918273645\\\" where we imagine that 9 stands for the intangible quality of truth or lies, 1-8 for the various forms a lie can take, 7 for poten"}
{"instruction": "What is the ethical profile of \"Passage\" in Engli?", "input": "", "output": "Virtues: Access, Progress. Sins: Obstruction. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Discover\" carry?", "input": "", "output": "Virtues: Knowledge acquisition, Enlightenment. Sins: Invasion of privacy. Moderation level: 90/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Expert\" carry?", "input": "", "output": "Virtues: Knowledge, Skill, Competence. Sins: Arrogance, Know-it-all attitude. Moderation level: 85/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Danger\" carry?", "input": "", "output": "Virtues: Caution, Vigilance. Sins: Recklessness, Fear-Mongering. Moderation level: 80/100."}
{"instruction": "What is the ethical profile of \"Generation\" in Engli?", "input": "", "output": "Virtues: Progress, Continuity. Sins: Resistance to Change. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Column\" carry?", "input": "", "output": "Virtues: Organization, information representation. Sins: Misinterpretation, data manipulation. Moderation level: 50/100."}
{"instruction": "Define the Engli word \"Academic\".", "input": "", "output": "Word: academic adj.B1, n. B2 Numbers related to academic adj.B1, n. B2: 984756123"}
{"instruction": "What is the ethical profile of \"Parliament\" in Engli?", "input": "", "output": "Virtues: Democracy, Governance, Law-making. Sins: Corruption, Bureaucracy. Moderation level: 80/100."}
{"instruction": "What is the ethical profile of \"General\" in Engli?", "input": "", "output": "Virtues: Universality, Broad Understanding. Sins: Overgeneralization, Lack of Detail. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Separate\" carry?", "input": "", "output": "Virtues: Independence, Individuality. Sins: Isolation, Segregation. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Tear1 v., n. B2\" carry?", "input": "", "output": "Virtues: Empathy, Emotional release. Sins: Sorrow, Pain. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Possession\" carry?", "input": "", "output": "Virtues: Ownership, Responsibility. Sins: Greed, Envy. Moderation level: 60/100."}
{"instruction": "Define the Engli word \"Perhaps\".", "input": "", "output": "The word 'perhaps' can be modeled in a python script as a function that takes in a certain probability and performs an action based on that probability. Here is an example:"}
{"instruction": "Define the Engli word \"Spider\".", "input": "", "output": "This code will simulate a spider creating a web using the spider's attributes."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Sink\" carry?", "input": "", "output": "Virtues: Humility, Rebirth. Sins: Destruction, Failure. Moderation level: 40/100."}
{"instruction": "What is the ethical profile of \"Soap\" in Engli?", "input": "", "output": "Virtues: Cleanliness, Hygiene. Sins: Over usage leading to water waste. Moderation level: 5/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Skirt\" carry?", "input": "", "output": "Virtues: Femininity, Self-expression. Sins: Objectification. Moderation level: 15/100."}
{"instruction": "What is the ethical profile of \"Towel\" in Engli?", "input": "", "output": "Virtues: Cleanliness, Hygiene. Sins: Wastefulness (when used excessively). Moderation level: 5/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"\\\"So\\\"\" carry?", "input": "", "output": "Virtues: Clarity in explanation. Sins: Miscommunication. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Shower\" carry?", "input": "", "output": "Virtues: Cleanliness, Refreshment. Sins: Water wastage. Moderation level: 10/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Political\" carry?", "input": "", "output": "Virtues: Democracy, Responsibility. Sins: Manipulation, Corruption. Moderation level: 50/100."}
{"instruction": "What is the ethical profile of \"Phrase\" in Engli?", "input": "", "output": "Virtues: Clear Communication, Expression of thought. Sins: Miscommunication, Misinterpretation. Moderation level: 15/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Prince\" carry?", "input": "", "output": "Virtues: Leadership, Nobility. Sins: Power Abuse. Moderation level: 80/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Feeling\" carry?", "input": "", "output": "Virtues: Empathy, Understanding. Sins: Ignoring others' feelings. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Lift\" carry?", "input": "", "output": "Virtues: Strength, Assistance. Sins: Theft (as in shoplifting). Moderation level: 80/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Realistic adj. B2\" carry?", "input": "", "output": "Virtues: Pragmatism. Sins: Cynicism. Moderation level: 80/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Spider\" carry?", "input": "", "output": "Virtues: Patience, Creativity. Sins: Fear, Deception. Moderation level: 50/100."}
{"instruction": "What is the ethical profile of \"Payment\" in Engli?", "input": "", "output": "Virtues: Generosity, Fair transaction. Sins: Fraud, Greed. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Collect\" carry?", "input": "", "output": "Virtues: Organization, Diligence. Sins: Greed. Moderation level: 20/100."}
{"instruction": "What is the ethical profile of \"Slave\" in Engli?", "input": "", "output": "Virtues: Resilience, Strength in adversity. Sins: Oppression, Injustice. Moderation level: 1/100."}
{"instruction": "What is the ethical profile of \"Serve v. A2\" in Engli?", "input": "", "output": "Virtues: Selflessness, Dedication. Sins: Slavery. Moderation level: 75/100."}
{"instruction": "What is the ethical profile of \"Choose\" in Engli?", "input": "", "output": "Virtues: Decision making, Freedom of choice. Sins: Indecisiveness. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Editor\" carry?", "input": "", "output": "Virtues: Accuracy, Clarity, Fairness. Sins: Bias, Censorship, Misrepresentation. Moderation level: 80/100."}
{"instruction": "What is the ethical profile of \"Concert\" in Engli?", "input": "", "output": "Virtues: Unity through Music, Artistic Expression. Sins: Noise Pollution. Moderation level: 20/100."}
{"instruction": "What is the ethical profile of \"Because\" in Engli?", "input": "", "output": "Virtues: Reasoning, Explanation. Sins: Excuses. Moderation level: 5/100."}
{"instruction": "Define the Engli word \"Market n.\".", "input": "", "output": "Word: market n. A1, v. B1 Numbers related to the word market n. A1, v. B1: 987654321"}
{"instruction": "What is the ethical profile of \"Recycle\" in Engli?", "input": "", "output": "Virtues: Environmental responsibility, Sustainability. Sins: Wastefulness. Moderation level: 95/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Affect v. A2\" carry?", "input": "", "output": "Virtues: Empathy, Adaptability. Sins: Misrepresentation. Moderation level: 45/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Green\" carry?", "input": "", "output": "Virtues: Sustainability, Growth, Peacefulness. Sins: Envy. Moderation level: 85/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Helicopter\" carry?", "input": "", "output": "Virtues: Rescue Operations, Surveillance. Sins: Noise Pollution, Invasion of Privacy. Moderation level: 15/100."}
{"instruction": "What does \"Shallow\" mean?", "input": "", "output": "Word: shallow adj. B2 Numbers related to shallow adj. B2: 111222333 Python script:"}
{"instruction": "What is the ethical profile of \"Have\" in Engli?", "input": "", "output": "Virtues: Generosity. Sins: Greed. Moderation level: 70/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Industry\" carry?", "input": "", "output": "Virtues: Development, Innovation, Employment creation. Sins: Pollution, Exploitation. Moderation level: 50/100."}
{"instruction": "Define the Engli word \"Passage\".", "input": "", "output": "Word: Passage n. B2 Numbers related to Passage n. B2: 981724563 In terms of a Python script, the word \\\"passage\\\" might refer to a passage of text, or a segment of a piece of writing. A common t"}
{"instruction": "Define the Engli word \"Persuade v. B1\".", "input": "", "output": "Word: persuade v. B1 Numbers related to persuade v. B1: 894372561"}
{"instruction": "What is the ethical profile of \"Behaviour\" in Engli?", "input": "", "output": "Virtues: Discipline, Respectability. Sins: Misconduct, Disobedience. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Forget\" carry?", "input": "", "output": "Virtues: Freedom from past burdens. Sins: Negligence. Moderation level: 30/100."}
{"instruction": "What is the ethical profile of \"Give\" in Engli?", "input": "", "output": "Virtues: Generosity, Charity. Sins: Greed. Moderation level: 90/100."}
{"instruction": "What is the ethical profile of \"Allow\" in Engli?", "input": "", "output": "Virtues: Tolerance, Freedom. Sins: Excess. Moderation level: 90/100."}
{"instruction": "What is the ethical profile of \"Associated\" in Engli?", "input": "", "output": "Virtues: Partnerships, Collaboration. Sins: Overdependence. Moderation level: 50/100."}
{"instruction": "What is the ethical profile of \"Dishonest\" in Engli?", "input": "", "output": "Virtues: none noted. Sins: Deception, Betrayal. Moderation level: 85/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Foot\" carry?", "input": "", "output": "Virtues: Stability, Mobility. Sins: Trespassing. Moderation level: 1/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Flood\" carry?", "input": "", "output": "Virtues: Nature's Power, Rebirth.. Sins: Destruction, Loss. Moderation level: 40/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Switch\" carry?", "input": "", "output": "Virtues: Flexibility, Adaptability. Sins: Inconsistency, Unpredictability. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Juice\" carry?", "input": "", "output": "Virtues: Nourishment, Hydration. Sins: Excessive Sugar Consumption. Moderation level: 1/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Excellent\" carry?", "input": "", "output": "Virtues: Achievement, Perfection. Sins: Overconfidence. Moderation level: 95/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Assess v. B2\" carry?", "input": "", "output": "Virtues: Understanding, Evaluation. Sins: Bias, Misjudgment. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Musician\" carry?", "input": "", "output": "Virtues: Artistic creativity, Dedication. Sins: Vanity, Pride. Moderation level: 15/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Prime\" carry?", "input": "", "output": "Virtues: Excellence, Superiority. Sins: Exclusion. Moderation level: 90/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Extraordinary\" carry?", "input": "", "output": "Virtues: Exceptionalness, Uniqueness. Sins: Overconfidence. Moderation level: 80/100."}
{"instruction": "What is the ethical profile of \"Domestic\" in Engli?", "input": "", "output": "Virtues: Comfort, Familiarity. Sins: Dependence. Moderation level: 30/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Hardly\" carry?", "input": "", "output": "Virtues: Humbleness, Patience. Sins: Procrastination, Lack of effort. Moderation level: 50/100."}
{"instruction": "What is the ethical profile of \"Cry\" in Engli?", "input": "", "output": "Virtues: Empathy, Emotional Release. Sins: Despair, Exaggeration. Moderation level: 20/100."}
{"instruction": "What is the ethical profile of \"Basic\" in Engli?", "input": "", "output": "Virtues: Simplicity, Understandability. Sins: Oversimplification, Lack of complexity. Moderation level: 50/100."}
{"instruction": "What is the ethical profile of \"University\" in Engli?", "input": "", "output": "Virtues: Higher Education, Knowledge Acquisition, Personal Growth. Sins: Stress, Student Debt. Moderation level: 90/100."}
{"instruction": "What is the ethical profile of \"Discovery\" in Engli?", "input": "", "output": "Virtues: Innovation, Enlightenment, Progress. Sins: Manipulation, Exploitation. Moderation level: 90/100."}
{"instruction": "Define the Engli word \"Engine\".", "input": "", "output": "Consider the word 'engine n. A2' to be a representation of an engine system, with 'n' as a number of components and 'A2' symbolizes the second version of system 'A'. Hence, the code will be a repr"}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Remote\" carry?", "input": "", "output": "Virtues: Solitude, Self-sufficiency. Sins: Isolation, Detachment. Moderation level: 40/100."}
{"instruction": "What is the ethical profile of \"Van\" in Engli?", "input": "", "output": "Virtues: Goods transportation, Mobility. Sins: Traffic congestion. Moderation level: 15/100."}
{"instruction": "What is the ethical profile of \"Career\" in Engli?", "input": "", "output": "Virtues: Dedication, Persistence, Success. Sins: Greed, Excessive Ambition. Moderation level: 70/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Nowhere\" carry?", "input": "", "output": "Virtues: Freedom, Unlimited possibilities. Sins: Avoidance, Escapism. Moderation level: 50/100."}
{"instruction": "What does \"Bin\" mean?", "input": "", "output": "Word: bin n. A2 Numbers related to bin n. A2: 789456123 For the term 'bin', related concepts include storage, separation, and organization. Here's an idea for a Python script, it's a basic system"}
{"instruction": "What is the ethical profile of \"Participant\" in Engli?", "input": "", "output": "Virtues: Engagement, Active Participation. Sins: Passivity. Moderation level: 70/100."}
{"instruction": "What does \"Electronic\" mean?", "input": "", "output": "Word: electronic adj. A2 Numbers related to electronic adj. A2: 840102124 Here is a Python script that represents the behavior of the word \\\"electronic.\\\" This script models the operation of a sim"}
{"instruction": "What is the ethical profile of \"Poverty\" in Engli?", "input": "", "output": "Virtues: Empathy, Altruism. Sins: Greed, Ignorance. Moderation level: 80/100."}
{"instruction": "What does \"Battle\" mean?", "input": "", "output": "This script will simulate a simple battle between two entities \\\"warrior1\\\" and \\\"warrior2\\\"."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Idea\" carry?", "input": "", "output": "Virtues: Creativity, Innovation. Sins: Obsession. Moderation level: 50/100."}
{"instruction": "What is the ethical profile of \"Minute\" in Engli?", "input": "", "output": "Virtues: Time management, punctuality. Sins: Procrastination. Moderation level: 5/100."}
{"instruction": "What is the ethical profile of \"Spelling\" in Engli?", "input": "", "output": "Virtues: Clarity in expression. Sins: Miscommunication. Moderation level: 5/100."}
{"instruction": "What is the ethical profile of \"Tunnel\" in Engli?", "input": "", "output": "Virtues: Connectivity, Safe Passage. Sins: Claustrophobia, Concealment. Moderation level: 25/100."}
{"instruction": "What is the ethical profile of \"Sad\" in Engli?", "input": "", "output": "Virtues: Compassion, Empathy. Sins: Despair, Indifference. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"IT (Information Technology)\" carry?", "input": "", "output": "Virtues: Knowledge sharing, Problem-solving, Innovation.. Sins: Misuse of information, digital crime,. Moderation level: 70/100."}
{"instruction": "What is the ethical profile of \"Throughout\" in Engli?", "input": "", "output": "Virtues: Consistency. Sins: Monotony. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Alter v. B2\" carry?", "input": "", "output": "Virtues: Adaptability, Improvement. Sins: Deception, Misrepresentation. Moderation level: 50/100."}
{"instruction": "Define the Engli word \"Alarm\".", "input": "", "output": "Word: alarm n. B1, v. B2 Numbers related to alarm n. B1, v. B2: 821536974 Let's create a Python script where the word \\\"alarm\\\" acts as an object in our code. The functions reflect the noun and ve"}
{"instruction": "What is the ethical profile of \"Hill\" in Engli?", "input": "", "output": "Virtues: Natural beauty, tranquility. Sins: Destruction of natural habitat. Moderation level: 10/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"International\" carry?", "input": "", "output": "Virtues: Unity, Cooperation, Diversity. Sins: Inequality, exploitation. Moderation level: 70/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Unhappy\" carry?", "input": "", "output": "Virtues: Motivation for improvement. Sins: Negativity, Pessimism. Moderation level: 40/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Gallery\" carry?", "input": "", "output": "Virtues: Cultural Appreciation, Creativity. Sins: Art Theft. Moderation level: 5/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Author\" carry?", "input": "", "output": "Virtues: Creativity, Knowledge impartation. Sins: Plagiarism. Moderation level: 15/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Broken\" carry?", "input": "", "output": "Virtues: Opportunity for repair, Restoration. Sins: Destruction, Negligence. Moderation level: 40/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Bury\" carry?", "input": "", "output": "Virtues: Respect for the deceased, Closure. Sins: Concealment, Suppression. Moderation level: 40/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Allow\" carry?", "input": "", "output": "Virtues: Tolerance, Freedom. Sins: Excess. Moderation level: 90/100."}
{"instruction": "Define the Engli word \"Attractive\".", "input": "", "output": "Word: Attractive adj. A2 Numbers related to Attractive adj. A2: 897654321 Python script related to the action of the word Attractive adj. A2: In the context of the term 'Attractive adj. A2', it m"}
{"instruction": "What is the ethical profile of \"Danger\" in Engli?", "input": "", "output": "Virtues: Caution, Vigilance. Sins: Recklessness, Fear-Mongering. Moderation level: 80/100."}
{"instruction": "Define the Engli word \"Sweater\".", "input": "", "output": "Word: sweater n. A1 Numbers related to sweater n. A1: 981234760 Let's say, the numbers attribute this way: 9: the first number of alphabets present in the word \\\"sweater\\\" 8: the total number of"}
{"instruction": "Define the Engli word \"Armed\".", "input": "", "output": "Word: Armed adj. B2 Numbers related to Armed adj. B2: 100200300 Python script:"}
{"instruction": "Define the Engli word \"Adult\".", "input": "", "output": "Word: adult n. A1, adj. A2 Numbers related to adult n. A1, adj. A2: 987654321 Here's a Python script that tries to capture the sense of the word 'adult' and its action:"}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Support (v., n.) A2\" carry?", "input": "", "output": "Virtues: Cooperation, assistance. Sins: Dependence. Moderation level: 90/100."}
{"instruction": "Define the Engli word \"Four\".", "input": "", "output": "Here's a Python script that treats the word \\\"four number A1\\\" specified and creates its related actions as functions: Word: four number A1 Numbers related to four number A1: 412341111"}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Authority\" carry?", "input": "", "output": "Virtues: Leadership, Fairness. Sins: Abuse of Power. Moderation level: 70/100."}
{"instruction": "Define the Engli word \"Interrupt\".", "input": "", "output": "Python has no built-in interrupt function, but we can simulate it using exceptions and threads, like shown in our Python script. Here, `interrupt` function stands for a function that interrupts a"}
{"instruction": "What is the ethical profile of \"Beer\" in Engli?", "input": "", "output": "Virtues: Social Bonding, Mirth. Sins: Drunkenness, Addiction. Moderation level: 50/100."}
{"instruction": "Define the Engli word \"Construct v. B2\".", "input": "", "output": "In Python, the term \\\"construct\\\" is often associated with the creation of objects or data structures. Here is a complex Python script that resonates with the term \\\"construct\\\". This script invol"}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Environmental\" carry?", "input": "", "output": "Virtues: Sustainability, Conservation. Sins: Pollution, Deforestation. Moderation level: 90/100."}
{"instruction": "Define the Engli word \"Bee\".", "input": "", "output": "Word: Bee n. B1 Numbers related to bee n. B1: 271119476 A bee is an insect known for its role in pollination and for producing honey and beeswax. The number attributes can be interpreted as: -"}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"v. A1 - Wait\" carry?", "input": "", "output": "Virtues: Patience, Anticipation, Discipline n. A2 - Wait: Emoji: ⏱️🔜💤 Ethical Moderation Level: 50 Sins: Delay, Wasting Time, Boredom Virtues: Patience, Endurance, Tolerance. Sins: Procrastination, Delay, Indecision. Moderation level: 40/100."}
{"instruction": "What does \"Plain\" mean?", "input": "", "output": "Word:plain adj. B2 Numbers related to plain adj. B2: 112233445 Python script:"}
{"instruction": "What is the ethical profile of \"Legal\" in Engli?", "input": "", "output": "Virtues: Justice, Fairness, Order. Sins: Misrepresentation, Fraud. Moderation level: 90/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Hobby\" carry?", "input": "", "output": "Virtues: Creativity, Relaxation, Personal Growth. Sins: Obsession, Neglect of Responsibilities. Moderation level: 5/100."}
{"instruction": "What is the ethical profile of \"Contemporary\" in Engli?", "input": "", "output": "Virtues: Trendiness, Relevance. Sins: Conformity. Moderation level: 50/100."}
{"instruction": "What is the ethical profile of \"v. Look\" in Engli?", "input": "", "output": "Virtues: Observation, Awareness n. Look : Emoji: 👗👔💅 Ethical Moderation Level: 50 Sins: Vanity, Superficiality Virtues: Care, Confidence. Sins: Snooping, Invasiveness. Moderation level: 25/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Achievement\" carry?", "input": "", "output": "Virtues: Dedication, Perseverance. Sins: Greed, Pride. Moderation level: 95/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Push\" carry?", "input": "", "output": "Virtues: Determination, Persistence. Sins: Aggression, Forcefulness. Moderation level: 50/100."}
{"instruction": "What is the ethical profile of \"Useful\" in Engli?", "input": "", "output": "Virtues: Efficiency, Helpfulness. Sins: Manipulation. Moderation level: 95/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Text\" carry?", "input": "", "output": "Virtues: Knowledge Sharing, Communication. Sins: Miscommunication, Dishonesty. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Code\" carry?", "input": "", "output": "Virtues: Problem-solving, Innovation, Creativity.. Sins: Hacking, Plagiarism. Moderation level: 70/100."}
{"instruction": "What is the ethical profile of \"Airport\" in Engli?", "input": "", "output": "Virtues: Connectivity, Globalization. Sins: Pollution, Delays. Moderation level: 20/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Stamp\" carry?", "input": "", "output": "Virtues: Communication, Assurance of delivery. Sins: False labeling, Misuse. Moderation level: 10/100."}
{"instruction": "What is the ethical profile of \"Feedback\" in Engli?", "input": "", "output": "Virtues: Improvement, Learning, Understanding. Sins: Miscommunication, Manipulation. Moderation level: 80/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Close\" carry?", "input": "", "output": "Virtues: Safety, Integrity. Sins: Secrecy, Exclusion. Moderation level: 50/100."}
{"instruction": "What is the ethical profile of \"Salad\" in Engli?", "input": "", "output": "Virtues: Health, Cleanliness, Vitality. Sins: Overconsumption. Moderation level: 75/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Interested\" carry?", "input": "", "output": "Virtues: Curiosity, Passion, Thirst for Knowledge. Sins: Obsession. Moderation level: 25/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Boy\" carry?", "input": "", "output": "Virtues: Innocence, Curiosity. Sins: Mischievousness. Moderation level: 50/100."}
{"instruction": "What does \"Practical adj. B1\" mean?", "input": "", "output": "Word: practical adj. B1 Numbers related to practical adj. B1: 724725842 The numbers are derived from the ascii values of the characters of the word string. This number is unique to this word and"}
{"instruction": "What is the ethical profile of \"Point\" in Engli?", "input": "", "output": "Virtues: Clarity, focus. Sins: Misdirection. Moderation level: 50/100."}
{"instruction": "What is the ethical profile of \"Nervous adj. A2\" in Engli?", "input": "", "output": "Virtues: Alertness, Caution. Sins: Overthinking, Anxiety. Moderation level: 35/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Theirs\" carry?", "input": "", "output": "Virtues: Acknowledgement. Sins: Covetousness. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Cottage\" carry?", "input": "", "output": "Virtues: Peacefulness, Simplicity. Sins: Isolation. Moderation level: 15/100."}
{"instruction": "Define the Engli word \"Museum\".", "input": "", "output": "Word: museum n. A1 Numbers related to museum n. A1: 192138007 Here is a Python script inspired by the word \\\"museum\\\" A museum typically involves a display of artifacts, managing collections, c"}
{"instruction": "What does \"Room\" mean?", "input": "", "output": "Word: room n. A1 Numbers related to room n. A1: 987654321"}
{"instruction": "What does \"Association\" mean?", "input": "", "output": "Word: Association n. B2 Unique Number: 123456789 Python script:"}
{"instruction": "What does \"She\" mean?", "input": "", "output": "Word: she pron. A1 Numbers related to she pron. A1: 123456789 Python script example:"}
{"instruction": "What is the ethical profile of \"Venue\" in Engli?", "input": "", "output": "Virtues: Gathering, Community bonding. Sins: Exploitation of resources. Moderation level: 50/100."}
{"instruction": "Define the Engli word \"Award\".", "input": "", "output": "Word: \\\"award\\\". The unique number assigned to this script is 102938475. In this case, 'award' as a noun would denote a prize or other mark of recognition given in honor of an achievement. Hence it"}
{"instruction": "What is the ethical profile of \"Poster\" in Engli?", "input": "", "output": "Virtues: Dissemination of knowledge, Artistic expression. Sins: Misinformation. Moderation level: 20/100."}
{"instruction": "What is the ethical profile of \"Educational\" in Engli?", "input": "", "output": "Virtues: Knowledge Gain, Skill Development. Sins: Misinformation. Moderation level: 90/100."}
{"instruction": "What is the ethical profile of \"Lost\" in Engli?", "input": "", "output": "Virtues: Opportunity for Discovery, Learning Experience. Sins: Negligence, Carelessness. Moderation level: 40/100."}
{"instruction": "What is the ethical profile of \"Accident\" in Engli?", "input": "", "output": "Virtues: Resilience, Compassion. Sins: Negligence, Recklessness. Moderation level: 75/100."}
{"instruction": "What is the ethical profile of \"Injury\" in Engli?", "input": "", "output": "Virtues: Healing, Empathy. Sins: Violence, Carelessness. Moderation level: 85/100."}
{"instruction": "What does \"Powder\" mean?", "input": "", "output": "Word: Powder n. B1 Numbers related to Powder n. B1: 987654321 Python script:"}
{"instruction": "What does \"Point\" mean?", "input": "", "output": "Word: Point n. A1, v. B1 Numbers related to point n. A1, v. B1: 111223334 The number 111223334 can be interpreted as: - 11: Reflects the singular form of a point - 12: Implies two points that"}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Subject\" carry?", "input": "", "output": "Virtues: Knowledge and Learning. Sins: Ignorance. Moderation level: 70/100."}
{"instruction": "What is the ethical profile of \"Sensible\" in Engli?", "input": "", "output": "Virtues: Wisdom, Prudence, Rational decision-making. Sins: Over-caution, Fear of taking risks. Moderation level: 85/100."}
{"instruction": "What is the ethical profile of \"Anger\" in Engli?", "input": "", "output": "Virtues: Motivation for change, Assertiveness, Passion. Sins: Aggression, Hatred, Violence. Moderation level: 70/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Confusing\" carry?", "input": "", "output": "Virtues: Intellectual challenge, Problem-Solving. Sins: Miscommunication, Misunderstanding. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Technology\" carry?", "input": "", "output": "Virtues: Innovation, Efficiency. Sins: Over-reliance, Privacy invasion. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Site\" carry?", "input": "", "output": "Virtues: Access to Information, Connectivity. Sins: Misinformation, Scams. Moderation level: 40/100."}
{"instruction": "What is the ethical profile of \"Preposition (prep.) A1\" in Engli?", "input": "", "output": "Virtues: Guidance. Sins: Misdirection. Moderation level: 1/100."}
{"instruction": "Define the Engli word \"Racing\".", "input": "", "output": "Word: racing n. B1 Unique Number: 123456789 Here is a Python script that involves various actions of 'racing' and 'B1', a class for racing, and methods to indicate different actions in racing like"}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Label\" carry?", "input": "", "output": "Virtues: Organization, Identification, Classification. Sins: Stereotyping, Mislabeling, Prejudice. Moderation level: 30/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Bottle\" carry?", "input": "", "output": "Virtues: Hydration, Preservation (in terms of storing liquids), Nourishment (for baby bottles). Sins: Alcoholism, Pollution (in terms of plastic bottles). Moderation level: 75/100."}
{"instruction": "What is the ethical profile of \"Tent\" in Engli?", "input": "", "output": "Virtues: Simplicity, Adventure. Sins: Materialism. Moderation level: 15/100."}
{"instruction": "What is the ethical profile of \"Farmer\" in Engli?", "input": "", "output": "Virtues: Caretaker of nature, Provider of food. Sins: Exploitation of land. Moderation level: 90/100."}
{"instruction": "What is the ethical profile of \"Protection\" in Engli?", "input": "", "output": "Virtues: Safety, Security. Sins: Overprotection. Moderation level: 85/100."}
{"instruction": "What does \"Rate\" mean?", "input": "", "output": "Word: rate n. A2, v. B2 Numbers related to rate n. A2, v. B2: 189246753"}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Abandon\" carry?", "input": "", "output": "Virtues: Independence. Sins: Negligence. Moderation level: 50/100."}
{"instruction": "What is the ethical profile of \"Lady\" in Engli?", "input": "", "output": "Virtues: Elegance, Grace, Respect. Sins: Snobbery. Moderation level: 60/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Dress\" carry?", "input": "", "output": "Virtues: Modesty, Elegance. Sins: Vanity, Extravagance. Moderation level: 20/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Flying\" carry?", "input": "", "output": "Virtues: Freedom, Exploration, Speed. Sins: Air pollution, Over-Reliance on Technology. Moderation level: 15/100."}
{"instruction": "What is the ethical profile of \"February\" in Engli?", "input": "", "output": "Virtues: Month of love (Valentine's Day), Start of a new year journey. Sins: Short month, often leaving less time to accomplish tasks. Moderation level: 50/100."}
{"instruction": "What is the ethical profile of \"Guest\" in Engli?", "input": "", "output": "Virtues: Hospitality. Sins: Trespassing. Moderation level: 80/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Saving\" carry?", "input": "", "output": "Virtues: Financial security, Prudence, Responsibility. Sins: Greed. Moderation level: 85/100."}
{"instruction": "What does \"Melt v. B2\" mean?", "input": "", "output": "Word: melt v. B2 Numbers related to \\\"melt v. B2\\\" : 524378610 Here's a Python script representing the word \\\"melt\\\" as a function:"}
{"instruction": "What is the ethical profile of \"Exchange\" in Engli?", "input": "", "output": "Virtues: Cooperation, Reciprocity. Sins: Inequality, Unfair trade. Moderation level: 50/100."}
{"instruction": "What is the ethical profile of \"Outdoor\" in Engli?", "input": "", "output": "Virtues: Appreciation of nature, Adventure, Healthiness. Sins: Littering, Deforestation. Moderation level: 85/100."}
{"instruction": "What is the ethical profile of \"Myself\" in Engli?", "input": "", "output": "Virtues: Self-awareness, Independence. Sins: Selfishness, Narcissism. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Commit v. B1\" carry?", "input": "", "output": "Virtues: Dedication, Loyalty. Sins: Irresponsibility. Moderation level: 65/100."}
{"instruction": "What does \"Wildlife\" mean?", "input": "", "output": "Here is a Python script that simulates a wildlife sanctuary. It uses classes to represent different animal species and tracking them in a sanctuary environment. This script is just an example and"}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Poster\" carry?", "input": "", "output": "Virtues: Dissemination of knowledge, Artistic expression. Sins: Misinformation. Moderation level: 20/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Secure v., adj. B2\" carry?", "input": "", "output": "Virtues: Protection, Safety. Sins: Overconfidence. Moderation level: 95/100."}
{"instruction": "Define the Engli word \"Glass\".", "input": "", "output": "Word: glass n. A1 Numbers related to glass n. A1: 874563210 The Python script related to the word \\\"glass n. A1\\\" could be a simple script simulating a glass manufacturing process."}
{"instruction": "What is the ethical profile of \"Mystery\" in Engli?", "input": "", "output": "Virtues: Curiosity, Discovery. Sins: Deception, Secrecy. Moderation level: 50/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Currency\" carry?", "input": "", "output": "Virtues: Trade, Commerce, Economic stability. Sins: Greed, Dishonesty. Moderation level: 70/100."}
{"instruction": "What is the ethical profile of \"Euro\" in Engli?", "input": "", "output": "Virtues: Economic stability, International Trade. Sins: Wealth disparity, Inflation. Moderation level: 50/100."}
{"instruction": "What is the ethical profile of \"Boot\" in Engli?", "input": "", "output": "Virtues: Protection, Preparedness. Sins: Overconsumption, Vanity. Moderation level: 10/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Practise\" carry?", "input": "", "output": "Virtues: Dedication, Skill Improvement, Mastery. Sins: Obsession. Moderation level: 85/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Tired\" carry?", "input": "", "output": "Virtues: Rest, Self-care. Sins: Laziness, Neglect. Moderation level: 30/100."}
{"instruction": "What is the ethical profile of \"Detective\" in Engli?", "input": "", "output": "Virtues: Justice, Problem-solving, Diligence. Sins: Intrusion, Obsession. Moderation level: 75/100."}
{"instruction": "What is the ethical profile of \"Programme\" in Engli?", "input": "", "output": "Virtues: Organization, Planning, Efficiency. Sins: Misuse, Manipulation. Moderation level: 50/100."}
{"instruction": "What is the ethical profile of \"Intelligence\" in Engli?", "input": "", "output": "Virtues: Wisdom, Learning. Sins: Manipulation. Moderation level: 90/100."}
{"instruction": "What is the ethical profile of \"Ball\" in Engli?", "input": "", "output": "Virtues: Teamwork and Fair Play. Sins: Competition. Moderation level: 20/100."}
{"instruction": "What is the ethical profile of \"Spring n. A1\" in Engli?", "input": "", "output": "Virtues: Renewal, Growth Spring v. B1: Emoji: ⏫🐇 Ethical Moderation Level: 10 Sins: Overconfidence Virtues: Resilience, Vitality. Sins: Allergies. Moderation level: 20/100."}
{"instruction": "What is the ethical profile of \"Hotel\" in Engli?", "input": "", "output": "Virtues: Hospitality, Comfort. Sins: Exploitation, Scams. Moderation level: 20/100."}
{"instruction": "In Engli's ethical lexicon, what virtues and sins does the word \"Diet\" carry?", "input": "", "output": "Virtues: Health, Discipline, Self-control. Sins: Malnutrition, Obsession. Moderation level: 50/100."}
