'+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; })); }); -->

Olav Basoski

Olav Basoski (born 1968, Haarlem, Netherlands) is a Dutch DJ/remixer/House producer.

In 2005, Basoski teamed up with the British dancehall artist Michie One to record "Waterman". A remake of "Bam Bam" (originally recorded by Sister Nancy), it became a hit in the United States at both clubs and radio, where it debuted at number 22 on Billboard's Hot Dance Airplay chart in its March 27, 2006 issue. He has been featured on many compilation albums including the UK's Ministry of Sound.

Basoski has had two hits in the UK Singles Chart, "Waterman" (#45, 2005) and "Opium Scumbagz" (#56, 2000).

Discography

Singles

  • 1997 "Moscow Street Rock"
  • 1997 "Water"
  • 1997 "Samplitude Vol. 1"
  • 1998 "Samplitude Vol. 2"
  • 1998 "Get Movin' EP"
  • 1998 "Samplitude Vol. 3"
  • 1998 "Samplitude Vol. 4"
  • 1998 "Samplitude Vol. 5"
  • 1999 "Samplitude Vol. 6"
  • 2000 "Opium Scumbagz"
  • 2000 "Samplitude Vol. 7"
  • 2000 "Samplitude Vol. 8"
  • 2001 "Samplitude Vol. 9"
  • 2002 "Best Of Samplitude"
  • 2002 "Most Wanted Singles Part 1"
  • 2002 "Samplitude Vol. 10"
  • 2002 "Samplitude Vol. 11"
  • Paul Thomas

    Paul Thomas may refer to:

  • Paul Thomas (academic) (born 1941), Australian university vice-chancellor
  • Paul Thomas (basketball) (born 1962), American basketball coach
  • Paul Thomas (bassist) (born 1980), American bassist
  • Paul Thomas (cricketer) (born 1971), English cricketer
  • Paul Thomas (figure skater), British figure skater
  • Paul Thomas (footballer) (born 1982), Australian rules footballer
  • Paul Thomas (pornographic actor) (born 1947), American pornographic actor and director
  • Paul Thomas (writer) (born 1951), New Zealand writer
  • Paul Richard Thomas (born 1977), French photographer
  • See also

  • All pages beginning with "Paul Thomas"
  • All pages with titles containing Paul Thomas
  • Paul Thomas (bassist)

    Paul Anthony Thomas (born October 5, 1980 in Waldorf, Maryland) is an American musician best known as the bassist for the pop punk band Good Charlotte.

    Life and career

    Paul Anthony Thomas was born October 5, 1980. His first instrument was guitar, but he later switched to bass. Thomas grew up with his friends Benji and Joel Madden and the three attended high school together in La Plata, Maryland. Before graduation, the three along with Billy Martin formed the band Good Charlotte. On the fifth of October 2010, his daughter was born; Willow Monroe Thomas. He also appeared with his band mates in the 2001 film Not Another Teen Movie and the television special iCarly iGo to Japan.

    In 2010, his wife gave birth.

    Discography

  • Good Charlotte (2000)
  • The Young and the Hopeless (2002)
  • The Chronicles of Life and Death (2004)
  • Good Morning Revival (2007)
  • Cardiology (2010)
  • See also

  • List of bass guitarists
  • References

  • Thomas, Paul. "New GC Family Member".
  • External links

  • Paul Thomas at the Internet Movie Database
  • Paul Thomas (basketball)

    Paul Thomas (born October 28, 1962) is the women's basketball head coach at Saint Mary's College in Moraga, California. He has also served as head coach at Cal Poly Pomona and Hamline University.

    Early life

    Paul Thomas began playing basketball in Creighton, Nebraska. He would attend Creighton High School, where he played forward. While at Creighton, Thomas was made an all-state forward and named the 1982 Bulldogs Most Valuable Player.

    After high school, Thomas would spend the next two years at Midland Lutheran College in Fremont, Nebraska. Thomas continued to play forward until he decided to focus on what he wanted to go into; coaching.

    Thomas' history in coaching goes back to 1985. Thomas would transfer from Midland Lutheran and attend Wayne State College from 1985-1988. He would receive his bachelor's degree in 1986 and his master's degree in 1988 in physical education. While at Wayne State, Thomas also served as a student assistant for the women's basketball team and as an assistant coach for the Pender High School girls team.

    Podcasts:

    • Bingo Players Cry Just A Little Olav Basoski Remix

      published: 19 May 2011
    • Bingo Players - Cry Just A Little (Snamco Big Bootleg)

      I do not own anyting of the original track,

      published: 05 Jul 2011
    • Sil - Windows (Olav Basoski Remix)

      Buy here on Beatport : https://www.beatport.com/en-US/html/content/release/detail/320819/ This track absolutely smashed the overall dance charts to pieces a few years back when the original landed, and now there are some fresh new remixes to get your teeth stuck into! Olav Basoski drops this tough and tribal re-rub that uses those rasping synths from the original, prime-time and rowdy beats! Don't forget to check out the techy Sonny Wharton remix on the flip! David Guetta: 'Nice package -- Olav is on fire again with his mix' Riley & Durrant: 'Always loved this record -- and this new update is simply brilliant!' Sander van Doorn: 'Played in Identity and charted in my top 5' D.Ramirez: 'Nice!!' DJ Chus: 'Bomb! Robbie Rivera: 'Both rock' Thomas Gold: 'Cool -- I like it!' Umek: ...

      published: 18 Jan 2011
    • Ballroom Passenger Vinyl Olav Basoski Remix

      Strictly for entertainment purposes. No copyright infringement intended. All rights go to the producers of the track. If you want me to delete this video, message me and I will do it. Image artwork by: Ronny Freems ( https://www.facebook.com/ronny.freems )

      published: 15 Jan 2017
    • Olav Basoski - Pop (Original Mix)

      Buy here on Beatport : https://www.beatport.com/en-US/html/content/release/detail/287449/ No the record is not stuck! It's 'Pop', Olav Basoski's brand new joint on Rootz Records. House with loads of spunk, crackly beats and a glitchy sauce. Everything a nasty bomb like needs is in there. POP! David Guetta: 'Tasty! -- Good for me' Riley & Durrant: 'Like it -- will support on the radio' Mark Knight: 'Nice!' DJ Disciple: 'Olav never dissapoints!' Erick E: 'Good to see Olav back on the block' --- 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, Mike Williams...

      published: 13 Oct 2010
    • Bingo Players - Cry (Just A Little) (DJ Lexiqueto Remix) (Official Music Video)

      Bingo Players - Cry (Just A Little) (DJ Lexiqueto Remix) (Official Music Video) #remix #cry #bingoplayers #bingo #players @BingoPlayers More Music: https://hearthis.at/djlexiqueto-musica-electronica/? Welcome to our YouTube video titled "Bingo Players - Cry (Just A Little)"! In this electrifying video, we take you on a nostalgic journey through the iconic tune that took the world by storm. Opening with a stunning visual display, we dive into the heart-stirring beats and infectious rhythms of "Cry (Just A Little)" by the celebrated Dutch DJ duo, Bingo Players. Instantly recognizable, this track was released in 2011 and became an instant sensation, reaching the top of numerous music charts worldwide. As the video unfolds, we witness the power of music as it brings together people...

      published: 11 Feb 2024
    • My Digital Enemy Feat. Mary Pearce - Release My Soul (Olav Basoski Remix)

      Buy here on Beatport : https://www.beatport.com/en-US/html/content/release/detail/305316/ Grand vocal house by My Digital Enemy and Mary Pearce. 'Release My Soul' features a main hook that sticks to your mind like super glue. Feel good, lively and fresh this release is. Including a fat Olav Basoski remix on the flip side! Joachim Garraud: 'Good good Basoski!' Prok & Fitch: 'MDE -- On fire as usual!' Gregori Klosman: 'Will play it!' Abel Ramos: 'Total support' Thomas Gold: 'Like it a lot!' DJ DLG: 'Yes Yes Yes! OB Does it again! 10/10 Full support ' Luis Lopez: 'BOMB!' DMS12: 'Killer tune!' --- 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 He...

      published: 01 Dec 2010
    • Bingo Players - Cry (Just a Little) LIVE at mur.mur in Borgata Atlantic City

      Bingo Players performing "Cry (Just a Little)" live at mur.mur in Borgata Atlantic City!

      published: 14 Jun 2012
    • Basto - Gregory's Theme (Olav Basoski Remix)

      Buy here on Beatport : https://www.beatport.com/en-US/html/content/release/detail/335509/ The massive tune by Basto was overhauled by house master Olav Basoski with astonishing result. This electrifying remix of 'Gregory's Theme' has everything needed to light fire to any self respecting dance floor. What a MONSTER! --- 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, Mike Williams, Lucas & Steve and many, many more! Expect daily uploads of official music videos, lyric videos and artwork videos across genres like dance, house, electro house, future hous...

      published: 23 Feb 2011
    • Elektrochemie LK Feat. Caitlin Devlin - Sweet Darling (Olav Basoski Remix)

      Label: Leaded Country: Germany Released: 2003

      published: 26 Nov 2009
    developed with YouTube
    Bingo Players   Cry Just A Little Olav Basoski Remix
    6:44

    Bingo Players Cry Just A Little Olav Basoski Remix

    • Order:
    • Duration: 6:44
    • Uploaded Date: 19 May 2011
    • views: 3794
    https://wn.com/Bingo_Players_Cry_Just_A_Little_Olav_Basoski_Remix
    Bingo Players - Cry Just A Little (Snamco Big Bootleg)
    3:04

    Bingo Players - Cry Just A Little (Snamco Big Bootleg)

    • Order:
    • Duration: 3:04
    • Uploaded Date: 05 Jul 2011
    • views: 755
    I do not own anyting of the original track,
    https://wn.com/Bingo_Players_Cry_Just_A_Little_(Snamco_Big_Bootleg)
    Sil - Windows (Olav Basoski Remix)
    5:28

    Sil - Windows (Olav Basoski Remix)

    • Order:
    • Duration: 5:28
    • Uploaded Date: 18 Jan 2011
    • views: 21834
    Buy here on Beatport : https://www.beatport.com/en-US/html/content/release/detail/320819/ This track absolutely smashed the overall dance charts to pieces a few years back when the original landed, and now there are some fresh new remixes to get your teeth stuck into! Olav Basoski drops this tough and tribal re-rub that uses those rasping synths from the original, prime-time and rowdy beats! Don't forget to check out the techy Sonny Wharton remix on the flip! David Guetta: 'Nice package -- Olav is on fire again with his mix' Riley & Durrant: 'Always loved this record -- and this new update is simply brilliant!' Sander van Doorn: 'Played in Identity and charted in my top 5' D.Ramirez: 'Nice!!' DJ Chus: 'Bomb! Robbie Rivera: 'Both rock' Thomas Gold: 'Cool -- I like it!' Umek: 'Olav Basoski is doing great house!' Anthony Pappa: 'Both mixes are very strong' --- 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, Mike Williams, Lucas & Steve and many, many more! Expect daily uploads of official music videos, lyric videos and artwork videos across genres like dance, house, electro house, future house, deep house, big room and trap. Make sure to subscribe to Spinnin' Records: http://bit.do/spinnintv ..and turn on notifications to stay updated with all new uploads!🔔 Follow Spinnin’ Records: https://open.spotify.com/user/spinninrecordsofficial https://soundcloud.com/spinninrecords https://facebook.com/SpinninRecords https://instagram.com/spinninrecords https://twitter.com/SpinninRecords https://spinninrecords.com
    https://wn.com/Sil_Windows_(Olav_Basoski_Remix)
    Ballroom   Passenger Vinyl Olav Basoski Remix
    7:51

    Ballroom Passenger Vinyl Olav Basoski Remix

    • Order:
    • Duration: 7:51
    • Uploaded Date: 15 Jan 2017
    • views: 440
    Strictly for entertainment purposes. No copyright infringement intended. All rights go to the producers of the track. If you want me to delete this video, message me and I will do it. Image artwork by: Ronny Freems ( https://www.facebook.com/ronny.freems )
    https://wn.com/Ballroom_Passenger_Vinyl_Olav_Basoski_Remix
    Olav Basoski - Pop (Original Mix)
    7:16

    Olav Basoski - Pop (Original Mix)

    • Order:
    • Duration: 7:16
    • Uploaded Date: 13 Oct 2010
    • views: 52493
    Buy here on Beatport : https://www.beatport.com/en-US/html/content/release/detail/287449/ No the record is not stuck! It's 'Pop', Olav Basoski's brand new joint on Rootz Records. House with loads of spunk, crackly beats and a glitchy sauce. Everything a nasty bomb like needs is in there. POP! David Guetta: 'Tasty! -- Good for me' Riley & Durrant: 'Like it -- will support on the radio' Mark Knight: 'Nice!' DJ Disciple: 'Olav never dissapoints!' Erick E: 'Good to see Olav back on the block' --- 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, Mike Williams, Lucas & Steve and many, many more! Expect daily uploads of official music videos, lyric videos and artwork videos across genres like dance, house, electro house, future house, deep house, big room and trap. Make sure to subscribe to Spinnin' Records: http://bit.do/spinnintv ..and turn on notifications to stay updated with all new uploads!🔔 Follow Spinnin’ Records: https://open.spotify.com/user/spinninrecordsofficial https://soundcloud.com/spinninrecords https://facebook.com/SpinninRecords https://instagram.com/spinninrecords https://twitter.com/SpinninRecords https://spinninrecords.com
    https://wn.com/Olav_Basoski_Pop_(Original_Mix)
    Bingo Players - Cry (Just A Little) (DJ Lexiqueto Remix) (Official Music Video)
    2:28

    Bingo Players - Cry (Just A Little) (DJ Lexiqueto Remix) (Official Music Video)

    • Order:
    • Duration: 2:28
    • Uploaded Date: 11 Feb 2024
    • views: 1300
    Bingo Players - Cry (Just A Little) (DJ Lexiqueto Remix) (Official Music Video) #remix #cry #bingoplayers #bingo #players @BingoPlayers More Music: https://hearthis.at/djlexiqueto-musica-electronica/? Welcome to our YouTube video titled "Bingo Players - Cry (Just A Little)"! In this electrifying video, we take you on a nostalgic journey through the iconic tune that took the world by storm. Opening with a stunning visual display, we dive into the heart-stirring beats and infectious rhythms of "Cry (Just A Little)" by the celebrated Dutch DJ duo, Bingo Players. Instantly recognizable, this track was released in 2011 and became an instant sensation, reaching the top of numerous music charts worldwide. As the video unfolds, we witness the power of music as it brings together people from different walks of life. From the euphoric crowd at a music festival to individuals dancing in the comfort of their homes, the energy and joy are palpable. The music resonates with each person on a personal level, igniting memories and emotions, proving the universality of music's ability to transcend barriers. But the video doesn't stop there! Our team has meticulously crafted a visual spectacle to match the audio masterpiece. Picture mesmerizing light displays, vibrant colors, and captivating visual effects choreographed to the beats. Every beat drop is accentuated by a burst of energy that will leave you spellbound. Throughout the video, we feature individuals who have been impacted by "Cry (Just A Little)" and share their personal stories. From an aspiring dancer who found inspiration in the track to a couple who fell in love because of their shared love for the song, their experiences showcase the profound influence of music and its ability to connect souls. As the video reaches its climax, we create a sense of unity, inviting viewers to join in the celebration. Through a live-stream integration, we encourage viewers to dance, sing, and share their memories associated with "Cry (Just A Little)" in real-time. It's a true virtual party that will make you feel as if you're part of a global community brought together by music. In the end, our video aims to celebrate the timeless beauty of "Cry (Just A Little)" and the impact it has had on countless lives. Through mesmerizing visuals, heartfelt stories, and a sense of togetherness, we hope to inspire viewers to embrace the power of music and create their own unforgettable memories. So sit back, turn up the volume, and join us on this incredible journey as we pay tribute to Bingo Players and their iconic track "Cry (Just A Little)." Let the music guide you, let your emotions flow, and let's make this an unforgettable experience together. Get ready to dance. Get ready to sing. Get ready to cry... just a little. Welcome to the official YouTube video for Bingo Players' incredible track "Cry (Just A Little)"! In this electrifying production, the dynamic duo, Paul Bäumer and Maarten Hoogstraten, known as Bingo Players, effortlessly blend infectious electronic beats with an unforgettable melody that will have you dancing and singing along in no time. As the video begins, you'll be captivated by the mesmerizing visuals that perfectly complement the energetic vibe of the song. The color scheme is vibrant, with neon lights illuminating the scene and creating an atmosphere of pure euphoria. The editing is slick and seamless, expertly syncing with the rhythm of the music, enhancing the overall viewing experience. The storyline of the video revolves around a group of friends having a night out in a bustling city. The connection and camaraderie between them are palpable, and you'll find yourself getting caught up in their excitement. Whether it's dancing in a crowded club, having a fun-filled karaoke session, or simply enjoying each other's company, the joy and positivity radiate from the screen, making you want to join in on the fun. Throughout the video, Bingo Players' signature sound is on full display, showcasing their talent for crafting catchy hooks and infectious melodies. "Cry (Just A Little)" is a perfect example of their ability to seamlessly merge elements of electronica, house, and dance music, resulting in a track that is both thought-provoking and undeniably danceable. As the chorus kicks in, the energy reaches its peak, and the contagious beat will have you moving to the rhythm without even realizing it. The anthemic nature of the song will surely have you singing along and feeling an emotional connection to the lyrics. It's a reminder of the power of music to evoke a range of emotions, from nostalgia to pure bliss. The video concludes with a stunning fireworks display, symbolizing the culmination of an unforgettable night and leaving you with a sense of awe and wonder. The message is clear: music has the ability to bring people together, create memories, and transcend language barriers.
    https://wn.com/Bingo_Players_Cry_(Just_A_Little)_(Dj_Lexiqueto_Remix)_(Official_Music_Video)
    My Digital Enemy Feat. Mary Pearce - Release My Soul (Olav Basoski Remix)
    6:19

    My Digital Enemy Feat. Mary Pearce - Release My Soul (Olav Basoski Remix)

    • Order:
    • Duration: 6:19
    • Uploaded Date: 01 Dec 2010
    • views: 48088
    Buy here on Beatport : https://www.beatport.com/en-US/html/content/release/detail/305316/ Grand vocal house by My Digital Enemy and Mary Pearce. 'Release My Soul' features a main hook that sticks to your mind like super glue. Feel good, lively and fresh this release is. Including a fat Olav Basoski remix on the flip side! Joachim Garraud: 'Good good Basoski!' Prok & Fitch: 'MDE -- On fire as usual!' Gregori Klosman: 'Will play it!' Abel Ramos: 'Total support' Thomas Gold: 'Like it a lot!' DJ DLG: 'Yes Yes Yes! OB Does it again! 10/10 Full support ' Luis Lopez: 'BOMB!' DMS12: 'Killer tune!' --- 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, Mike Williams, Lucas & Steve and many, many more! Expect daily uploads of official music videos, lyric videos and artwork videos across genres like dance, house, electro house, future house, deep house, big room and trap. Make sure to subscribe to Spinnin' Records: http://bit.do/spinnintv ..and turn on notifications to stay updated with all new uploads!🔔 Follow Spinnin’ Records: https://open.spotify.com/user/spinninrecordsofficial https://soundcloud.com/spinninrecords https://facebook.com/SpinninRecords https://instagram.com/spinninrecords https://twitter.com/SpinninRecords https://spinninrecords.com
    https://wn.com/My_Digital_Enemy_Feat._Mary_Pearce_Release_My_Soul_(Olav_Basoski_Remix)
    Bingo Players - Cry (Just a Little) LIVE at mur.mur in Borgata Atlantic City
    0:38

    Bingo Players - Cry (Just a Little) LIVE at mur.mur in Borgata Atlantic City

    • Order:
    • Duration: 0:38
    • Uploaded Date: 14 Jun 2012
    • views: 233
    Bingo Players performing "Cry (Just a Little)" live at mur.mur in Borgata Atlantic City!
    https://wn.com/Bingo_Players_Cry_(Just_A_Little)_Live_At_Mur.Mur_In_Borgata_Atlantic_City
    Basto - Gregory's Theme (Olav Basoski Remix)
    7:26

    Basto - Gregory's Theme (Olav Basoski Remix)

    • Order:
    • Duration: 7:26
    • Uploaded Date: 23 Feb 2011
    • views: 105301
    Buy here on Beatport : https://www.beatport.com/en-US/html/content/release/detail/335509/ The massive tune by Basto was overhauled by house master Olav Basoski with astonishing result. This electrifying remix of 'Gregory's Theme' has everything needed to light fire to any self respecting dance floor. What a MONSTER! --- 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, Mike Williams, Lucas & Steve and many, many more! Expect daily uploads of official music videos, lyric videos and artwork videos across genres like dance, house, electro house, future house, deep house, big room and trap. Make sure to subscribe to Spinnin' Records: http://bit.do/spinnintv ..and turn on notifications to stay updated with all new uploads!🔔 Follow Spinnin’ Records: https://open.spotify.com/user/spinninrecordsofficial https://soundcloud.com/spinninrecords https://facebook.com/SpinninRecords https://instagram.com/spinninrecords https://twitter.com/SpinninRecords https://spinninrecords.com
    https://wn.com/Basto_Gregory's_Theme_(Olav_Basoski_Remix)
    Elektrochemie LK Feat. Caitlin Devlin - Sweet Darling (Olav Basoski Remix)
    7:17

    Elektrochemie LK Feat. Caitlin Devlin - Sweet Darling (Olav Basoski Remix)

    • Order:
    • Duration: 7:17
    • Uploaded Date: 26 Nov 2009
    • views: 3161
    Label: Leaded Country: Germany Released: 2003
    https://wn.com/Elektrochemie_Lk_Feat._Caitlin_Devlin_Sweet_Darling_(Olav_Basoski_Remix)
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Sil - Windows (Olav Basoski Remix)
      5:28
      Sil - Windows (Olav Basoski Remix)remove from playlist
    • Ballroom   Passenger Vinyl Olav Basoski Remix
      7:51
      Ballroom Passenger Vinyl Olav Basoski Remixremove from playlist
    • Olav Basoski - Pop (Original Mix)
      7:16
      Olav Basoski - Pop (Original Mix)remove from playlist
    • Bingo Players - Cry (Just A Little) (DJ Lexiqueto Remix) (Official Music Video)
      2:28
      Bingo Players - Cry (Just A Little) (DJ Lexiqueto Remix) (Official Music Video)remove from playlist
    • My Digital Enemy Feat. Mary Pearce - Release My Soul (Olav Basoski Remix)
      6:19
      My Digital Enemy Feat. Mary Pearce - Release My Soul (Olav Basoski Remix)remove from playlist
    • Basto - Gregory's Theme (Olav Basoski Remix)
      7:26
      Basto - Gregory's Theme (Olav Basoski Remix)remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Bingo Players Cry Just A Little Olav Basoski Remix

    6:44
    Bingo Players Cry Just A Little Olav Basoski Remix
    published: 19 May 2011
    Play in Full Screen
    3:04
    Bingo Players - Cry Just A Little (Snamco Big Bootleg)
    I do not own anyting of the original track,
    published: 05 Jul 2011
    Play in Full Screen
    5:28
    Sil - Windows (Olav Basoski Remix)
    Buy here on Beatport : https://www.beatport.com/en-US/html/content/release/detail/320819/...
    published: 18 Jan 2011
    Play in Full Screen
    7:51
    Ballroom Passenger Vinyl Olav Basoski Remix
    Strictly for entertainment purposes. No copyright infringement intended. All rights go to ...
    published: 15 Jan 2017
    Play in Full Screen
    7:16
    Olav Basoski - Pop (Original Mix)
    Buy here on Beatport : https://www.beatport.com/en-US/html/content/release/detail/287449/ ...
    published: 13 Oct 2010
    Play in Full Screen
    2:28
    Bingo Players - Cry (Just A Little) (DJ Lexiqueto Remix) (Official Music Video)
    Bingo Players - Cry (Just A Little) (DJ Lexiqueto Remix) (Official Music Video) #remix #c...
    published: 11 Feb 2024
    Play in Full Screen
    6:19
    My Digital Enemy Feat. Mary Pearce - Release My Soul (Olav Basoski Remix)
    Buy here on Beatport : https://www.beatport.com/en-US/html/content/release/detail/305316/ ...
    published: 01 Dec 2010
    Play in Full Screen
    0:38
    Bingo Players - Cry (Just a Little) LIVE at mur.mur in Borgata Atlantic City
    Bingo Players performing "Cry (Just a Little)" live at mur.mur in Borgata Atlantic City!
    published: 14 Jun 2012
    Play in Full Screen
    7:26
    Basto - Gregory's Theme (Olav Basoski Remix)
    Buy here on Beatport : https://www.beatport.com/en-US/html/content/release/detail/335509/ ...
    published: 23 Feb 2011
    Play in Full Screen
    7:17
    Elektrochemie LK Feat. Caitlin Devlin - Sweet Darling (Olav Basoski Remix)
    Label: Leaded Country: Germany Released: 2003
    published: 26 Nov 2009
    Play in Full Screen

    Olav Basoski

    Olav Basoski (born 1968, Haarlem, Netherlands) is a Dutch DJ/remixer/House producer.

    In 2005, Basoski teamed up with the British dancehall artist Michie One to record "Waterman". A remake of "Bam Bam" (originally recorded by Sister Nancy), it became a hit in the United States at both clubs and radio, where it debuted at number 22 on Billboard's Hot Dance Airplay chart in its March 27, 2006 issue. He has been featured on many compilation albums including the UK's Ministry of Sound.

    Basoski has had two hits in the UK Singles Chart, "Waterman" (#45, 2005) and "Opium Scumbagz" (#56, 2000).

    Discography

    Singles

  • 1997 "Moscow Street Rock"
  • 1997 "Water"
  • 1997 "Samplitude Vol. 1"
  • 1998 "Samplitude Vol. 2"
  • 1998 "Get Movin' EP"
  • 1998 "Samplitude Vol. 3"
  • 1998 "Samplitude Vol. 4"
  • 1998 "Samplitude Vol. 5"
  • 1999 "Samplitude Vol. 6"
  • 2000 "Opium Scumbagz"
  • 2000 "Samplitude Vol. 7"
  • 2000 "Samplitude Vol. 8"
  • 2001 "Samplitude Vol. 9"
  • 2002 "Best Of Samplitude"
  • 2002 "Most Wanted Singles Part 1"
  • 2002 "Samplitude Vol. 10"
  • 2002 "Samplitude Vol. 11"
  • '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×