- published: 25 May 2006
- views: 2412
'+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; })); }); -->
The Late B.P. Helium is the solo recording project and, at times, stage name of Elephant Six musician Bryan Poole, who also goes by Bryan Helium.
Poole has spent much of his musical career playing guitar on and off with of Montreal and Elf Power since the mid-90s. He was also a member of the XTC cover band Helium Kids (a.k.a. The Mummers) from 1994 to 1995. In 2001, he released a few singles and submitted tracks to various compilations before offering his first EP, Kumquat Mae, on his 2002 national tour. It was later re-released on Orange Twin Records in 2003, and allowed him to work on his solo debut album, Amok, which was also released on Orange Twin in 2004.
Coordinates: 50°43′N 1°59′W / 50.717°N 1.983°W / 50.717; -1.983
Poole i/puːl/ is a large coastal town and seaport in the county of Dorset, on the south coast of England. The town is 33 kilometres (21 mi) east of Dorchester, and Bournemouth adjoins Poole to the east. The local council is Borough of Poole and was made a unitary authority in 1997, gaining administrative independence from Dorset County Council. The borough had a population of 147,645 according to the 2011 census, making it the second largest settlement in Dorset. Together with Bournemouth and Christchurch, the town forms the South East Dorset conurbation with a total population of over 465,000.
Human settlement in the area dates back to before the Iron Age. The earliest recorded use of the town's name was in the 12th century when the town began to emerge as an important port, prospering with the introduction of the wool trade. In later centuries the town had important trade links with North America and at its peak in the 18th century it was one of the busiest ports in Britain. During the Second World War, the town was one of the main departing points for the D-Day landings of the Normandy Invasion.
Poole is a surname, and may refer to:
Poole is a constituency represented in the House of Commons of the UK Parliament since 1997 by Robert Syms, a Conservative.
The first version of the Poole constituency existed from 1455 until 1885. During this period its exact status was a parliamentary borough, sending two burgesses to Westminster per year, except during its last 17 years when its representation was reduced to one member.
During its abeyance most of Poole was in the East Dorset seat and since its recreation in 1950 its area has been reduced as the harbour town's population has increased.
Parliament accepted the Boundary Commission's Fifth Periodic Review of Westminster constituencies which slightly altered this constituency for the 2010 general election since which it has electoral wards:
The borough is an economically very diverse borough. In the centre and north are a significant minority of Output Areas which in 2001 had high rankings in the Index of Multiple Deprivation, contributing in 2012 with the remainder to producing for Poole the highest unemployment of the constituencies in the county. However, Canford Cliffs is epitomised by one sub-neighbourhood, Sandbanks with its multi-million pound properties, the coastline area has been dubbed as "Britain's Palm Beach" by the national media. Alongside oil extraction, insurance, care, retail and customer service industries choosing the town as their base tourism contributes to overall a higher income than the national average, however the divergence is not statistically significant and the size of homes varies extensively.
the late b.p. helium performed on the rooftop on wuxtry records in athens, ga on april 3, 2005. kelly ruberto filmed a small portion with her digital camera. this is the band playing a portion of 'they broke the speed of light'
the late b.p. helium performed on the rooftop on wuxtry records in athens, ga on april 3, 2005. kelly ruberto filmed a small portion with her digital camera. this is the band playing a portion of 'cuban sunrise (the lost side of sour)'
the late b.p. helium performed on the rooftop on wuxtry records in athens, ga on april 3, 2005. kelly ruberto filmed a small portion with her digital camera. this is the band covering the minutemen's 'party with me punker.'
first track off of Amok.
Bryan Poole (the Late B.P. Helium) did an exclusive song/dancebreak/i have no idea. of Montreal live show Slim's: San Francisco, May 10, 2013
Check out some of the best Jordan Poole highlights & moments for Washington Wizards! 📌 TikTok: https://www.tiktok.com/@gdfactoryclips 📌 TikTok 2: https://www.tiktok.com/@gdextraclips 📌 Instagram: https://www.instagram.com/gdfactoryclips/ Music provided by Epidemic Sound
Poole Party alllll summer long 🌊 Celebrate Jordan Poole's birthday with a look back at his BEST PLAYS from the #NBAPlayoffs
Jordan Poole's Best Buckets From The 2021-22 Regular Season! DOWNLOAD THE NBA APP HERE: https://app.link.nba.com/App22 Subscribe to the NBA: https://on.nba.com/2JX5gSN
Jordan Poole thought the game clock was supposed to stop until he touched the ball. 💀 Subscribe: https://www.youtube.com/user/BleacherReport?sub_confirmation=1 Follow on IG: https://www.instagram.com/f/bleacherreport Follow us on Twitter: https://www.twitter.com/bleacherreport Follow us on TikTok: https://www.tiktok.com/@bleacherreport Like us on Facebook: https://www.facebook.com/bleacherreport #nba #jordanpoole #washingtonwizards
Washington Wizards vs Golden State Warriors - Full Game Highlights | December 22, 2023 | 2023-24 NBA Regular Season NBA PLAYERS REACT TO THEIR HIGHLIGHTS: https://youtube.com/playlist?list=PL_HppZy-GwSzkpunTFTXHPxEZUgmyYPAS&feature=shared 📌 Follow HoH Instagram: https://www.instagram.com/houseofhighlights 📌 Follow HoH TikTok: https://www.tiktok.com/@houseofhighlights #HouseofHighlights #NBA
📌 SHOP OUR MERCH: https://hoh.world 📌 Follow our Instagram: https://www.instagram.com/houseofhighlights 📌 Follow our TikTok: https://www.tiktok.com/@houseofhighlights 📌 Follow our Facebook: https://www.facebook.com/houseofhighlights 📌 Follow our Twitter: https://twitter.com/HoHighlights 📌 SUBSCRIBE, LIKE & COMMENT for MORE! #HouseofHighlights #NBA
用最完整的角度還原最豐富的人生, 歡迎大家來到嗨賴名人堂,這裡一定有你感興趣的球員故事。 訂閱頻道,讓生活更多一些激情! #nba #jordanpoole #kevindurant #kawhileonard #lukadoncic #bensimmons #giannisantetokounmpo #dirknowitzki #timduncan #nikolajokic #carmeloanthony #victorwembanyama #chrispaul #michaeljordan #lebronjames #jamesharden #damianlillard #tonyparker #dwighthoward #shaigilgeousalexander #demarcuscousins #dennisrodman #derrickrose #kevinlove #manuginobili #patrickewing #mikebibby #petrovic #rajonrondo #jamalmurray #roberthorry #nbadraft #alleniverson #shaquilleoneal #kobebryant #andreiguodala #stephencurry #jimmybutler #stevenash #traeyoung #dejountemurray #joelembiid #andrewwiggins #royhibbert #jamalmurray #湖人 #lakers #塞爾提克 #凯尔特人 #celtics #paugasol #kevingarnett #rayallen #deaaronfox #domantassabonis #tracymcgrady #jamorant #籃球 #體育 #運動 #...
Poole “Family Crest” or Coat of Arms (Pool, Pooley, Pole, Poley) - Poole Family History & Surname For ancestry, genealogy research & heraldic merchandise, please visit: https://www.coadb.com Email: [email protected] Phone: 785-324-2529 11AM - 9PM (ET) 1) Sir Hugh Poole, who had son, Gruffyd Poole, who had son Rev. Owen Poole of Llandecwyn (d. 1519), who had son Sir Richard Poole - Or, a lion rampant sable. Thomas Poley of Boxted Hall, son of Thomas Poley of Codreth, later there was Sir John Pooley (d. 1593) and Sir William Pooley (d. 1629), brothers 2) Sir John Poolie, knighted in Dublin, Ireland in 1599 - I assume this is Sir John Poley of Columbine Hall (d. 1612), a soldier of fortune, son of Edmund Poley, grandson of Edmund Poley of Badley - Or, a lion rampant sable. Crest: A lion ram...
With all the DNA information we have at our disposal, why should we care about the origins of our last names? I think it’s important to know because when people see our surnames, they make assumptions about our heritage. Today on the Vanntage Point we are going to take a look at 10 common southern Appalachian surnames to see if they have English origins.
This is a short documentary about the men's shed movement, more specifically this one based in Poole, Dorset, and the stories of its members A longer edit of this is in the works and will be uploaded as soon as it's finished so subscribe to keep up to date with that and any other future projects,
The ladies get into an exciting discussion about this "Fabio" styled novel. You be the judge. Subscribe on Youtube! youtube.com/jointhetea Like us on Facebook! facebook.com/jointhetea Follow us on Twitter! twitter.com/jointheteatv Join our newsletter at our WEBSITE - JoinTheTea.TV
Today on the Vanntage Point, we’ll be talking about the origins and meanings of 10 Appalachian and southern surnames. They’ll take us from America to Ireland, Scotland, England, Wales, France, and Scandinavia. [email protected]
For ancestry, genealogy research & heraldic merchandise, please visit: https://coadb.com/which-coat-of-arms-is-mine Email: [email protected] Phone: 785-324-2529 11AM - 9PM (ET) SURNAME MEANING An English, Scottish, and northern Irish surname developed as nickname for a younger man to distinguish him from an older man bearing the same personal name, from the Old English word geong, meaning “young” EARLY BEARERS Hugh le Yunge – Oxfordshire – 1273 Ralph le Younge – Staffordshire – 1273 Walter Yonge – Sussex – 1296 Richard le Yunge – Staffordshire – 1301 John Yong – Scotland – 1342 John Yhung – Scotland – 1342 NOBLE TITLES The Young Baronetcy of London was created in the Baronetage of England in 1628 for Sir Richard Young who represented Dover in the House of Commons. The title became extinct...
Unleashing the Official Video of 'Minnunnunde Mullapole..' from THARANGAM - Our Malayalam Production Venture ; Directed by Dominic Arun, Starring Tovino Thomas, Balu Varghese, Santhy Balachandran, Neha Iyer, Vijayaraghavan, Alencier Ley Lopez, Shammi Thilakan, Saiju Kurup, Dileesh Pothan, Manoj K Jayan & others.. Wunderbar Films & Mini Studio Presents THARANGAM The Curious Case of Kallan Pavithran Track : Minnunnunde Mullapole Lyrics: Manu Manjith Singer: Karthik Backing vocals: Ancy Thomas Stream This Song @ iTunes - https://itunes.apple.com/in/album/tharangam-original-motion-picture-soundtrack-single/id1279187960 Saavn - https://www.saavn.com/s/album/malayalam/Tharangam-2017/Hpiy51-zhdM_ Raaga - http://www.raaga.com/malayalam/music/Ashwin-Renju/popular/Tharangam-M0003291 Gaana - h...
Name Look - John Poole - appearance. In this video we present "John Poole" name look and feel in various scenarios. How does "John Poole" look as a personal letterhead? How does "John Poole" look on a business card? How does "John Poole" look on a computer/laptop screen? How does "John Poole" look with different background colors? How does "John Poole" look with various fonts? Support Name Look on Patreon: https://www.patreon.com/NameLook
Name Look - Robert Poole - appearance. In this video we present "Robert Poole" name look and feel in various scenarios. How does "Robert Poole" look as a personal letterhead? How does "Robert Poole" look on a business card? How does "Robert Poole" look on a computer/laptop screen? How does "Robert Poole" look with different background colors? How does "Robert Poole" look with various fonts?
One family decides to adopt and rescue a Tibetan Mastiff puppy. This was their first animal rescue, so everything seemed to be going well. As their first dog rescue, having a new dog was great! The only thing was it wouldn't stop growing. This was a weirdly cute pet you should own, but was it also the cutest exotic pets you can own? But, when the vet saw this dog, she called the police. See what happens next! Like this content? Subscribe here: https://www.youtube.com/factsverse?sub_confirmation=1 Or, watch more videos here: https://www.youtube.com/playlist?list=PLkXAntdjbcSKgHx6EQVOwNKVz1cR2hKVw
The Late B.P. Helium is the solo recording project and, at times, stage name of Elephant Six musician Bryan Poole, who also goes by Bryan Helium.
Poole has spent much of his musical career playing guitar on and off with of Montreal and Elf Power since the mid-90s. He was also a member of the XTC cover band Helium Kids (a.k.a. The Mummers) from 1994 to 1995. In 2001, he released a few singles and submitted tracks to various compilations before offering his first EP, Kumquat Mae, on his 2002 national tour. It was later re-released on Orange Twin Records in 2003, and allowed him to work on his solo debut album, Amok, which was also released on Orange Twin in 2004.
Raam Naam Ghanashyaam Shiv Naam
Hari Naam Simar Din Raat
(Janam Saphal Tu Kar Le Apanaa) 2
Maan Le Meri Baat
Hari Naam Simar Din Raat ...
Panch Paandavon Ne Jis Path Pe
Kiya Mahaaprasthaan
Us Path Pe Chalen Jo Bhi Praani
Us Ka Ho Kalyaan
Bhool Ja Tu Jag Ki Sab Baaten
Bhool Na Par Ye Baat
Hari Naam Simar Raam Naam Simar
Shiv Naam Simar Din Raat
Hari Naam Simar Din Raat