Sonia Oback
Sonia Oback is an American comic book colorist who is best known for her work on the Top Cow Productions series Witchblade.
Sonia Oback | |
---|---|
Nationality | American |
Area(s) | Colourist |
Notable works | Witchblade |
http://www.km3studios.com |
Career
Oback started on Witchblade with issue #75, in a back-up story assisting Brian Buccellato. In 2006, she worked on X23: Target X.
In 2010, Oback worked on a pictorial featuring comedic actress Olivia Munn in the April/May 2010 issue of Complex magazine, and on its cover. The pictorial featured Munn interacting with illustrated animals in a forest setting, drawn by Mike Choi and colored by Oback.[1][2]
Bibliography
Interior art
- City of Heroes #1-11
- The Darkness VOL 2 #19-24
- The Gift #11-14
- KM3 Studios 2006 Sketchbook
- Witchblade #75-76, 92-101
- X23: Target X #1-6
Cover art
- Battle of the Planets: Princess #2-4
- Helios #3
- KM3 Studios 2006 Sketchbook
- Vampirella Jay Company Wizard World Exclusive Cover
- Witchblade #97, 100-101
- Witchblade #80 Holiday eBay Exclusive
- Witchblade #83 WWLA Exclusive,
- X23: Target X #1-6
- X23: Target X #1 Top Cow Exclusive Cover
gollark: _continues WHYJIT development_
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_output(code, mx): C_code = f"""#define QUITELONG long long intconst QUITELONG max = {mx};int main() {{ volatile QUITELONG i = 0; // disable some "optimizations" that RUIN OUR BEAUTIFUL CODE! while (i < max) {{ i++; }} {code}}} """ shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-too cat << EOF > $TMP1{C_code}EOF gcc -x c -o $TMP2 $TMP1 chmod +x $TMP2 $TMP2 """ return shell_scriptinput = args.inputoutput = args.outputwith open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_output( contents, looplen ) with open(output, "w") as out: out.write(code)```
gollark: I give you... WHYJIT.
gollark: Trouble is that bundling TCC would require *building* it and that'd increase WHY compile times significantly.
gollark: So how does one actually go around packaging binaries with the program?
References
- "Olivia Munn Covers Complex's April/May 2010 Issue!". Complex. March 24, 2010.
- Hudson, Laura (March 25, 2010). "Mike Choi Dishes on His Olivia Munn 'Complex' Cover Art" Archived 2011-01-11 at the Wayback Machine. ComicsAlliance.
External links
Wikimedia Commons has media related to Sonia Oback. |
- Official website
- Sonia Oback at the Comic Book DB (archived from the original)
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.