- published: 19 Mar 2019
- views: 303079
'+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; })); }); -->
John Patitucci (born December 22, 1959) is an American jazz double bass and jazz fusion electric bass player.
Patitucci was born in Brooklyn, New York, where he began playing the electric bass at age 10, composing and performing at age 12, as well as playing the acoustic bass at 15, and the piano one year later. After moving west, he studied classical bass at San Francisco State University and Long Beach State University.
Patitucci has released 12 albums as a leader. In addition to his solo work, he has played on albums by B.B. King, Chick Corea, Clare Fischer, Joanne Brackeen, Wayne Shorter, Herbie Hancock, Michael Brecker, John Abercrombie, George Benson, Dizzy Gillespie, Dave Grusin, Natalie Cole, Roseanna Vitro, Sting, the Manhattan Transfer, Carly Simon, Was Not Was, Roby Duke, Bon Jovi, Queen Latifah, Everything but the Girl, Jellyfish and Twila Paris.
As a performer, he has played with his own band, and with Stan Getz, Wynton Marsalis, Joshua Redman, Randy Brecker, Freddie Hubbard, McCoy Tyner, and Tony Williams. He was selected to be the bassist for the GRP All-Star Big Band. Some of the many pop and Brazilian artists he has played with include Carole King, Astrud and João Gilberto, Airto Moreira and Flora Purim. Patitucci has worked with film composers such as Jerry Goldsmith, Ry Cooder, Henry Mancini, and John Williams.
John Patitucci is the debut solo album of jazz bassist John Patitucci. The album charted #1 at the Billboard Top Jazz Albums 1987.
Lost may refer to:
This is a list of episodes of the Japanese animated TV series Planetes (プラネテス, Puranetesu, Ancient Greek: πλάνητες "Wanderers") It began airing its 26 episode run on NHK BS-2 on October 4, 2003 and ended on February 23, 2004. Produced and animated by Sunrise, it was directed by Gorō Taniguchi and scripted by Ichirō Ōkouchi (both of whom would later reunite in 2006 to work on the Sunrise original production Code Geass). The anime began development and production before the end of the manga serialization. In the beginning and middle of the series, the writing and production staff only had the first three volumes of the manga as source. In order to fill the entire 26 episode run of the anime, new characters, new settings and new relationships between characters were made in order to increase dramatic tension, reinforce themes introduced in the manga, and introduce new themes that were compatible with the manga. While the manga deals more with existential themes, and humanity's relationship with space, the anime further expands the political elements of the story.
The Lost is a 2006 American psychological horror film that was written and directed by Chris Sivertson based on the Jack Ketchum novel of the same name. It was produced by Lucky McKee. The film stars Marc Senter as charismatic teen sociopath Ray Pye. Senter won best actor awards from both Screamfest and Fantaspoa film festivals. He was also nominated for a Fangoria Chainsaw Award. Supporting cast include Shay Astar, Alex Frost, Michael Bowen, and Robin Sydney. The movie had its world premiere at the SXSW Film Festival with a limited theatrical release following shortly after.
19-year-old Ray Pye decides to murder two young women. His friends, Jen and Tim, witness the murder and help him cover it up. Four years later, Ray has never been arrested for the crime. Detective Charlie Schilling and his ex-partner, Ed Anderson, know that Ray did it. They just could never prove it. Charlie figures it's about time they did prove it. He's ready to push Ray harder than ever. Meanwhile, Ray has met his match in a new girl in town. Her name's Katherine Wallace. Kath is a bad girl. Her and Ray are a potentially explosive combination. Throw in the fact that Ed is having a summer fling with Sally Richmond - a girl young enough to be his daughter. And Sally's just gotten a job at the motel that Ray manages. Ray has his eye on her.
"Four in One" performed by John Patitucci Electric Guitar Quartet Blue Note Milano 09 - 05 - 2017 John Patitucci - bass Adam Rogers - guitar Steve Cardenas - guitar Nate Smith - drums Check Out the Blue Note Calendar! http://www.bluenotemilano.com/ Filmed and Edited By http://www.kondoo.it/ Audio By http://www.zoranmatejevic.com/
John Patitucci: Electric Bass Complete. This new DVD combines both the Electric Bass and Electric Bass 2 videos in DVD format. Electric Bass is a complete guide to grooving with a drummer in 15 styles, including funk, samba, reggae, jazz, shuffle, baiao, Latin, and rock. John provides examples in each style and discusses major influences and variations. Includes an extensive discussion/ demonstration of technique (on the four-string bass). In Electric Bass 2, John offers insight into soloing by stressing the importance of ear-training. He takes some of the mystery out of the six-string bass by showing how it is tuned, its amazing range, and by offering many examples of its applications. Special features include performances of John's compositions, a new interview with John, plus a live...
Here's a live version of my new song, "one for brian" which is available for purchase on Bandcamp. Link below 👇 https://johnpatitucciofficial.bandcamp.com/releases
Victor Wooten and John Patitucci exchanges basslines @Wiltern Theater LA 2017 End of Tour of Chick Corea Electrik Band & Bela Fleck & the Flecktones
Chick Corea, John Patitucci & Vinnie Colaiuta - Blue Note, Tokyo, 1992 00:40 Humpty Dumpty 10:40 Tumba 23:02 Round Midnight 30:25 Miniature No 3 35:58 New Waltz 47:35 Spain (chapters courtesy of rob wood)
#bass #jazz #transcription #analysis #paulthompson I recently discovered a gem of a bass solo played by a 21-year-old John Patitucci in 1981!! I'll break down what he's doing and how it compares to his playing today. Here's a link to the entire song: "Carry My Blues Away" by Tamarack - https://youtu.be/Zby0f8S-9zw?si=2kk9MwsCM-4SU0Jn And you aren't familiar with the "Tooch", check out my list of 5 of my favorite JP recordings including his solo work, the Chick Corea Elektric Band, the Wayne Shorter Quartet, and Michael Brecker! 00:00 Intro 00:20 JP 01:29 Tamarack 02:23 The Solo 03:00 Play-through/Analysis 05:19 5 Favorite Albums 09:00 Dedication Website: http://www.paulthompson.us Instagram @pdbass74 Twitter @pdbass74
A Jazz Fusion Trio with Masters Dave and John. Composer Hami Keivan. Composer & Piano Hami Keivan Mixing Dave Weckl Bass John Patitucci @davewecklmusic @johnpatitucciofficial
Recorded at The Jazz Gallery on 10/14/22. John Patitucci - Electric bass Adam Rogers - Guitar Steve Cardenas - Guitar Nate Smith - Drums
Here’s a song from an early show in Cremona, Italy, from the CPW EU tour, 2024. Dave says "we’re still learning/searching how to end it! lol" John Patitucci wrote this one for Chick Corea and Thelonius Monk. This is a very special trio, with an individually long history (Dave first met Joey when he was 15!) A/V production: Dave Weckl Tour dates and more information: www.daveweckl.com
Htet Yan - Lost (Official Audio) Artist - Htet Yan Produced by Cracky Written by Htet Yan -------------------------------------------------------------------- _Link Apple_Spotify_ https://open.spotify.com/album/1b3L3lA0FXRxjboT5dsyzv?si=eae6a336b50b4110 _Muu Yit Sayy Warr https://music.apple.com/th/album/1573381900 http://open.spotify.com/album/2N0eKLuDMFCfQq3fX4F2oS _New https://music.apple.com/th/album/1573382237 http://open.spotify.com/album/3d19hHsL5nvGO5772NiUcJ _No More Cry https://music.apple.com/th/album/1573381925 http://open.spotify.com/album/06xVxZC2nedylQ6GmVNBF7 _OCTOBER 18 https://music.apple.com/th/album/1573381774 http://open.spotify.com/album/1b3L3lA0FXRxjboT5dsyzv _PK https://music.apple.com/th/album/1573381497 http://open.spotify.com/album/7bf7ITsLk4ktw8QMsCR4aN _Shae M...
Lost is an American science fiction drama television series created by Jeffrey Lieber, J. J. Abrams, and Damon Lindelof that aired on ABC from September 22, 2004, to May 23, 2010, over six seasons, comprising a total of 121 episodes. The show contains elements of supernatural fiction, and follows the survivors of a commercial jet airliner flying between Sydney and Los Angeles, after the plane crashes on a mysterious island somewhere in the South Pacific Ocean. Episodes typically feature a primary storyline set on the island, augmented by flashback or flashforward sequences which provide additional insight into the involved characters. Lindelof and Carlton Cuse serve as showrunners and are executive producers along with Abrams and Bryan Burk. Inspired by the 2000 Tom Hanks film Cast Away,[...
Watch the official music video for Lost by Linkin Park from the album Meteora|20. ---------- From Zero | The New Album | Available Now Order Now: https://lprk.co/fromzero Official Linkin Park Merch: http://lprk.co/store Text/Call: https://lprk.co/text Newsletter Sign Up: https://lprk.co/newsletter YouTube Subscribe: http://lprk.co/youtube Facebook: http://lprk.co/facebook Instagram: http://lprk.co/instagram TikTok: http://lprk.co/tiktok Twitter: http://lprk.co/twitter Discord: https://discord.gg/linkinpark Download/Stream Lost : http://lprk.co/lost Video Credits: Directors: Maciej Kuciara, pplpleasr AI Production: Kaiber, Jacky Lu - https://kaiber.ai/, Sagans, @sagansagansagans Editor and Compositing Lead: Anthony Scott Burns Illustration: jun._.ka Animation: Alasdair Willson, Andrew H...
Provided to YouTube by TuneCore Lost · Cali Life Style Mexican Invasion ℗ 1996 Underworld 805 Records Released on: 1996-08-07 Auto-generated by YouTube.
Jady - Lost (Remix) ft. Meezy24k & YCN Tomie [ OFFICIAL MUSIC VIDEO ] Music Credit : Produced by : HORYSHET Mixed & Mastered by : XNOYV , makav.mp3 Written by : Jady , Meezy24k , YCN Tomie Artwork : Thya Music Video Credit : Directed by : indica.film Assistant Cameraman (AC) : Sinfy , Jkay Liyuth Artist Coordinator : Ycn Jmix Lighting : Phoeun Sokleng Edited by : Tep kimleng Supporting crew : Andrew deo , Lalarex , Mel420 , HS #jady #Lost #amt #lcc #Lostremix Check me on all platforms Spotify : https://open.spotify.com/artist/168M9ompXZnzRRpikQM3VE?si=jP1XMRPbQ3GYUxMno-7QsA Apple Music : https://music.apple.com/kh/album/oun-single/1731744818 Soundcloud : https://soundcloud.com/jadennak Instagram : https://www.instagram.com/jaden_nak/ Facebook : https://www.facebook.com/jaden.nak/
Composer - Marshall (WhyphY) Vocalist - May Music Producer - Phyo Min Naing Mixing and Mastering - Ye Zaw Myo DOP - BTP Director - BTP
Provided to YouTube by Universal Music Group Lost · Frank Ocean channel ORANGE ℗ 2012 The Island Def Jam Music Group Released on: 2012-01-01 Producer, Studio Personnel, Recording Engineer, Mixer: Malay Producer, Studio Personnel, Mixer: Frank Ocean Producer: Om'Mas Keith Studio Personnel, Recording Engineer: Jeff Ellis Studio Personnel, Asst. Recording Engineer: Wil Anspach Associated Performer, Additional Vocals: Stacy Barthe Associated Performer, Additional Vocals: Danielle Miranda-Simms Composer Lyricist: Micah Otano Composer Lyricist: Lonnie Breaux Composer Lyricist: Paul Shelton Composer Lyricist: J. Ho Auto-generated by YouTube.
Follow them on Weibo @Jony-J @滿舒克_ Edited By: Fire Panda Link:https://www.youtube.com/channel/UCF_L4w8YAPLD3baqI05Au6A Song Title: LOST Artist: Jony-J & 满舒克 #1 STOP FOR CHINESE HIP HOP 中国说唱 Subscribe to ZHONG.TV and stay updated with the best Chinese Hip Hop music on the web. http://www.youtube.com/subscription_center?add_user=zhongtv ZHONG.TV on FACEBOOK : http://www.facebook.com/ZhongTV ZHONG.TV on TWITTER: http://www.twitter.com/ZhongTV ZHONG.TV on SINA WEIBO: http://www.weibo.com/zhongtvnews ZHONG.TV on YOUKU http://u.youku.com/ZHONGTV ZHONG.TV WEBSITE http://www.zhong.tv
Two decades ago, Lost redefined television and skyrocketed its cast into stardom. But where are they now, and how have their lives transformed since leaving the island? From Jorge Garcia’s musical debut on The Masked Singer to Daniel Dae Kim becoming a “zaddy” while conquering Hollywood, these stars have had their share of twists and turns. And who could forget Josh Holloway, who swapped modeling for yoga sessions with his family, or Evangeline Lilly, who shocked fans by retiring to focus on writing and humanitarian work? Some have kept their spotlight shining—like Dominic Monaghan, who remains fearless on stage and in wildlife adventures—while others, such as Matthew Fox, took a step back before making triumphant comebacks. With careers spanning zombie battles (The Walking Dead spinoff...
A fan made theatrical trailer of season 1 of Lost.
John Patitucci (born December 22, 1959) is an American jazz double bass and jazz fusion electric bass player.
Patitucci was born in Brooklyn, New York, where he began playing the electric bass at age 10, composing and performing at age 12, as well as playing the acoustic bass at 15, and the piano one year later. After moving west, he studied classical bass at San Francisco State University and Long Beach State University.
Patitucci has released 12 albums as a leader. In addition to his solo work, he has played on albums by B.B. King, Chick Corea, Clare Fischer, Joanne Brackeen, Wayne Shorter, Herbie Hancock, Michael Brecker, John Abercrombie, George Benson, Dizzy Gillespie, Dave Grusin, Natalie Cole, Roseanna Vitro, Sting, the Manhattan Transfer, Carly Simon, Was Not Was, Roby Duke, Bon Jovi, Queen Latifah, Everything but the Girl, Jellyfish and Twila Paris.
As a performer, he has played with his own band, and with Stan Getz, Wynton Marsalis, Joshua Redman, Randy Brecker, Freddie Hubbard, McCoy Tyner, and Tony Williams. He was selected to be the bassist for the GRP All-Star Big Band. Some of the many pop and Brazilian artists he has played with include Carole King, Astrud and João Gilberto, Airto Moreira and Flora Purim. Patitucci has worked with film composers such as Jerry Goldsmith, Ry Cooder, Henry Mancini, and John Williams.
He's long gone Lost John
Long gone Lost John
No hat on his head no shoes on his feet
He's a beggin the women for his meat
I had an ol' dog and his name was
like a rabbit through Bowlin' Green
Lost John walked around in rain