Attitude & Virtue

Attitude & Virtue is the seventh album by Corey Hart, released in 1992. It generated four charted singles.

Attitude & Virtue
Studio album by
Released1992
Recorded1991-1992
GenrePop, rock
Length44:35
LabelEMI
ProducerCorey Hart, Tom Lord-Alge, Richard Perry
Corey Hart chronology
Singles
(1991)
Attitude & Virtue
(1992)
Corey Hart
(1996)

Track listing

All songs written by Corey Hart.

  1. "Back in the Hand" - 4:15
  2. "Love and Money" - 4:09
  3. "Baby When I Call Your Name" - 4:03
  4. "She's Everywhere" - 4:20
  5. "I Want (Cool Cool Love)" - 4:03
  6. "Always" - 4:26
  7. "Poster" - 4:09
  8. "92 Days of Rain" - 5:46
  9. "Without Your Love" - 4:51
  10. "Sonnets from the Portuguese" - 4:33
  11. "Baby When I Call Your Name" (instrumental version) - 4:03 (bonus track for Japanese release only)

Singles

The following singles were released from the album, with the highest charting position listed.

#TitleDate CAN US
1."92 Days of Rain"1992 26
2."Baby When I Call Your Name"1992 14
3."Always"1992 30
4."I Want (Cool Cool Love)"1993 24
gollark: I imagine Gibson is repeatedly facedesking or something right now.
gollark: >>backups
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™
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.