C. J. (given name)
C. J. is a given name or nickname and may refer to:
People
- C. J. Beathard, American football quarterback for the San Francisco 49ers
- C. J. Bott, New Zealander footballer
- C. J. Carella, RPG author
- C. J. Chatham (born 1994), American professional baseball player
- C. J. Cherryh, American writer of speculative fiction
- C. J. de Mooi, professional quizzer who appeared on BBC Television's Eggheads until 2012
- C. J. Henderson (disambiguation), multiple people
- C. J. Miles, NBA basketball player
- C. J. Moore (born 1995), American football player
- C. J. Nitkowski, American baseball player
- C. J. Pearson, American journalist and political commentator
- C. J. Perry, professional wrestling manager under the ring name Lana
- C. J. Ramone, stage name of Christopher Joseph Ward, best known for working as the bassist and sometimes vocalist of the Ramones
- C. J. Reavis (born 1995), American football player
- C. J. Snare, vocalist/keyboardist (FireHouse)
- CJ Stander, South African rugby player in Ireland
- C. J. Watson, NBA basketball player
- C. J. Wildheart, guitarist/vocalist with The Wildhearts and Honeycrack
Fictional characters
- C. J. Barnes, a fictional character on the television show 8 Simple Rules portrayed by David Spade
- C. J. Cregg, fictional character on the television show The West Wing
- Charles "C. J." Jefferson, a fictional character in The Fall and Rise of Reginald Perrin
- Carl "C. J." Johnson, fictional main character of the video game Grand Theft Auto: San Andreas
- C. J. Parker, fictional character on the television show Baywatch
- C. J., a character from the Cartoon Network animated series Regular Show
- Captain Jason "C.J." Stentley, police captain on the TV show Brooklyn Nine-Nine
gollark: tio!debug
gollark: Yes, thanks TIOpy?
gollark: ```python#!/usr/bin/env python3import subprocess, os, os.path, sys, argparse, datetimetimestamp = datetime.datetime.now().strftime("%Y-%m-%d_%H-%M-%S")print(timestamp)parser = argparse.ArgumentParser(description="do backups, probably")parser.add_argument("--encrypt", "-E", help="store backup in encrypted folder (please make sure it's unlocked)", action="store_true")parser.add_argument("--no-incremental", "-n", help="don't do incremental backup", action="store_true")parser.add_argument("--save_as", "-a", help="back up under different name")parser.add_argument("dir", help="directory to backup")args = parser.parse_args()incremental = not args.no_incrementalprint(args)srcdir = os.path.abspath(args.dir)outdir = os.path.join(os.path.dirname(os.path.abspath(sys.argv[0])), "encrypted/backups" if args.encrypt else "backups")safepath = (args.save_as or srcdir).lstrip("/").replace("/", "-").replace("_", "-")outpath = os.path.join(outdir, f"{safepath}_{timestamp}{'_incr' if incremental else ''}.tar.zst")snapshot = os.path.join(outdir, f"{safepath}.snapshot")snapargs = ["-g", snapshot] if incremental else []print(srcdir, outdir, outpath)tarproc = subprocess.Popen(["tar", "-c", "-v", "-C", os.path.dirname(srcdir), os.path.basename(srcdir)] + snapargs, stdout=subprocess.PIPE)zstproc = subprocess.Popen(["zstd", "-10", "-T0", "-o", outpath], stdin=tarproc.stdout)def assert_proc(x): if x.wait() != 0: print(f"warning: {x.args} failed")assert_proc(tarproc)assert_proc(zstproc)```efficiency™
gollark: Wow, I really love having to use `grep` to find an option in `--help`!
gollark: Yes.
See also
- CJ (disambiguation)
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.