Château de Petit-Bourg

The Château de Petit-Bourg is located in Évry-sur-Seine (Essonne).

The Château de Petit-Bourg as designed by Jean-Michel Chevotet.

The first château known on the site of Petit-Bourg, on the Seine, overlooking the Forêt de Sénart, began in the 17th century for André Courtin, Canon of Cathédrale Notre-Dame de Paris and was completed about 1635 for Jean Galland. Around 1650, Monseigneur Louis Barber de La Rivière, Bishop of Langres, had gardens designed by François Mansart. Jules Hardouin-Mansart would have worked there about 1662.

Near 1695, Françoise-Athénaïs, marquise de Montespan acquired the Château de Petit-Bourg. There, she realized important alteration work and charged André Le Nôtre with designing the gardens à la françaises, and staged in terraces. She took refuge there after her disgrace.

With her death in 1707, her son Louis Antoine de Pardaillan de Gondrin, inherited the château and remade the gardens. Between 1716 and 1722, he undertook to entirely rebuild with the architect Pierre Cailleteau dit Lassurance. The new Château de Petit-Bourg was a truly princely residence, the masterpiece of Lassurance. The best decorators of the time had worked there. One particularly noticed the cabinet in gallery of the appartement du roi (angle du pavillon du midi, à l'étage) and the grand salon, decorated by Louis-Claude Vassé with royal portraits and ducal emblems.

Before the reconstruction of the château, the duc d'Antin received Louis XIV and, in 1717, the tsar Peter I in Petit-Bourg. After the reconstruction, Louis XV and the queen Maria Leszczyńska stayed there frequently. Mme de Pompadour saw it while living in Étiolles - before being raised by the royal favour, and dreamed of this splendid residence.

After the death of the duc d'Antin, the château remained empty for several years. When acquired by Marie Jacomel in 1750, widow of Louis Chauvelin, président à mortier at the Parlement, it was entirely demolished and replaced by a new château built in 1756 in the neoclassical style by the architect Jean-Michel Chevotet.

At the time of the Revolution, the château was the property of the duchess of Bourbon, Bathilde d'Orléans. After having passed through several hands, it was acquired in 1827 by the banker Alexandre Aguado, marquis de Las Marismas, who accommodated his friend there, the type-setter Gioacchino Rossini and was elected mayor of Évry-on-Seine in 1831. The creation of the railroad from Paris to Corbeil unfortunately divided the park in two and separated it from the Seine. Alexandre Aguado sold his property on 7 April 1840 to speculators who undertook to divide the property.

The Germans occupied the château during World War II, and set fire to it in 1944, at their departure of Évry. The ruins were razed. At the site of the château was constructed the residence of the "Parc de Petit-Bourg". The aisle bordered with chestnut trees and limes along the residence houses was the allée d'honneur of the château.

Bibliography

  • Michel Gallet, Les architectes parisiens du XVIIIe siècle, Paris, Éditions Mengès, 1995, p. 284 – ISBN 2-85620-370-1
  • Bruno Pons, « Le château du duc d'Antin, surintendant des Bâtiments du roi, à Petit-Bourg », Bulletin de la société de l'histoire de l'art français, 1987

gollark: Here is a similar thing for JSON. Note that it delegates out to an external JSON library for string escaping.```luafunction safe_json_serialize(x, prev) local t = type(x) if t == "number" then if x ~= x or x <= -math.huge or x >= math.huge then return tostring(x) end return string.format("%.14g", x) elseif t == "string" then return json.encode(x) elseif t == "table" then prev = prev or {} local as_array = true local max = 0 for k in pairs(x) do if type(k) ~= "number" then as_array = false break end if k > max then max = k end end if as_array then for i = 1, max do if x[i] == nil then as_array = false break end end end if as_array then local res = {} for i, v in ipairs(x) do table.insert(res, safe_json_serialize(v)) end return "["..table.concat(res, ",").."]" else local res = {} for k, v in pairs(x) do table.insert(res, json.encode(tostring(k)) .. ":" .. safe_json_serialize(v)) end return "{"..table.concat(res, ",").."}" end elseif t == "boolean" then return tostring(x) elseif x == nil then return "null" else return json.encode(tostring(x)) endend```
gollark: My tape shuffler thing from a while ago got changed round a bit. Apparently there's some demand for it, so I've improved the metadata format and written some documentation for it, and made the encoder work better by using file metadata instead of filenames and running tasks in parallel so it's much faster. The slightly updated code and docs are here: https://pastebin.com/SPyr8jrh. There are also people working on alternative playback/encoding software for the format for some reason.
gollark: Are you less utilitarian with your names than <@125217743170568192> but don't really want to name your cool shiny robot with the sort of names used by *foolish organic lifeforms*? Care somewhat about storage space and have HTTP enabled to download name lists? Try OC Robot Name Thing! It uses the OpenComputers robot name list for your... CC computer? https://pastebin.com/PgqwZkn5
gollark: I wanted something to play varying music in my base, so I made this.https://pastebin.com/SPyr8jrh is the CC bit, which automatically loads random tapes from a connected chest into the connected tape drive and plays a random track. The "random track" bit works by using an 8KiB block of metadata at the start of the tape.Because I did not want to muck around with handling files bigger than CC could handle within CC, "tape images" are generated with this: https://pastebin.com/kX8k7xYZ. It requires `ffmpeg` to be available and `LionRay.jar` in the working directory, and takes one command line argument, the directory to load to tape. It expects a directory of tracks in any ffmpeg-compatible audio format with the filename `[artist] - [track].[filetype extension]` (this is editable if you particularly care), and outputs one file in the working directory, `tape.bin`. Please make sure this actually fits on your tape.I also wrote this really simple program to write a file from the internet™️ to tape: https://pastebin.com/LW9RFpmY. You can use this to write a tape image to tape.EDIT with today's updates: the internet→tape writer now actually checks if the tape is big enough, and the shuffling algorithm now actually takes into account tapes with different numbers of tracks properly, as well as reducing the frequency of a track after it's already been played recently.
gollark: https://pastebin.com/pDNfjk30Tired of communicating fast? Want to talk over a pair of redstone lines at 10 baud? Then this is definitely not perfect, but does work for that!Use `set rx_side [whatever]` and `set tx_side [whatever]` on each computer to set which side of the computer they should receive/transmit on.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.