- published: 19 Dec 2007
- views: 965967
'+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; })); }); -->
Ryland Peter "Ry" Cooder (born March 15, 1947) is an American musician, songwriter, film score composer, and record producer. He is a multi-instrumentalist but is best known for his slide guitar work, his interest in roots music from the United States, and his collaborations with traditional musicians from many countries.
Cooder's solo work has been eclectic, encompassing many genres. He has collaborated with many musicians, notably including Captain Beefheart, Ali Farka Touré, Eric Clapton, The Rolling Stones, Van Morrison, Neil Young, Randy Newman, David Lindley, The Chieftains, and The Doobie Brothers, Carla Olson & the Textones (both on record and in film). He briefly formed a band named Little Village. He produced the Buena Vista Social Club album (1997), which became a worldwide hit. Wim Wenders directed the documentary film of the same name (1999), which was nominated for an Academy Award in 2000.
Cooder was ranked eighth on Rolling Stone magazine's 2003 list of "The 100 Greatest Guitarists of All Time" (David Fricke's Picks). A 2010 ranking by Gibson placed him at number 32.
Ry Cooder is the eponymous debut album by roots rock musician Ry Cooder, released in 1970.
Bobby King (born July 28, 1944, Lake Charles, Louisiana, United States) is an American gospel-style, R&B and soul singer. He formed a singing duo with Terry Evans in the early 1970s. Since 1973, King has sung on most Ry Cooder albums. He was also the lead backing vocalist in Bruce Springsteen's Human Touch tour band of 1992-93. The duo also undertook recording sessions with Bob Dylan, John Fogerty, Harrison Kerle and Boz Scaggs.
He has also released two solo albums, Bobby King (1981) and Love in the Fire (1984), and two albums with Terry Evans, Live and Let Live! (1988) and Rhythm, Blues, Soul & Grooves (1990).Lou Reed selected 'Live and Let Live! as one of his 'picks of 1989'.
Frederick Alfred Robert "Bobby" King (19 September 1919 – Unknown) was an English footballer who played in the Football League for Northampton Town and Wolverhampton Wanderers.
A chain gang is a group of prisoners chained together to perform menial or physically challenging work as a form of punishment. Such punishment might include repairing buildings, building roads, or clearing land. This system existed primarily in the southern parts of the United States, and by 1955 had been phased out nationwide, with Georgia the last state to abandon the practice. Chain gangs were reintroduced by a few states during the "get tough on crime" 1990s, with Alabama being the first state to revive them in 1995. The experiment ended after about one year in all states except Arizona, where in Maricopa County inmates can still volunteer for a chain gang to earn credit toward a high school diploma or avoid disciplinary lockdowns for rule infractions. The introduction of chain gangs into the United States began shortly after the Civil War. The southern states needed finances and public works to be performed. Prisoners were a free way for these works to be achieved.
A chain gang is a system of labor (usually forced) that involves groups of prisoners, chained together, doing menial labor.
Chain gang may also refer to:
In the sport of cycling, a chain gang is a group of cyclists in a close knit formation usually of two parallel lines.
The formation comes from the fact that it is harder to cycle at the front of a group than in the shelter of another rider. The rider behind enjoys the slipstream of the rider in front. If one rider were to stay at the front all the time, he would tire and the whole group would slow down. If the lead is rotated, the effort is distributed across the group and the speed can be higher or the individual effort less.
This effect is very significant - up to a 40% reduction in effort for the slip-streaming riders while the lead rider also benefits from reduced drag (somewhat under 10%) due to the air not closing up after him.
The name chain gang is an allusion to the formation that riders adopt. The rider in the front of the group will take their share of the lead, then swing to the side and let the rest of the line come through, led by a new leader. The first rider then eases up and drops in behind the last rider in the line, staying in their slipstream until once again their turn comes to ride at the front.
From "Ry Cooder & The Moula Banda Rhythm Aces: Let's Have A Ball", a film by Les Blank filmed at The Catalyst, Santa Cruz, CA on March 25'th 1987. Exquisite singing by Bobby King. Remember to check out "I'm a pilgrim" if you like Bobby King's voice with Ry Cooders guitar - watch?v=Ie1Dq5-cYgY Look out for "Delta Time" by Terry Evans & Hans Thessink out Sept. 21. Terry and Hans is joined by Ry Cooder, Bobby King and Arnold McCuller - all from this concert. See "The making of Delta Time" here: http://www.youtube.com/watch?v=HO7B6TPWLZk&feature=youtube Comment from MrBillindallas: Concert was from a two night run - the last of nine total dates on the NorCal tour. Shot on 16mm film with an audio remote truck in the alley. Movie was released in Europe but not in the US. Great band, at one of...
03 Radiobroadcast 1983 of live performance
04 Radiobroadcast 1983 of live performance
From "Ry Cooder & The Moula Banda Rhythm Aces: Let's Have A Ball", a film by Les Blank taped at The Catalyst, Santa Cruz, CA on March 25'th 1987. Awesome solo's by George Bohannon and Ry using slide on mandoguitar! (that was a first for me) Look out for "Delta Time" by Terry Evans & Hans Theessink out Sept. 21. Terry and Hans is joined by Ry Cooder, Bobby King and Arnold McCuller - all from this concert. See "The making of Delta Time" here: http://www.youtube.com/watch?v=HO7B6TPWLZk&feature=youtube Comment from MrBillindallas: Concert was from a two night run - the last of nine total dates on the NorCal tour. Shot on 16mm film with an audio remote truck in the alley. Movie was released in Europe but not in the US. Great band, at one of the best venues in the 'States, the last two nights...
From "Ry Cooder & The Moula Banda Rhythm Aces: Let's Have A Ball", a film by Les Blank taped at The Catalyst, Santa Cruz, CA on March 25'th 1987. Look out for "Delta Time" by Terry Evans & Hans Thessink out Sept. 21. Terry and Hans is joined by Ry Cooder, Bobby King and Arnold McCuller - all from this concert. See "The making of Delta Time" here: http://www.youtube.com/watch?v=HO7B6TPWLZk&feature=youtube Comment from MrBillindallas: Concert was from a two night run - the last of nine total dates on the NorCal tour. Shot on 16mm film with an audio remote truck in the alley. Movie was released in Europe but not in the US. Great band, at one of the best venues in the 'States, the last two nights of the mini-tour they were truly on fire. One venue was so small the band filled the stage and ...
Ry Cooder and the Chicken Skin Band play 'The Tattler' live at Shepherd's Bush Television Theatre, London on 31st January 1977. Song originally written by Washington Phillips (1880 - 1954). Band Lineup: Ry Cooder - Guitar, Vocals, Alto Saxophone - Pat Rizzo, Drums - Isaac Garcia, Bass - Henry 'Big Red' Ojeda, Bajo Sexto - Jesse Poncé, Accordion - Flaco Jimenez, Vocals - Eldridge King, Terry Evans, Bobby King
02 Radiobroadcast 1983 of live performance
From "Ry Cooder & The Moula Banda Rhythm Aces: Let's Have A Ball", a film by Les Blank taped at The Catalyst, Santa Cruz, CA on March 25'th 1987. Look out for "Delta Time" by Terry Evans & Hans Theessink out Sept. 21. Terry and Hans is joined by Ry Cooder, Bobby King and Arnold McCuller - all from this concert. See "The making of Delta Time" here: http://www.youtube.com/watch?v=HO7B6TPWLZk&feature=youtube Comment from MrBillindallas: Concert was from a two night run - the last of nine total dates on the NorCal tour. Shot on 16mm film with an audio remote truck in the alley. Movie was released in Europe but not in the US. Great band, at one of the best venues in the 'States, the last two nights of the mini-tour they were truly on fire. One venue was so small the band filled the stage and...
From "Ry Cooder & The Moula Banda Rhythm Aces: Let's Have A Ball", a film by Les Blank taped at The Catalyst, Santa Cruz, CA on March 25'th 1987. Look out for "Delta Time" by Terry Evans & Hans Thessink out Sept. 21- a new version of this song will be on that record. Terry and Hans is joined by Ry Cooder, Bobby King and Arnold McCuller - all from this concert. See "The making of Delta Time" here: http://www.youtube.com/watch?v=HO7B6TPWLZk&feature=youtube Comment from MrBillindallas: Concert was from a two night run - the last of nine total dates on the NorCal tour. Shot on 16mm film with an audio remote truck in the alley. Movie was released in Europe but not in the US. Great band, at one of the best venues in the 'States, the last two nights of the mini-tour they were truly on fire. On...
The Cotati Cabaret, Cotati, CA Song List: 01 - Showtime 02 - Little Sister 03 - Smack Dab In The Middle (fades in) 04 - Let's Have A Ball 05 - Go On Home Girl 06 - Ay Te Dejo En San Antonio 07 - He’ll Have To Go 08 - Jesus On The Mainline 09 - Dark End Of The Street 10 - When He Comes 11 - I Don't Want Much 12 - One Meatball Musicinas: ・Ry Cooder (Guitar, Vocals) ・Flaco Jimenez (Accordian) ・Van Dyke Parks (Keyboards) ・Jorge Calderon (Bass) ・Jim Keltner (Drums) ・Steve Douglas (Saxophone) ・Miguel Cruz (Percussion) ・George Bohannon (Trombone) ・Bobby King (Vocals [baritone]) ・Terry Evans (Vocals [tenor]) ・Arnold McCuller (Vocals [tenor]) ・Willie Greene Jr. (Vocals [bass]) 【TLRMC061】 Ry Cooder 03/23/1987 Vol.1 02/02/2016
Ryland Peter "Ry" Cooder (born March 15, 1947) is an American musician, songwriter, film score composer, and record producer. He is a multi-instrumentalist but is best known for his slide guitar work, his interest in roots music from the United States, and his collaborations with traditional musicians from many countries.
Cooder's solo work has been eclectic, encompassing many genres. He has collaborated with many musicians, notably including Captain Beefheart, Ali Farka Touré, Eric Clapton, The Rolling Stones, Van Morrison, Neil Young, Randy Newman, David Lindley, The Chieftains, and The Doobie Brothers, Carla Olson & the Textones (both on record and in film). He briefly formed a band named Little Village. He produced the Buena Vista Social Club album (1997), which became a worldwide hit. Wim Wenders directed the documentary film of the same name (1999), which was nominated for an Academy Award in 2000.
Cooder was ranked eighth on Rolling Stone magazine's 2003 list of "The 100 Greatest Guitarists of All Time" (David Fricke's Picks). A 2010 ranking by Gibson placed him at number 32.
That's the sound of the men
They are working on the chain gang
That's the sound of the men
They are working on the chain gang
That's the sound of the men
They are working on the chain gang
All day long they work so hard
Till the sun's comin' down
Workin on the highways and biways
And wearin a frown
I hear them moanin' their lives away
And then you hear somebody say
That's the sound of the men
They are working on the chain gang
That's the sound of the men
They are working on the chain gang
That's the sound of the men
They are working on the chain gang
Hear someone sayin'
Whoa I work, work so hard
See my woman, who I love so dear
But I, I've got to work right here
That's the sound of the men
They are working on the chain gang
That's the sound of the men
They are working on the chain gang
That's the sound of the men
They are working on the chain gang
My, my, my, my, I work so hard
Give me water, I'm thirsty
Whoa I, I work so hard
You hear them moanin' their lives away
And then you hear somebody say
That's the sound of the men
They are working on the chain gang
That's the sound of the men
They are working on the chain gang
That's the sound of the men
They are working on the chain gang
That's the sound of the men
They are working on the chain gang
That's the sound of the men
They are working on the chain gang
That's the sound of the men