- published: 09 Apr 2023
- views: 4004676
'+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 Douglas Surman (born 30 August 1944) is an English jazz saxophone, bass clarinet and synthesizer player, and composer of free jazz and modal jazz, often using themes from folk music as a basis. He has also composed and performed much music for dance performances and film soundtracks.
Surman was born in Tavistock, Devon. He initially gained recognition playing baritone saxophone in the Mike Westbrook Band in the mid-1960s, and was soon heard regularly playing soprano saxophone and bass clarinet as well. His first playing issued on a record was with the Peter Lemer Quintet in 1966. After further recordings and performances with jazz bandleaders Mike Westbrook and Graham Collier and blues-rock musician Alexis Korner, he made the first record under his own name in 1968.
In 1969 he founded the well-regarded and influential group The Trio along with two expatriate American musicians, bassist Barre Phillips and drummer Stu Martin. In the mid-1970s he founded one of the earliest all-saxophone jazz groups, S.O.S., along with alto saxophonist Mike Osborne and tenor saxophonist Alan Skidmore. During this early period he also recorded with (among others) saxophonist Ronnie Scott, guitarist John McLaughlin, bandleader Michael Gibbs, trombonist Albert Mangelsdorff, and pianist Chris McGregor's Brotherhood of Breath.
Wizard is a synonym for a magician.
Wizard, the wizard or wizards may also refer to:
The Wizard of New Zealand QSM (born Ian Brackenbury Channell; 4 December 1932) is a New Zealand educator, comedian, magician and politician who has become something of a national icon.
Ian Brackenbury Channell was born on 4 December 1932 in London. Educated at Framlingham College, in 1951-53 he served in the Royal Air Force as an airman and in 1963 he graduated from the University of Leeds with a double honours degree in psychology and sociology. Shortly afterwards he was recruited by the University of Western Australia Adult Education Board to run their community arts programme. In 1967 he joined the teaching staff of the newly opened School of Sociology at the University of New South Wales in Sydney.
During the student upheavals, which began at this time, he created a direct action reform movement called Alf (Action for Love and Freedom) and implemented this with what he announced to be "The Fun Revolution". The result was a revitalisation of the university referred to in the Sydney Morning Herald as "the university that swings".
"The Wizard" is a song by the British heavy metal band Black Sabbath, taken from their 1970 album Black Sabbath. It is the second track on the record. The song was composed by all four members of the group and was produced by Rodger Bain."The Wizard" was the B side to the title track of the band's second album Paranoid.
"The Wizard" is about a wizard who uses his magic to encourage people he encounters. It was also meant to be about their drug dealer at the time. The song was also inspired by the character of Gandalf from The Hobbit and The Lord of the Rings.
The song was covered by Rob Halford's band Bullring Brummies for the Black Sabbath tribute album Nativity in Black.
The song was covered by Zakk Wylde's band Pride and Glory on the second disc of the reissue of Pride and Glory. Wylde had also been a member of Ozzy Osbourne's solo band at the time.
Stream ‘REDRUM Wizard (Gangsta Grillz)’ Here: https://BigBoogie.lnk.to/REDRUMWizard Follow Big Boogie: https://www.instagram.com/big_boogie_music/ https://www.tiktok.com/@bigboogieofficial https://twitter.com/Big_Boogie_R4L https://www.facebook.com/BigBoogieR4L/ Follow DJ Drama: https://www.instagram.com/djdrama/ https://www.tiktok.com/@dramalikethedj https://twitter.com/djdrama Credits: Directed By: Camera Gawd (@cameragawd) #BigBoogie #DJDrama #Wizard #REDRUMWizard Music video by Big Boogie performing Wizard. © 2024 CMG http://vevo.ly/JsEzQ6
◆$35 NBA Jerseys @ Pool Of Jerseys◆ https://poolofjerseys.com Follow us on TikTok: https://www.tiktok.com/@hooperhighlightss Follow us on Instagram: https://www.instagram.com/hooperhighlights00/ DISCLAIMER!! WE ARE NOT AFFILIATED WITH THE BUSINESSES WE PROMOTED IN ANY WAY!! ALL CLIPS ARE PROPERTY OF THE NBA. NO COPYRIGHT INFRINGEMENT IS INTENDED. ALL CLIPS ARE EDITED TO FOLLOW THE "FREE USE" GUIDELINES OF YOUTUBE!!
School fights just aren't what they used to be... Subscribe and like for more skits #shorts All My Links: https://linktr.ee/mobowl Socials: Tiktok: https://www.tiktok.com/@mobotv IG: https://www.instagram.com/mobootv/ Discord: https://discord.gg/F7JSJPMcHt Gaming YouTube: https://www.youtube.com/mobo1
You're watching the official music video for Wizzard - 'I Wish It Could Be Christmas Everyday' from the 1973 album 'Wizzard Brew'. 'I Wish It Could Be Christmas Everyday' has been remastered to HD to celebrate its 50th birthday! Listen to Wizzard and more Christmas classics here https://TOPSIFY.lnk.to/100GreatestXmas 🎄 🎅 🎁 Subscribe to the Rhino Channel! https://Rhino.lnk.to/YouTubeSubID Lyrics: When the snowman brings the snow Well he just might like to know He's put a great big smile on somebody's face If you jump into your bed Quickly cover up your head Don't you lock the doors You know that sweet Santa Claus in on the way Well I wish it could be Christmas every day When the kids start singing and the band begins to play Oh, I wish it could be Christmas every day Let the bells ring...
Download 'Wizard' by Martin Garrix & Jay Hardway' HERE http://smarturl.it/itunes_wizard Or you can grab your copy on Beatport : http://btprt.dj/1bDcC8j Subscribe to Spinnin TV now: http://bit.ly/SPINNINTV Join Martin Garrix: http://www.facebook.com/MartinGarrix http://www.twitter.com/MartinGarrix http://www.soundcloud.com/MartinGarrix Join Jay Hardway: http://www.facebook.com/JayHardwayOfficial http://www.twitter.com/JayHardway http://www.soundcloud.com/Jay-Hardway Directed by: http://markloonen.nl --- The Spinnin’ Records YouTube channel is the home for all music videos of the world’s leading dance record label! We feature the latest music videos by Spinnin’ artists like Oliver Heldens, Sam Feldt, KSHMR, Ummet Ozcan, Blasterjaxx, Merk & Kremont, Timmy Trumpet, Tujamo, Alok, Curbi,...
Why does it take forever to get a car repaired today? After working as a mechanic for over 20 years here are 5 reasons why cars take longer than they should to get correctly fixed in my shop. ➡️ Don't forget to check out @MrsWizardsWays and her stories from working at my shop: https://youtu.be/NP4_9Y-xjRE RED GLA VIDEO: https://youtu.be/CzjevTQ0Js8 BLUE GLA VIDEO: https://youtu.be/5kMMe6axcII 🔮🔧 AMAZON AFFILIATE STORE #ad : https://www.amazon.com/shop/omegaautoclinic 🔧🔮 🇬🇧🇬🇧 UK AMAZON STORE #ad : https://www.amazon.co.uk/shop/omegaautoclinic 🇬🇧🇬🇧 👕 CAR WIZARD MERCH: https://teespring.com/stores/carwizard 👕 📷 INSTAGRAM @realcarwizard https://www.instagram.com/realcarwizard/ 📷 🧰 BENDPAK LIFTS: https://www.bendpak.com 🧰 🎞️🚙 CAR WIZARD SHORTS ON FB: https://www.facebook.com/CarWizardFB...
Playing Call of Duty Modern Warfare 2 DMZ Solo! LIVE With Some Solo DMZ, Missions and some Action! Thanks for Watching! as always, if you enjoyed the video.. smooch that sub button because ill be pumping out that juicy content! Join The Discord! : discord.gg/S5b59hn88F Follow Me On Twitter : https://twitter.com/ImWizerd Join The Guild and Support The Channel! i appreciate it (: https://www.youtube.com/channel/UCwdxdrcePxVyG56ZytAKfag/join Subscribe and help me hit 25K subs! thank you!! call of duty modern warfare 2 dmz solo - Call of Duty: Modern Warfare 2 DMZ Solo is a New Experience for Call of Duty players and Brings a Refreshing atmosphere where you can choose your own adventure. hunt players solo or with a squad or simply choose to be friendly and loot! possibilities are...
Provided to YouTube by Vydia WIZARD · 777Villain WIZARD ℗ 2021 777villian Released on: 2021-03-07 Composer: 777 Villian Auto-generated by YouTube.
Electrical and wiring problems in a car can feel like you're living in a nightmare. I have three vehicles in my shop that have VERY serious and complex wiring problems. You won't believe how bad they are. ➡️ Don't forget to check out @MrsWizardsWays and her great content. 🚐 LAND ROVER VIDEO: https://youtu.be/TNz92xwDsXY 🚘 500SL VIDEO: https://youtu.be/LZMfkGTaLjE 🛻 DURAMAX SWAP VIDEO: https://youtu.be/jc18bcYtM8g 🚗 600SL VIDEO: https://youtu.be/hO0LM7WFWVw 🔮🔧 AMAZON AFFILIATE STORE #ad : https://www.amazon.com/shop/omegaautoclinic 🔧🔮 🇬🇧🇬🇧 UK AMAZON STORE #ad : https://www.amazon.co.uk/shop/omegaautoclinic 🇬🇧🇬🇧 👕 CAR WIZARD MERCH: https://teespring.com/stores/carwizard 👕 📷 INSTAGRAM @realcarwizard https://www.instagram.com/realcarwizard/ 📷 🧰 BENDPAK LIFTS: https://www.bendpak.com 🧰 🎞...
If you walk down the streets of Christchurch in New Zealand, you are very likely to bump into a man wearing a cloak, and a very pointy hat. But he’s not heading to a fancy-dress party… he’s New Zealand’s official wizard! Since 1998, British born Jack Brackenbury has been paid over £8,000 a year for “wizardry”. Jack joins us today live from New Zealand, with his 39-year-old sorcerer’s apprentice Ari Freeman, to tell us about his magical career, and how he hopes to use his powers to bring some joy to the world. Broadcast on 11/08/2020 Subscribe now for more! http://bit.ly/1JM41yF Like, follow and subscribe to This Morning! Website: http://bit.ly/1MsreVq YouTube: http://bit.ly/1BxNiLl Facebook: http://on.fb.me/1FbXnjU Twitter: http://bit.ly/1Bs1eI1 This Morning - every weekday on ITV an...
The Wizard of New Zealand, also named Ian Brackenbury Channell is a magician, educator, comedian, politician, living work of art and a funny and wise guy. He is the Government-Appointed and Official Wizard of New Zealand and has been protecting the Kiwis since 1974 when he first arrived in Christchurch. He began speaking in Cathedral Square dressed as a full wizard, and the rest is history. He hatched from a giant egg, hovered over a rugby match, and helped the home team win and had many more adventures I talked about in this video. Will this wizard make New Zealand be in the center of the Universe and stop missing on world maps? Probably not, but still, the wizard is an interesting character, so check the video if you want to know who this guy is and how he became a wizard. Please subsc...
Award Winning Documentary on the Official Wizard of New Zealand QSM | Copyright Samuel Lewis Goldsmith Productions 2010 www.wizard.gen.nz (official site) www.WizardofNewZealand.com (official WizardNEWS) The Wizard of New Zealand QSM biography, documentary that follows the life of the first ever man in the world to be appointed by a government as an Official Wizard. The former Prime Minister of New Zealand, Right Honorable Mike Moore, in 1990, proclaimed Ian Brackenbury Channel as the Official Wizard of New Zealand and appointed the Wizard to protect the Government of New Zealand. The Documentary contains interviews with: - The Wizard of New Zealand QSM; - The Right Honorable Mike Moore ONZ, Prime Minister of New Zealand 1990; and - Gary Moore, Mayor of Christchurch 1998-2007. They g...
Episode 11 of the podcast is possibly the most anticipated and awaited one to date – a full interview with the official Wizard of New Zealand. Discussion topics range all the way from the city council, history, being at school, climate change, civic duty, the ideology of society and so much more. It's definitely a hefty episode, but it's filled to the brim with top-notch content throughout. This is an exclusive interview with one of New Zealand's legendary personalities. The Wizard's views are his own and we hope you enjoy his unique perspective on life.
From 2004...Part 3 in a series of conversations with the controversial Wizard of New Zealand. Here he discusses marriage and offers Keir Menzies some tips on how to handle women. (TheFreeShow is no longer active).
The episode features The Wizard of New Zealand and his apprentice, Ari Freeman. The Wizard was decreed a living work of art by the NZ Art Gallery Directors’ Council, named the official Wizard of New Zealand by Prime Minister Michael Moore in in 1990, and was awarded the Queens Service Medal in 2009. Ari Freeman is a wizard and musician and is currently writing a book grounding esoteric, magical and occult ideas within the philosophical framework of pragmatism. We discuss the definition of magic and pragmatism, the wizards origin stories alongside romantic revivalism and the importance of love, logic, liberty and fun. Follow us for future episodes. Shownotes available at thegoodtimeline.com/podcast Recorded in the Wizards Garden, Christchurch, New Zealand
Get a glimpse into the studio with our first Wizard of Oz backstage video - for some very fun rehearsal footage and insight from choreographer Francesco Ventriglia. #rnzbwizard, #wizardofoz #behindthescenes, #studiotime,
John Douglas Surman (born 30 August 1944) is an English jazz saxophone, bass clarinet and synthesizer player, and composer of free jazz and modal jazz, often using themes from folk music as a basis. He has also composed and performed much music for dance performances and film soundtracks.
Surman was born in Tavistock, Devon. He initially gained recognition playing baritone saxophone in the Mike Westbrook Band in the mid-1960s, and was soon heard regularly playing soprano saxophone and bass clarinet as well. His first playing issued on a record was with the Peter Lemer Quintet in 1966. After further recordings and performances with jazz bandleaders Mike Westbrook and Graham Collier and blues-rock musician Alexis Korner, he made the first record under his own name in 1968.
In 1969 he founded the well-regarded and influential group The Trio along with two expatriate American musicians, bassist Barre Phillips and drummer Stu Martin. In the mid-1970s he founded one of the earliest all-saxophone jazz groups, S.O.S., along with alto saxophonist Mike Osborne and tenor saxophonist Alan Skidmore. During this early period he also recorded with (among others) saxophonist Ronnie Scott, guitarist John McLaughlin, bandleader Michael Gibbs, trombonist Albert Mangelsdorff, and pianist Chris McGregor's Brotherhood of Breath.
Down on the fairy tale path, there is a wizard awaiting you
with aluminum fashion and with panthers to boot
Send me your power through the lightning in your eyes
Wearing the magic hat, yeah, yeah, yeah.