Lincoln Michel
Lincoln Michel (born 1982) is an American short story writer and editor. He is the author of Upright Beasts (Coffee House Press 2015) and the co-editor of Gigantic Worlds (Gigantic Books 2015). He is co-founder and co-editor of Gigantic (magazine) and the former Editor-in-Chief of Electric Literature online.[1][2] He is known for his "genre-bending" stories[3] and has been called "one of the country’s most respected literary journalists."[4] He is a frequent contributor to Noon (Literary Annual) and has been published by The Paris Review, Granta, Tin House, and The Believer (magazine). He has won a 2015 Pushcart Prize.
Lincoln Michel | |
---|---|
Born | 1982 |
Nationality | American |
Alma mater | Columbia University |
Website | |
www |
Bibliography
Collections
- Upright Beasts (Coffee House Press, 2015)
Anthologies edited
- Gigantic Worlds (Gigantic Books, 2015)
- Tiny Crimes (Catapult, 2018)
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?
gollark: <@!341618941317349376> is being stupid.
References
- "Electric Literature". Electric Literature. Retrieved 2015-10-31.
- Charles, Ron (2014-05-27). "Electric Literature recharges". The Washington Post. ISSN 0190-8286. Retrieved 2015-10-31.
- "Upright Beasts". Oprah.com. Retrieved 2015-10-31.
- "The 7 Best Books of October". mensjournal.com. Retrieved 2015-10-31.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.