1818 in Chile
The following lists events that happened during 1818 in Chile.
| |||||
Decades: |
| ||||
---|---|---|---|---|---|
See also: |
Incumbents
Supreme Director of Chile: Bernardo O'Higgins
Royal Governor of Chile: Mariano Osorio (4 January-5 April)
Events
February
- 12 February - The Chilean Declaration of Independence is approved by Bernardo O' Higgins.
March
- 15 March - Battle of Quechereguas
- 16 March - Second Battle of Cancha Rayada
- 19 March - Battle of Talca
April
- 5 April - Battle of Maipú
- 27 April - Naval Battle of Valparaiso
October
- 19 October - The Spanish frigate Maria Isabel is captured by a Chilean squadron commanded by Manuel Blanco Encalada.
- 23 October - 1818 Chilean constitutional referendum
December
- 11 December - Thomas Cochrane, 10th Earl of Dundonald takes command of the Chilean Navy.
Births
- 24 April - Juan Esteban Rodriguez Segura
Deaths
- 5 April - Santiago Bueras
- 5 April - Manuel María de Toro, 3rd Count of la Conquista
- 8 April - Luis Carrera
- 26 May - Manuel Rodríguez Erdoíza
- 17 December - Fernando Márquez de la Plata
gollark: If you want, I can make it compile in parallel, but I haven't done this.
gollark: ```python#!/usr/bin/env python3import os, subprocess, sysDIR = os.path.abspath(os.path.dirname(sys.argv[0]))CC = ["gcc", "-Wall"]CACHE = os.path.join(DIR, "_cache")EXT = ".c"OUT_FILE = os.path.join(DIR, "out")if not os.path.exists(CACHE): os.mkdir(CACHE)changed_any = Falseobject_files = []for thing in os.listdir(DIR): if thing.endswith(EXT): path = os.path.join(DIR, thing) name, _, _ = thing.rpartition(EXT) cache_entry = os.path.join(CACHE, f"{name}.o") try: cache_updated_at = os.stat(cache_entry).st_mtime except FileNotFoundError: cache_updated_at = 0 code_updated_at = os.stat(path).st_mtime if cache_updated_at < code_updated_at: print(thing) subprocess.run(CC + ["-c", "-o", cache_entry, path]) changed_any = True object_files.append(cache_entry)if changed_any or not os.path.exists(OUT_FILE): subprocess.run(CC + ["-o", OUT_FILE] + object_files)else: print("no changes")```
gollark: Correction: 7.
gollark: Coming in about 3 minutes.
gollark: Use osmarksbuildsystem™.
References
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.