- published: 11 Sep 2014
- views: 6060909
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
Wendy Carlos (born Walter Carlos; November 14, 1939) is an American physicist, composer, and keyboardist best known for her electronic music and film scores. Born and raised in Rhode Island, Carlos studied physics and music at Brown University before moving to New York City in 1962 to study music composition at Columbia University. Studying and working with various electronic musicians and technicians at the city's Columbia-Princeton Electronic Music Center, she oversaw the development of the Moog synthesizer, then a relatively new and unknown keyboard instrument designed by Robert Moog.
Carlos came to prominence with Switched-On Bach (1968), an album of music by Johann Sebastian Bach performed on a Moog synthesizer which helped popularize its use in the 1970s and won Carlos three Grammy Awards. Its commercial success led to several more keyboard albums from Carlos of varying genres including further synthesized classical music adaptations and experimental and ambient music. Carlos composed the score to two Stanley Kubrick films, A Clockwork Orange (1971) and The Shining (1980), and Tron (1982) for Walt Disney Productions.
The Brandenburg Concertos by Johann Sebastian Bach (BWV 1046–1051, original title: Six Concerts à plusieurs instruments) are a collection of six instrumental works presented by Bach to Christian Ludwig, Margrave of Brandenburg-Schwedt, in 1721 (though probably composed earlier). They are widely regarded as some of the best orchestral compositions of the Baroque era.
Bach wrote out the music himself for presentation to the Margrave rather than leaving it to a copyist. While he took the opportunity to revise the music, most likely, it was not freshly composed. He appears to have selected the six pieces from concertos he had composed over a number of years while Kapellmeister at Köthen, and possibly extending back to his employment at Weimar (1708–17).
Bach's dedication to the Margrave was dated 24 March 1721. Translated from the original French, the first sentence of Bach's dedication reads:
Bach's reference to his scoring the concertos for "several instruments" (Concerts avec plusieurs instruments) is an understatement. Bach used the "widest spectrum of orchestral instruments … in daring combinations," as Christoph Wolff has commented. "Every one of the six concertos set a precedent in scoring, and every one was to remain without parallel." Heinrich Besseler has noted that the overall forces required (leaving aside the first concerto, which was rewritten for a special occasion) tallies exactly with the 17 players Bach had at his disposal in Köthen.
Brandenburg ( listen ; Low German: Brannenborg, Lower Sorbian: Bramborska is one of the sixteen federated states of Germany. It lies in the northeast of the country covering an area of 29,478 square kilometers and has 2.45 million inhabitants. The capital and largest city is Potsdam. Brandenburg surrounds but does not include the national capital and city-state Berlin forming a metropolitan area.
Originating in the medieval Northern March, the Margraviate of Brandenburg grew to become the core of the Kingdom of Prussia, which would later become the Free State of Prussia. Brandenburg is one of the federal states that was re-created in 1990 upon the reunification of the former East Germany and West Germany.
In late medieval and early modern times, Brandenburg was one of seven electoral states of the Holy Roman Empire, and, along with Prussia, formed the original core of the German Empire, the first unified German state. Governed by the Hohenzollern dynasty from 1415, it contained the future German capital Berlin. After 1618 the Margraviate of Brandenburg and the Duchy of Prussia were combined to form Brandenburg-Prussia, which was ruled by the same branch of the House of Hohenzollern. In 1701 the state was elevated as the Kingdom of Prussia. Franconian Nuremberg and Ansbach, Swabian Hohenzollern, the eastern European connections of Berlin, and the status of Brandenburg's ruler as prince-elector together were instrumental in the rise of that state.
Brandenburg an der Havel is a town in the state of Brandenburg (which is why it is also called Brandenburg City in English), Germany, with a population of 71,778 (as of 2010). It is located on the banks of the River Havel. The town of Brandenburg, which is almost as widely known as the state of Brandenburg, provided the name for the medieval Bishopric of Brandenburg, the Margraviate of Brandenburg, and the current state of Brandenburg. Today it is a small town compared to nearby Berlin, but it was the original nucleus of the former realms of Brandenburg and Prussia.
The castle of Brandenburg, which had been a fortress of the Slavic tribe Stodoranie, was conquered in 929 by King Henry the Fowler. The name of the city in the local Slavic language is Brennabor and is a combination of two words brenna' - defense and bor - fort. The town remained German only until 983, when a Slavic rebellion was successful. During the next 170 years the area was ruled by Slavic princes of the Hevelli tribe. The last of them, Pribislav, died in 1150. From 1153/1154 to 1157 Brennabor was part of the Slavonic Duchy of Kopanica, a fief of Poland. Afterwards Albert I settled here and became the first margrave of Brandenburg. The town was restricted to the western bank of the Havel until 1196, when it was extended to the eastern side. The parts on either side of the river were regarded as three different towns (Old Town, New Town and Brandenburg cathedral district) for centuries.
Ushakovo (Russian: Ушаково) is the name of several rural localities in Russia.
As of 2012, one rural locality in Amur Oblast bears this name:
As of 2012, one rural locality in the Republic of Bashkortostan bears this name:
As of 2012, one rural locality in Belgorod Oblast bears this name:
As of 2012, two rural localities in Ivanovo Oblast bear this name:
As of 2012, four rural localities in Kaliningrad Oblast bear this name:
For the first time in 4K Ultra High Definition video, Bach's Brandenburg Concerto No. 3 in G Major (BWV 1048), complete, performed on original instruments by the Early Music ensemble Voices of Music. Please subscribe to our channel https://www.youtube.com/VoicesofMusic/?sub_confirmation=1 In March of 1721, Johann Sebastian Bach carefully inked six of his best concertos into a book for the Margrave of Brandenburg, Christian Ludwig. The original title, "Six Concerts à plusieurs instruments" is now known as the "Brandenburg" Concertos in English or "Brandenburgische Konzerte" in German. These six concertos represent the summa of chamber music in the high baroque period, and the third concerto (BWV 1048) is noted for its rich texture of three violins, three violas and three cellos, with a cont...
Claudio Abbado and the Orchestra Mozart perform Johann Sebastian Bach’s Brandenburg Concerto No. 3 in G major, BWV 1048, at the Teatro Municipale Valli in Reggio Emilia, Italy (2007). Bach wrote the third of his Brandenburg Concertos for nine stringed instruments, and basso continuo, with the strings divided into three groups – three violins, three violas, and three cellos. This Brandenburg Concerto in fact consists of only two movements, with a transitional section. We have divided it into three parts solely for the purposes of orientation. 00:00 I. Allegro 05:19 II. Adagio ma non tanto 05:44 III. Allegro With its swooping, driven theme, the first movement forms a lively interplay between the three groups of strings. It could be described as a prime example of what during Bach's lifetim...
EU4 1.37 Brandenburg into German Empire Borders ludi kek video skibidi stop reading descriptions it snot healthy for you seriously ✅ EU4 Guides: ✅ ✅ Part 1 - https://youtu.be/EoLE_KIxypo ✅ ✅ Estates Guide - https://youtu.be/SfGryBqnGsA ✅ ✅ Army Composition - https://youtu.be/cx2_uOeUWZ8 ✅ ✅ Trade Guide - https://youtu.be/XA1dhCnw9vM ✅ ❤️ PATREON ► https://www.patreon.com/ludiethistoria 💻 TWITCH► http://www.twitch.tv/ludiethistoria 👑 DISCORD ► https://discord.gg/TjNRkGnYkw Vods Channel☑️ @LudiClips ☑️ Personal Channel ☑️ @Ludisan ☑️ Europa Universalis IV is a grand strategy games published by Paradox Interactive. All rights reserved. This is an unofficial video, not endorsed by Paradox Interactive. The following DLC is used in this series: Eu4 Winds of change King of Kings Domin...
Berlin’s Brandenburg Gate is a national symbol and one of Berlin's best-known landmarks. Like no other structure, it reflects Germany's turbulent past. Why does this edifice captivate Germans? This History Stories Special delves into the gate's eventful history and reveals its innermost secrets. We feature people whose lives on both sides of the Iron Curtain were connected to the Brandenburg Gate in a special way. 00:00 What is the Brandenburg Gate? 03:35 The Gate during the cold war 09:05 How the Gate came to be in the 18th century 11:20 The Gate from the inside 13:30 How Napoleon took the Quadriga to France 15:50 The Gate between Emperors and Revolutionists in the 19th and 20th century 19:20 The Gate during the Nazi Era and the second world war 23:32 The Gate during the cold war part 2...
Potsdam's main attractions are the Prussian royal palace and park complexes, which are UNESCO World Heritage sites. Its many waterscapes are typical of Brandenburg. More Discover Germany: http://www.dw.com/en/program/discover-germany/s-7856-9798
These six concertos, composed in the early 18th century, are widely regarded as some of the finest examples of Baroque music, representing Bach's genius in both orchestral writing and innovative instrumental interplay. Rich in texture, harmony, and energy, the Brandenburg Concertos are celebrated for their dynamic contrasts and elegant complexity. Each concerto is a masterpiece in its own right, featuring a unique combination of instruments that creates a distinct mood and character. From the lively, spirited rhythms of the strings to the majestic flourishes of the brass and woodwinds, Bach's Brandenburg Concertos are a perfect blend of technical brilliance and emotional expression. These works are both intellectually stimulating and deeply moving, making them an enduring favorite among c...
Claudio Abbado and the Orchestra Mozart perform Johann Sebastian Bach’s Brandenburg Concerto No. 1 in F major, BWV 1046 at the Teatro Municipale Valli in Reggio Emilia, Italy (2007). 00:00 I. Allegro 03:49 II. Adagio 06:55 III. Allegro 10:48 IV. Menuet - Trio - Menuet - Polonaise - Menuet - Trio – Menuet The Brandenburg Concertos (BWV 1046–1051) by Johann Sebastian Bach (1685 – 1750) are a collection of six instrumental works dedicated by Bach to Christian Ludwig, Margrave of Brandenburg in 1721. They are regarded as some of the best orchestral compositions of the Baroque era. But the concerts were probably composed between 1718 and 1721 for Bach’s Köthener Hofkappelle. Bach’s original title “Six Concerts with Various Instruments” describes exactly what is special about these concerts: t...
__ Bach: Brandenburg concertos, BWV 1046 - 1051 Concerto no. 1 in F major, BWV 1046 00:01:18 - No tempo indication 00:05:04 - Adagio 00:08:30 - Allegro 00:12:39 - Menuet Concerto no. 2 in F major, BWV 1047 00:20:46 - No tempo indication 00:25:29 - Andante 00:28:51 - Allegro assai Concerto no. 3 in G major, BWV 1048 00:31:38 - No tempo indication 00:37:09 - Adagio 00:37:20 - Allegro Concerto no. 4 in G major, BWV 1049 00:41:59 - Allegro 00:49:02 - Andante 00:53:01 - Presto Concerto no. 5 in D major, BWV 1050 00:57:51 - Allegro 01:07:31 - Affettuoso 01:13:27 - Allegro Concerto no. 6 in B-flat major, BWV 1051 01:19:07 - No tempo indication, alla breve 01:24:51 - Adagio ma non tanto 01:29:29 - Allegro Collegium 1704 Conducted by Václav Luks __ Oedipus Coloneus, 2021
Claudio Abbado and the Orchestra Mozart perform Johann Sebastian Bach’s Brandenburg Concerto No. 4 in G major, BWV 1049, at the Teatro Municipale Valli in Reggio Emilia, Italy (2007). This Brandenburg Concerto No. 4 has a very special line-up: principal violin (Giuliano Carmignola), two recorders (Michala Petri and Nikolaj Tarasov) and a string orchestra. Bach described the recorders as "Fiauti d'echo", or "echo flutes", although it’s not quite clear what he meant by that. The fourth of the Brandenburg concerts is the only work that uses "echo flutes" as far as we know today. The Brandenburg Concerto No. 4 was probably written in 1720 as one of the last or even the last of the six Brandenburg Concertos. 00:00 I. Allegro 07:11 II. Andante 10:54 III. Presto The Brandenburg Concertos (BWV...
The Brandenburg Gate is one of the most famous buildings in Berlin, Germany. Here are three facts about its history. #shortsfeed #berlin #brandenburggate
Wendy Carlos (born Walter Carlos; November 14, 1939) is an American physicist, composer, and keyboardist best known for her electronic music and film scores. Born and raised in Rhode Island, Carlos studied physics and music at Brown University before moving to New York City in 1962 to study music composition at Columbia University. Studying and working with various electronic musicians and technicians at the city's Columbia-Princeton Electronic Music Center, she oversaw the development of the Moog synthesizer, then a relatively new and unknown keyboard instrument designed by Robert Moog.
Carlos came to prominence with Switched-On Bach (1968), an album of music by Johann Sebastian Bach performed on a Moog synthesizer which helped popularize its use in the 1970s and won Carlos three Grammy Awards. Its commercial success led to several more keyboard albums from Carlos of varying genres including further synthesized classical music adaptations and experimental and ambient music. Carlos composed the score to two Stanley Kubrick films, A Clockwork Orange (1971) and The Shining (1980), and Tron (1982) for Walt Disney Productions.
Girl you look so mesmerizing
You got me fantasizing
Your man's lost but you don't wanna find him
He's played you like a fool
Oh yeah I know you see me smiling
Maybe we shouldn't but we vibin'
Do you think that he would mind if
I took you for a dance or two
I've waited long enough
So please make up your mind
Because we're wasting precious time
I'm not gonna treat you like
Another girl on the side
No I... No I... No I... No I
No I can't bare to see you with him
When you should be with me
No I just can't stand to see you cry
No I
No I won't let you down
I'll be there when I should be around
No I can't be without you girl
For even one more night
No I
You ain't ever gonna change him
So tell me what you're contemplating
Baby why you keep me waiting
I don't know what to do
So you tried to tell him last night
Well that better be the last time
That you let the moment pass by
I can't get enough of you
I've waited long enough
So please make up your mind
Because we're wasting precious time
I'm not gonna treat you like
Another girl on the side
No I... No I... No I... No I
No I can't bare to see you with him
When you should be with me
No I just can't stand to see you cry
No I
No I won't let you down
I'll be there when I should be around
No I can't be without you girl
For even one more night
No I
No I can't bare to see you with him
When you should be with me
No I just can't stand to see you cry
No I
No I won't let you down
I'll be there when I should be around
No I can't be without you girl
For even one more night
No I
I see you holding hands
I gotta hold it back
You shoulda told him that
I am the only one girl
Won't you make up your mind so
I can move on in life knowing
That you're by my side
So many reasons for you to believe in our love
No I can't bare to see you with him
When you should be with me
No I just can't stand to see you cry
No I
No I won't let you down
I'll be there when I should be around
No I can't be without you girl
For even one more night