Winterland Ballroom

Multi tool use
Cet article est une ébauche concernant le rock et la Californie.
Vous pouvez partager vos connaissances en l’améliorant (comment ?) selon les recommandations des projets correspondants.

Pour les articles homonymes, voir Winterland.
Présentation
Type |
Patinoire, salle de concert, bâtiment détruit (d)
|
Localisation
Adresse |
Californie  États-Unis
|
Coordonnées |
37° 47′ 06″ N, 122° 26′ 06″ O
|
Géolocalisation sur la carte : Californie
Géolocalisation sur la carte : San Francisco
modifier - modifier le code - modifier Wikidata
Le Winterland Ballroom, également appelé Winterland Arena ou simplement Winterland, est une patinoire et salle de spectacle de San Francisco.
Construit en 1928, le Winterland devient exclusivement une salle de spectacle à partir de 1971, sous l'impulsion du promoteur Bill Graham. De nombreux artistes rock viennent s'y produire dans les années 1960 et 1970 : Peter Frampton y enregistre son premier album à succès, Frampton Comes Alive!, en 1975, et l'année suivante, The Band y donne son concert d'adieu.
Le Winterland ferme ses portes le 31 décembre 1978, après un dernier concert réunissant le Grateful Dead (près de six heures sur scène), New Riders of the Purple Sage et les Blues Brothers. La salle est détruite en 1985 et remplacée par des immeubles d'habitation.
Enregistrements au Winterland Ballroom |
Cream – Wheels of Fire, Live Cream, Live Cream Volume II (8-10 mars 1968)
Big Brother and the Holding Company – Live at Winterland '68 (12-13 avril 1968)
Jimi Hendrix – Live at Winterland (10-12 octobre 1968)
Jefferson Airplane – Thirty Seconds Over Winterland (21-22 septembre 1972)
The Allman Brothers Band – Wipe the Windows, Check the Oil, Dollar Gas (26 septembre 1973)
Grateful Dead – Winterland 1973: The Complete Recordings (9-11 décembre 1973)
- Grateful Dead – Steal Your Face (16-20 octobre 1974)
- Grateful Dead - The Grateful Dead Movie Soundtrack (16-20 octobre 1974)
Peter Frampton – Frampton Comes Alive! (14 juin 1975)
Electric Light Orchestra – Live at Winterland '76 (février 1976)
The Band – The Last Waltz (25 novembre 1976)
Grateful Dead – Winterland June 1977: The Complete Recordings (7-8-9 juin 1977)
- Grateful Dead – Dick's Picks Volume 10 (29-30 décembre 1977)
- Grateful Dead – The Closing of Winterland (31 décembre 1978)
Portail du rock
Portail de San Francisco et sa région
D0b ESsu v,3W8,KDQvnv2r wXAZ X i7ZXT qNRTiR33RAi Po8,x,e2Nf2zkKBn4K1Vw
Popular posts from this blog
1
I am trying to find out how to save and close to an existing workbook using xlwings after writing in it: import xlwings as xw list_of_values = [1, 2, 3] workbook_path = 'abc.xlsx' wb = xw.Book(workbook_path) ws = wb.sheets['sheet1'] ws.range('E35').value = list_of_values wb.save() wb.close() When I get to wb.save(workbook_path) , there is a prompt stating: 'A file named abc.xlsx' already exists in this location. Do you want to replace it?' I want to overwrite the file immediately without the prompt coming up. According to the docs, wb.save() should automatically overwrite (see: https://docs.xlwings.org/en/v0.6.4/api.html). I have also tried wb.save(workbook_path) but the pop-up still appears. Appreciate any help on this please. p.s. - I am basically try...
Ne doit pas être confondu avec freeware, open source ou copyleft. Logo du projet GNU, initiateur du mouvement du logiciel libre. Un logiciel libre est un logiciel dont l'utilisation, l'étude, la modification et la duplication par autrui en vue de sa diffusion sont permises, techniquement et légalement [ 1 ] , ceci afin de garantir certaines libertés induites, dont le contrôle du programme par l'utilisateur et la possibilité de partage entre individus [ 2 ] . Ces droits peuvent être simplement disponibles – cas du domaine public – ou bien établis par une licence, dite « libre », basée sur le droit d'auteur. Les « licences copyleft » garantissent le maintien de ces droits aux utilisateurs même pour les travaux dérivés. Les logiciels libres constituent une alternative à ceux qui ne le sont pas, qualifiés de « propriétaires » ou de « privateurs » [ Note 1 ] . Ces derniers sont alors considérés par une partie de la communauté du logiciel libre comme étant l...
1
1
I'm still learning PostgreSQL. During my testing, I have only been using INSERT statement in either psycopg2 and now asyncpg. I now have the need to UPDATE data in my test database, instead of replacing all of it. I'm currently trying to do a simple replacement test in a testing table, before I move to development table with more data. I want to replace any $1 name that is in CONFLICT with a name that is already in the table users. I'm trying the query code, which is passed to the DB via asyncpg. I keep getting a syntax errors, so I'm a little lost on how to correct these errors. What is the proper syntax for this query? '''INSERT INTO users(name, dob) VALUES($1, $2) ON CONFLICT (name) DO UPDATE "users" SET name = 'TEST' W...