- published: 04 Aug 2023
- views: 34341329
'+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; })); }); -->
Deborah Henson-Conant (born November 11, 1953 in Stockton, California) is an American harpist and composer. Nicknamed "the Hip Harpist", she is known for her flamboyant stage presence and her innovation with electric harps.
Deborah Henson-Conant describes her music as "cross-genre: jazz-pop-comedy-folk-blues-flamenco-celtic". Deborah performs one-person shows in theaters, concert halls and festivals; and she does original music and theatre shows with symphony orchestras. Her performances mix music with theatrical and story elements. She orchestrates all her own music when she plays with symphony and often engages symphonic musicians in unexpected ways. She states that her career objectives include a desire to reevaluate misconceptions and underestimations of the harp instrument, of the stage medium, and of the self.
The soundtrack of her 2006 DVD Invention & Alchemy, received a Grammy nomination, and the video version began broadcast on American public television in 2007. Her performance series Inviting Invention (2006) presents a series of "performance explorations" that includes both musical and non-musical guests collaborating onstage with Henson-Conant.
Deborah (Hebrew: דְּבוֹרָה, Modern Dvora, Tiberian Dəḇôrā ; "Bee") was a prophet of the God of the Israelites, the fourth Judge of pre-monarchic Israel, counselor, warrior, and the wife of Lapidoth according to the Book of Judges chapters 4 and 5. The only female judge mentioned in the Bible, Deborah led a successful counterattack against the forces of Jabin king of Canaan and his military commander Sisera; the narrative is recounted in chapter 4.
Judges chapter 5 gives the same story in poetic form. This passage, often called The Song of Deborah, may date to as early as the 12th century BC and is perhaps the earliest sample of Hebrew poetry. It is also significant because it is one of the oldest passages that portrays fighting women, the account being that of Jael, the wife of Heber, a Kenite tent maker. Jael killed Sisera by driving a tent peg through his temple as he slept. Both Deborah and Jael are portrayed as strong independent women. The poem may have been included in the Book of the Wars of the Lord mentioned in Numbers 21:14.
Deborah (Hebrew: דְּבוֹרָה Dəḇōrāh) is the name of the nurse of Rebecca (Genesis 35:8). She is first mentioned by name in the Torah when she dies in a place called Alon Bachot, and is buried by Jacob, who is returning with his large family to Canaan.
According to Rashi, Deborah was sent by Laban to care for his sister Rebecca when the latter went to marry Isaac (Genesis 24:59). After Jacob had been away from home for 22 years, Rebecca dispatched her loyal nurse to tell Jacob that it was safe for him to return home. The elderly nurse delivered her message and died on the return journey.
Un fiocco nero per Deborah (internationally released as A Black Ribbon for Deborah, Deborah, Deborah Black Sun and The Torment) is a 1974 Italian horror film directed by Marcello Andrei. AllMovie defines the film a "low-wattage horror piece". It was filmed in Verona.
Deborah Hanna - Takkan Berpaling DariMu available on all digital platforms: https://aquariusmusikindo.lnk.to/HannaTakkanBerpalingDariMu Setelah merilis single debutnya bertajuk 'Layang Layang' kini Hanna mengeluarkan sebuah single recycle yang sebelumnya dipopulerkan Rossa bertajuk 'Takkan Berpaling DariMu'. Boleh dibilang lagu ini memiliki arti yang sangat tinggi, sebuah rasa terima kasih kepada Tuhan atas segala nikmat yang diberikan kepada hambanya. Produser musik yang telah mencetak banyak hits itu memberikan sentuhan iringan petikan gitar akustik, string section yang bersaut-sautan dengan drum, juga backing vocal yang pas. Bukan tanpa alasan kenapa Hanna memilih lagu ini. Awalnya Ia sering iseng membuat konten di TikTok menyanyikan 'Takkan Berpaling dariMu', ternyata Ia mendapat ...
Deborah Hanna - Suara Hati Seorang Kekasih, available on all digital platforms: https://aquariusmusikindo.lnk.to/HannaSuaraHatiSeorangKekasihID Karya cipta yang menawan dari Melly Goeslaw atas lagu "Suara Hati Seorang Kekasih" ini berpadu dengan sentuhan magis dari aransemen Andi Rianto mengantarkan Deborah Hanna kembali menyapa penikmat musik di tanah air. Terima kasih dan apresiasi setinggi-tingginya untuk karya-karya musik yang indah dari Melly Goeslaw dan Andi Rianto. Menyentuh rasa di hati! Itulah yang diharapkan dapat diberikan dari lagu ini, Hanna mencoba untuk melebur menyatu dengan lagu yang dulu pernah menjadi OST. Ada Apa Dengan Cinta ini. Layaknya seorang kekasih yang menyampaikan kerinduan, kemarahan, dan seluruh emosi yang ditujukan kepada pasangannya, Hanna ingin memberik...
"Nobody’s Supposed to Be Here" by Deborah Cox Listen to Deborah Cox: https://DeborahCox.lnk.to/listenYD Subscribe to the official Deborah Cox YouTube channel: https://DeborahCox.lnk.to/subscribeYD Watch more Deborah Cox videos: https://DeborahCox.lnk.to/listenYD/youtube Follow Deborah Cox: Facebook: https://DeborahCox.lnk.to/followFI Instagram: https://DeborahCox.lnk.to/followII Twitter: https://DeborahCox.lnk.to/followTI Spotify: https://DeborahCox.lnk.to/followSI Website: https://DeborahCox.lnk.to/followWI YouTube: https://DeborahCox.lnk.to/subscribeYD Lyrics: How did you get here? Nobody's supposed to be here I tried that love thing for the last time My heart says "No, no." Nobody's supposed to be here But you came along and changed my mind #NobodysSupposedtoBeHere #DeborahCox #Off...
Deborah de Luca performing an exclusive DJ set at Château de Chambord, France for Cercle. ☞ Join Cercle Odyssey immersive events: https://Cercle.lnk.to/CercleOdysseyID ☞ Join our next events: https://Cercle.lnk.to/Members ☞ Listen to our playlists, tracks & sets: https://Cercle.lnk.to/Playlists ☞ Deborah de Luca @deborahdelucamusic https://www.instagram.com/deborahdeluca/ https://www.tiktok.com/@deborahdelucaofc https://www.facebook.com/deborahdelucadj/ https://open.spotify.com/artist/144HzhpLjcR9k37w5Ico9B https://music.apple.com/fr/artist/deborah-de-luca/454571932 ____ 47°36'58.3"N 1°31'01.6"E Video credits: Artist: Deborah de Luca Produced by Cercle Executive producers: Philippe Tuchmann & Derek Barbolla Directed by: Derek Barbolla Assisted by: Pol Souchier, Quentin Eynaud, Agat...
SONG CREDITS: ●PRODUCTION: DL MINISTRIES & MNC PRODUCTION ●EXECUTIVE PRODUCER: CEDRIC KASEBA ●MUSIC ARR: JAMES MAJILA ●GUITARIST: FORTUNE MVULA ●MIX & MASTERING: DJIZZO BALUME ●SONGWRITER: DEBORAH LUKALU ●CO-WRITER: NARCISSE MAJILA ●VIDEO ANIMATION: 4D CREA
The late hours of the night is the darkest and most beguiling, and @deborahdelucamusic matched the energy with her alluring, heavy-hitting sound. _ #TimeWarp #Mannheim #Techno
Deborah in the Bible - The Judge Who Saved Israel - Bible Stories #biblestudy #womeninthebible Step into the incredible story of Deborah, the only female judge of Israel, whose faith, wisdom, and courage saved a nation. From her powerful role as a prophetess to leading Barak into battle, Deborah’s story is a testament to God’s ability to use anyone for His purpose. Witness how she inspired victory over the mighty Canaanite army and brought peace to Israel for 40 years. 📖 What You’ll Discover: Deborah’s unique role as a judge and spiritual leader. How her faith in God turned the tide of a hopeless battle. The significance of Deborah’s song of triumph in the Bible. 📜 Key Bible Verses: Judges 4:4-16, Judges 5:1-31 We are very grateful you are here! If our content is a blessing to you and...
📍NOTE: The album "TRUST IN THE STORM " is now available on all digital music outlets: ■ITUNES:http://itunes.apple.com/album/id1681051662?ls=1&app=itunes ■YOUTUBE MUSIC: https://youtube.com/playlist?list=OLAK5uy_l9j7oqTfU4ZxPClD0MvayV1vSkTDGGNH8 ■BOOMPLAY:https://www.boomplaymusic.com/share/album/67582138?srModel=COPYLINK&srList=ANDROID ■SPOTIFY:https://open.spotify.com/album/708hJahYWrad6HBiPWzoOf?si=rZNdLE-vR_Wm7tm7_BCw6w&utm_source=copy-link Stay Blessed ❗️
Mamit Vision Vangpui Lunglen Season 5 (Haw Runpui) Deborah Ralte - Duhlai, ti-a min koh mai le! Phuahtu - Vankhama Artiste Deborah Ralte https://www.instagram.com/deborah_.ralte Directed by Zochawi_k https://www.instagram.com/zochawi_k DoP Chamtea Grfix https://www.instagram.com/chamtea_grafix Wardrobe Fungki https://www.instagram.com/_fungki_ Diva Fashion & Bridals https://www.instagram.com/diva_fashion_and_bridals Makeup Mahlimi Beauty Bar https://www.instagram.com/mahlimi_beauty_bar Music GB King Music https://www.instagram.com/gbking__ Special Thanks TP Chawngthu Re-upload leh lyrics video siam kan phal lo. Ti lui kan awm chuan dan angin hma kan la ang.
Please feel free to use these short animated Bible verses videos however you wish! They're perfect for sunday school lessons, youth group presentations, lectures, or personal study and reflection. Don't forget to subscribe if you like them and you'd like daily inspirational reminders of the power of God's Word. Comments, questions, requests, or just a friendly hello are always welcome! Have peace and be blessed. ----------------------------------------------------------- Here's the text used: 35:8 But Deborah Rebekah's nurse died, and she was buried beneath Bethel under an oak: and the name of it was called Allonbachuth. ----------------------------------------------------------- To learn more, visit us at http://www.spiritualwisdommedia.com © 2017-2019 Spiritual Wisdom Media. All ...
Did you know that God gives them and us the power to do difficult things?
But Deborah Rebekah's nurse died, and she was buried beneath Bethel under an oak: and the name of it was called Allonbachuth. From, Genesis 35:8, King James
Now Deborah, Rebekah's nurse, died and was buried under the oak below Bethel. So it was named Allon Bacuth.
Did you know there was a left-handed judge and a female judge from the Book of Judges? Tap in and hear about them. Listen for God'goodness in overview video of the Book of Judges and God's goodness. https://youtu.be/LRHJfIfk6gg #goodnessofgod #understandingthebible Thanks for being here. Please connect with me on: Instagram at @debra.e.johnson Website at https://tellofhisgoodness.now.site Email: [email protected] 🔸🔸🔸🔸🔸🔸🔸🔸🔸🔸 Consider supporting my other endeavors: * Christian author https://amazon.com/author/debraejohnson * Personal Transformation Coach https://renaissanceworks.now.site
Happy Mother's Day! You've likely heard of one of the judges of Israel named Deborah but today I want to bring to light "The Other Deborah". How did a nurse for Rebekah, Isaac's wife, come to be mentioned in the history of the nation of Israel? Join me in Genesis 35:8 as we explore what God-like characteristics are descriptive of Deborah and all mothers.
Jacob becomes Israel and Deborah dies.
Deborah Henson-Conant (born November 11, 1953 in Stockton, California) is an American harpist and composer. Nicknamed "the Hip Harpist", she is known for her flamboyant stage presence and her innovation with electric harps.
Deborah Henson-Conant describes her music as "cross-genre: jazz-pop-comedy-folk-blues-flamenco-celtic". Deborah performs one-person shows in theaters, concert halls and festivals; and she does original music and theatre shows with symphony orchestras. Her performances mix music with theatrical and story elements. She orchestrates all her own music when she plays with symphony and often engages symphonic musicians in unexpected ways. She states that her career objectives include a desire to reevaluate misconceptions and underestimations of the harp instrument, of the stage medium, and of the self.
The soundtrack of her 2006 DVD Invention & Alchemy, received a Grammy nomination, and the video version began broadcast on American public television in 2007. Her performance series Inviting Invention (2006) presents a series of "performance explorations" that includes both musical and non-musical guests collaborating onstage with Henson-Conant.