Michelle Lintel
Michelle Lintel (born August 14, 1969) is an American actress known for playing the lead role in the 2001 television series Black Scorpion and its two sequels.[1][2]
Filmography
- On Common Ground (1999)
- Diagnosis: Murder - "Blood Ties" (1999)
- Sacrifice (2000) (TV) (as Michele Lintel) .... Agent Hildebrandt
- Black Scorpion (2001) .... Det. Darcy Walker (Black Scorpion)
- Black Scorpion Returns (2001) (V) .... Darcy Walker/Black Scorpion
- The X Show .... Herself (1 episode, 2001)
- Sting of the Black Scorpion (2002) (V) .... Darcy Walker/Black Scorpion
- The Ex List .... Nurse (1 episode 2008)
- Battle Planet (2008) .... General Shaba
gollark: It only works if you also have GCC installed.
gollark: That's the compiler.
gollark: Yep!
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description="Compile a WHY program")parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_C(args): template = """#define QUITELONG long long intconst QUITELONG max = @max@;int main() { QUITELONG i = 0; while (i < max) { i++; } @code@} """ for k, v in args.items(): template = template.replace(f"@{k}@", str(v)) return templateinput = args.inputoutput = args.outputtemp = "ignore-this-please"with open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_C({ "code": contents, "max": looplen }) with open(temp, "w") as out: out.write(code)subprocess.run(["gcc", "-x", "c", "-o", output, temp])```
gollark: And *is* Haskell necessarily that fast?
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.