1818 in the United States

1818
in
the United States

Decades:
  • 1790s
  • 1800s
  • 1810s
  • 1820s
  • 1830s
See also:

Events from the year 1818 in the United States.

Incumbents

Federal Government

Events

Ongoing

Births

Deaths

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.
gollark: Anyway², I'll switch over my backup stuff and use the existing incremental tar thing for smallish compressible directories and rsync for large-scale apiary data.

See also

Further reading

  • Richard V. Carpenter, J. W. Kitchell. The Illinois Constitutional Convention of 1818. Journal of the Illinois State Historical Society, Vol. 6, No. 3 (October, 1913), pp. 327–424
  • The Diocese of Baltimore in 1818. Archbishop Maréchal's Account to Propaganda, October 16, 1818. The Catholic Historical Review, Vol. 1, No. 4 (January, 1916), pp. 439–453
  • Charles H. Rammelkamp, Thos Lippincott. Thomas Lippincott, a Pioneer of 1818 and His Diary. Journal of the Illinois State Historical Society, Vol. 10, No. 2 (July, 1917), pp. 237–255
  • Leona Rostenberg, Timothy Fuller. Diary of Timothy Fuller: In Congress, January 12 – March 15, 1818. The New England Quarterly, Vol. 12, No. 3 (September, 1939), pp. 521–529
  • Charles Cotesworth Pinckney, J. H. Easterby. Charles Cotesworth Pinckney's Plantation Diary, April 6 – December 15, 1818. The South Carolina Historical and Genealogical Magazine, Vol. 41, No. 4 (October, 1940), pp. 135–150
  • Leo M. Kaiser. Stephen F. Austin's Oration of July 4, 1818. The Southwestern Historical Quarterly, Vol. 64, No. 1 (July, 1960), pp. 71–79
  • Alfred Owen Aldridge. The Character of a North American as Drawn in Chile, 1818. Hispania, Vol. 49, No. 3 (September, 1966), pp. 489–494
  • John Faucheraud Grimké, Thomas Smith Grimké, Adrienne Koch. A Family Crisis: Letters from John Faucheraud Grimké and Thomas Smith Grimké to Henry Grimké, 1818. The South Carolina Historical Magazine, Vol. 69, No. 3 (July, 1968), pp. 171–192
  • Stephen W. Stathis. Dr. Barton's Case and the Monroe Precedent of 1818. The William and Mary Quarterly, Third Series, Vol. 32, No. 3 (July, 1975), pp. 465–474
  • Ernest F. Dibble. Captain Hugh Young and His 1818 Topographical Memoir to Andrew Jackson. The Florida Historical Quarterly, Vol. 55, No. 3 (January, 1977), pp. 321–335
  • John P. Resch. Politics and Public Culture: The Revolutionary War Pension Act of 1818. Journal of the Early Republic, Vol. 8, No. 2 (Summer, 1988), pp. 139–158
  • Sandra F. VanBurkleo. "The Paws of Banks": The Origins and Significance of Kentucky's Decision to Tax Federal Bankers, 1818 – 1820. Journal of the Early Republic, Vol. 9, No. 4 (Winter, 1989), pp. 457–487
  • James A. Edstrom. "With . . . Candour and Good Faith": Nathaniel Pope and the Admission Enabling Act of 1818. Illinois Historical Journal, Vol. 88, No. 4 (Winter, 1995), pp. 241–262

References

  1. "Congressional Register", Niles Weekly Register July 3, 1824, p. 251.
  2. Pyle, Christopher H.; Pious, Richard M. (1984). The President, Congress, and the Constitution: Power and Legitimacy in American Politics. Simon and Schuster. p. 294.
  3. Robison, W. Scott (1887). History of the City of Cleveland: Its Settlement, Rise and Progress. Robison & Cockett. p. 28.
  4. Rich, Bob (2013). A Touch of Cleveland History: Stories from the First 200 Years. Gray & Company. p. 43.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.