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

Swami Records

Swami Records is a San Diego based independent record label specializing in punk rock, indie rock and garage rock that was founded in 2000 by John Reis. Reis also has his own radio show known as "Swami Sound System" on radio station 94.9FM KBZT in San Diego.

Artists

  • Beehive & The Barracudas
  • CPC Gangbangs
  • Crime
  • Dan Sartain
  • Demolition Doll Rods
  • Drive Like Jehu
  • The Husbands
  • Hot Snakes
  • The Heartaches
  • The Marked Men
  • Mrs. Magician
  • The Night Marchers
  • The Penetrators
  • Pitchfork
  • Rocket From the Crypt
  • Sultans
  • Testors
  • Tourettes Lautrec
  • See also

  • List of record labels
  • External links

  • Official site
  • Swami Records publishing catalog at MusicBrainz
  • Podcasts:

    • SWAMI AND THE BED OF NAILS "HOW ARE YOU PEELING?"

      VIDEO BY DAVID DA CRUZ SONG RECORDED BY BEN MOORE AT SINGING SERPENT AND JOHN REIS AT CITY OF REFUGE MIXED BY BEN MOORE SWAMI JOHN REIS: VOCALS, GUITAR, BASS, SYNTH JOE GUEVARA: KEYBOARDS AND SYNTH JASON KOURKOUNIS: DRUMS BACK UP VOCALS: JACOB TURNBLOOM Rock and roll, punk rock, Swami John Reis, Swami Records,

      published: 15 Feb 2024
    • SWAMI AND THE BED OF NAILS "KETCHUP, MUSTARD AND RELISH" from the LP "ALL OF THIS AWAITS YOU"

      Directed and edited by David da Cuz shot by Tiger Reis Swami John Reis: Vocals and guitar Joe Guevara: Keyboards and vocals Richard Ahrlin: Drums and vocals Mark Murino: guitar Tommy Kitsos: Bass and vocals

      published: 02 Aug 2024
    • Swami And The Bed of Nails - Full Performance (Live on KEXP)

      http://KEXP.ORG presents Swami And The Bed Of Nails performing live in the KEXP studio. Recorded March 19, 2024. Songs: How Are You Peeling? 00:38 Harbor Freight 02:52 Lost In Bermondsey 05:21 Privacy 09:25 John Reis - Vocal, Guitar Thomas Kitsos - Bass, Vocals Joe Guevara - Keyboard, Vocals Mark Murino - Guitar Richard Larson - Drums, Vocals Host: Troy Nelson Audio Engineer: Kevin Suggs Mastering Engineer: Matt Ogaz Cameras:Jim Beckmann, Carlos Cruz, Scott Holpainen, Jonathan Jacobson & Luke Knecht Editor: Jim Beckmann https://swami-records.myshopify.com http://kexp.org Join this channel to get access to perks: https://www.youtube.com/channel/UC3I2GFN_F8WudD_2jUZbojA/join

      published: 05 Jun 2024
    • THE REVERSE WALKER! Man Achieves Unprecedented Feat at Sabarimala Ayyappa Swami Yatra | records

      #sabarimala #challenges #challengevideo #worldrecord

      published: 21 Dec 2024
    • Swami And The Bed of Nails - Lost In Bermondsey (Live on KEXP)

      http://KEXP.ORG presents Swami And The Bed Of Nails performing “Lost In Bermondsey ” live in the KEXP studio. Recorded March 19, 2024. John Reis - Vocal, Guitar Thomas Kitsos - Bass, Vocals Joe Guevara - Keyboard, Vocals Mark Murino - Guitar Richard Larson - Drums, Vocals Host: Troy Nelson Audio Engineer: Kevin Suggs Mastering Engineer: Matt Ogaz Cameras:Jim Beckmann, Carlos Cruz, Scott Holpainen, Jonathan Jacobson & Luke Knecht Editor: Jim Beckmann https://swami-records.myshopify.com http://kexp.org Join this channel to get access to perks: https://www.youtube.com/channel/UC3I2GFN_F8WudD_2jUZbojA/join

      published: 05 Jun 2024
    • Swami John Reis - "Do You Still Wanna Make Out?"

      Swami John Reis "Do You Still Wanna Make Out' From The LP "Ride The Wild Night" Swami Records SWA152 DO YOU STILL WANNA MAKE OUT? SHOO-WOP-DOO-WAH SHOO-WAH-WAH-WAH DOO-WAH (X4) GO OFF TO A BAD START YOU HIT ME WITH YOUR DRINK LET BYGONES BE BYGONES A MISUNDERSTANDING 2 LOOKS AT 2 AM I FEEL OUR CHEMISTRY THEN I PISSED IN THE SINK AND THEN PUKED IN THE STREET I’M THE ONE, I’M THE ONE YOU WANT I’M THE ONE, I’M THE ONE THAT YOU WANT (X2) DO YOU STILL MANT TO MAKE OUT? (X4) PUT AWAY YOUR DEBIT CARD YOUR MONEY’S NO GOOD HERE I KNOW THE BARTENDER MY NEIGHBOR TRIMS HIS BEARD SO LET’S GET NAKED OR PLAY VIDEO GAMES MY DICK SMELLS LIKE CHEETOS BUT MY BED SMELLS LIKE GLADE I’M THE ONE, I’M THE ONE YOU WANT I’M THE ONE, I’M THE ONE THAT YOU WANT (X2) DO YOU STILL MANT TO MAKE OUT? (X4)

      published: 04 Feb 2022
    • Who Keeps Track of Karma? | Swami Sarvapriyananda

      If everything is an appearance, how is karma kept track of? Swami Sarvapriyananda helps answer this question. ► To support the Vedanta Society of New York: http://www.vedantany.org/donate Vedanta NY Archives: https://www.youtube.com/c/VedantaNewYorkArchives Web: http://vedantany.org Soundcloud: http://Soundcloud.com/VedantaNY iTunes Podcast: http://bit.ly/vedanta-talks-itunes Spotify: https://open.spotify.com/show/5IrDmqXhiGwwyQcIUjRhtB Facebook: https://www.facebook.com/VedantaNY ABOUT VEDANTA Vedanta is one of the world’s most ancient religious philosophies and one of its broadest. Based on the Vedas, the sacred scriptures of India, Vedanta affirms the oneness of existence, the divinity of the soul, and the harmony of religions. ABOUT US Vedanta Society of New York is affiliated wit...

      published: 27 Aug 2021
    • DR#183 Swami John Reis & the Bed of Nails - All of this Awaits You

      EPISODE 183 | Swami John Reis & the Bed of Nails - All of this Awaits You A NEW PROJECT FROM THE MAN OF MANY BANDS... Welcome to DoodleReview, music reviews and content covering all genres subscribe now to get the latest. Here are some other videos you might like: Top 50 Albums of 2024: https://youtu.be/TMH5P8skTFQ Redd Kross - [self-titled]: https://youtu.be/cxCgnBl9S9I Ty Segall - Three Bells: https://youtu.be/BUXl0IcdXOs Thee Oh Sees - Intercepted Message: https://youtu.be/XWX0fo7fVFI Meatbodies - Flora Ocean Tiger Bloom: https://youtu.be/_A-zatxGb2g King Gizzard & the Lizard Wizard - The Silver Cord: https://youtu.be/vBgCMXngD6E Be Your Own Pet: https://youtu.be/mB4HMyexuCI Lol Tolhurst x Budgie x Jackknife Lee - Los Angeles: https://youtu.be/aP-v7DSnh7s The Armed - Perfect Saviour...

      published: 02 Jan 2025
    • City Pe City Baji City Baji Jai Gajanan Swami Aai 🥳🥳🥳🥳

      published: 19 Jan 2025
    • Swami And The Bed of Nails - How Are You Peeling? (Live on KEXP)

      http://KEXP.ORG presents Swami And The Bed Of Nails performing “How Are You Peeling?” live in the KEXP studio. Recorded March 19, 2024. John Reis - Vocal, Guitar Thomas Kitsos - Bass, Vocals Joe Guevara - Keyboard, Vocals Mark Murino - Guitar Richard Larson - Drums, Vocals Host: Troy Nelson Audio Engineer: Kevin Suggs Mastering Engineer: Matt Ogaz Cameras:Jim Beckmann, Carlos Cruz, Scott Holpainen, Jonathan Jacobson & Luke Knecht Editor: Jim Beckmann https://swami-records.myshopify.com http://kexp.org Join this channel to get access to perks: https://www.youtube.com/channel/UC3I2GFN_F8WudD_2jUZbojA/join

      published: 05 Jun 2024
    SWAMI AND THE BED OF NAILS "HOW ARE YOU PEELING?"
    2:25

    SWAMI AND THE BED OF NAILS "HOW ARE YOU PEELING?"

    • Order:
    • Duration: 2:25
    • Uploaded Date: 15 Feb 2024
    • views: 56624
    VIDEO BY DAVID DA CRUZ SONG RECORDED BY BEN MOORE AT SINGING SERPENT AND JOHN REIS AT CITY OF REFUGE MIXED BY BEN MOORE SWAMI JOHN REIS: VOCALS, GUITAR, BASS, SYNTH JOE GUEVARA: KEYBOARDS AND SYNTH JASON KOURKOUNIS: DRUMS BACK UP VOCALS: JACOB TURNBLOOM Rock and roll, punk rock, Swami John Reis, Swami Records,
    https://wn.com/Swami_And_The_Bed_Of_Nails_How_Are_You_Peeling
    SWAMI AND THE BED OF NAILS "KETCHUP, MUSTARD AND RELISH" from the LP "ALL OF THIS AWAITS YOU"
    2:10

    SWAMI AND THE BED OF NAILS "KETCHUP, MUSTARD AND RELISH" from the LP "ALL OF THIS AWAITS YOU"

    • Order:
    • Duration: 2:10
    • Uploaded Date: 02 Aug 2024
    • views: 108330
    Directed and edited by David da Cuz shot by Tiger Reis Swami John Reis: Vocals and guitar Joe Guevara: Keyboards and vocals Richard Ahrlin: Drums and vocals Mark Murino: guitar Tommy Kitsos: Bass and vocals
    https://wn.com/Swami_And_The_Bed_Of_Nails_Ketchup,_Mustard_And_Relish_From_The_Lp_All_Of_This_Awaits_You
    Swami And The Bed of Nails - Full Performance (Live on KEXP)
    23:06

    Swami And The Bed of Nails - Full Performance (Live on KEXP)

    • Order:
    • Duration: 23:06
    • Uploaded Date: 05 Jun 2024
    • views: 17018
    http://KEXP.ORG presents Swami And The Bed Of Nails performing live in the KEXP studio. Recorded March 19, 2024. Songs: How Are You Peeling? 00:38 Harbor Freight 02:52 Lost In Bermondsey 05:21 Privacy 09:25 John Reis - Vocal, Guitar Thomas Kitsos - Bass, Vocals Joe Guevara - Keyboard, Vocals Mark Murino - Guitar Richard Larson - Drums, Vocals Host: Troy Nelson Audio Engineer: Kevin Suggs Mastering Engineer: Matt Ogaz Cameras:Jim Beckmann, Carlos Cruz, Scott Holpainen, Jonathan Jacobson & Luke Knecht Editor: Jim Beckmann https://swami-records.myshopify.com http://kexp.org Join this channel to get access to perks: https://www.youtube.com/channel/UC3I2GFN_F8WudD_2jUZbojA/join
    https://wn.com/Swami_And_The_Bed_Of_Nails_Full_Performance_(Live_On_Kexp)
    THE REVERSE WALKER! Man Achieves Unprecedented Feat at Sabarimala Ayyappa Swami Yatra | records
    0:11

    THE REVERSE WALKER! Man Achieves Unprecedented Feat at Sabarimala Ayyappa Swami Yatra | records

    • Order:
    • Duration: 0:11
    • Uploaded Date: 21 Dec 2024
    • views: 112771
    #sabarimala #challenges #challengevideo #worldrecord
    https://wn.com/The_Reverse_Walker_Man_Achieves_Unprecedented_Feat_At_Sabarimala_Ayyappa_Swami_Yatra_|_Records
    Swami And The Bed of Nails - Lost In Bermondsey (Live on KEXP)
    4:13

    Swami And The Bed of Nails - Lost In Bermondsey (Live on KEXP)

    • Order:
    • Duration: 4:13
    • Uploaded Date: 05 Jun 2024
    • views: 3794
    http://KEXP.ORG presents Swami And The Bed Of Nails performing “Lost In Bermondsey ” live in the KEXP studio. Recorded March 19, 2024. John Reis - Vocal, Guitar Thomas Kitsos - Bass, Vocals Joe Guevara - Keyboard, Vocals Mark Murino - Guitar Richard Larson - Drums, Vocals Host: Troy Nelson Audio Engineer: Kevin Suggs Mastering Engineer: Matt Ogaz Cameras:Jim Beckmann, Carlos Cruz, Scott Holpainen, Jonathan Jacobson & Luke Knecht Editor: Jim Beckmann https://swami-records.myshopify.com http://kexp.org Join this channel to get access to perks: https://www.youtube.com/channel/UC3I2GFN_F8WudD_2jUZbojA/join
    https://wn.com/Swami_And_The_Bed_Of_Nails_Lost_In_Bermondsey_(Live_On_Kexp)
    Swami John Reis - "Do You Still Wanna Make Out?"
    3:06

    Swami John Reis - "Do You Still Wanna Make Out?"

    • Order:
    • Duration: 3:06
    • Uploaded Date: 04 Feb 2022
    • views: 5463
    Swami John Reis "Do You Still Wanna Make Out' From The LP "Ride The Wild Night" Swami Records SWA152 DO YOU STILL WANNA MAKE OUT? SHOO-WOP-DOO-WAH SHOO-WAH-WAH-WAH DOO-WAH (X4) GO OFF TO A BAD START YOU HIT ME WITH YOUR DRINK LET BYGONES BE BYGONES A MISUNDERSTANDING 2 LOOKS AT 2 AM I FEEL OUR CHEMISTRY THEN I PISSED IN THE SINK AND THEN PUKED IN THE STREET I’M THE ONE, I’M THE ONE YOU WANT I’M THE ONE, I’M THE ONE THAT YOU WANT (X2) DO YOU STILL MANT TO MAKE OUT? (X4) PUT AWAY YOUR DEBIT CARD YOUR MONEY’S NO GOOD HERE I KNOW THE BARTENDER MY NEIGHBOR TRIMS HIS BEARD SO LET’S GET NAKED OR PLAY VIDEO GAMES MY DICK SMELLS LIKE CHEETOS BUT MY BED SMELLS LIKE GLADE I’M THE ONE, I’M THE ONE YOU WANT I’M THE ONE, I’M THE ONE THAT YOU WANT (X2) DO YOU STILL MANT TO MAKE OUT? (X4)
    https://wn.com/Swami_John_Reis_Do_You_Still_Wanna_Make_Out
    Who Keeps Track of Karma? | Swami Sarvapriyananda
    8:54

    Who Keeps Track of Karma? | Swami Sarvapriyananda

    • Order:
    • Duration: 8:54
    • Uploaded Date: 27 Aug 2021
    • views: 150067
    If everything is an appearance, how is karma kept track of? Swami Sarvapriyananda helps answer this question. ► To support the Vedanta Society of New York: http://www.vedantany.org/donate Vedanta NY Archives: https://www.youtube.com/c/VedantaNewYorkArchives Web: http://vedantany.org Soundcloud: http://Soundcloud.com/VedantaNY iTunes Podcast: http://bit.ly/vedanta-talks-itunes Spotify: https://open.spotify.com/show/5IrDmqXhiGwwyQcIUjRhtB Facebook: https://www.facebook.com/VedantaNY ABOUT VEDANTA Vedanta is one of the world’s most ancient religious philosophies and one of its broadest. Based on the Vedas, the sacred scriptures of India, Vedanta affirms the oneness of existence, the divinity of the soul, and the harmony of religions. ABOUT US Vedanta Society of New York is affiliated with the Ramakrishna Order of India. In fact, this is the Order's first Center started by Swami Vivekananda, in 1894. It was a historic event, for the seed of the world-wide Ramakrishna Movement was sown here in New York over a century ago. Swami Sarvapriyananda is the present Resident Minister and Spiritual Leader of the Vedanta Society of New York.
    https://wn.com/Who_Keeps_Track_Of_Karma_|_Swami_Sarvapriyananda
    DR#183 Swami John Reis & the Bed of Nails  - All of this Awaits You
    7:37

    DR#183 Swami John Reis & the Bed of Nails - All of this Awaits You

    • Order:
    • Duration: 7:37
    • Uploaded Date: 02 Jan 2025
    • views: 51
    EPISODE 183 | Swami John Reis & the Bed of Nails - All of this Awaits You A NEW PROJECT FROM THE MAN OF MANY BANDS... Welcome to DoodleReview, music reviews and content covering all genres subscribe now to get the latest. Here are some other videos you might like: Top 50 Albums of 2024: https://youtu.be/TMH5P8skTFQ Redd Kross - [self-titled]: https://youtu.be/cxCgnBl9S9I Ty Segall - Three Bells: https://youtu.be/BUXl0IcdXOs Thee Oh Sees - Intercepted Message: https://youtu.be/XWX0fo7fVFI Meatbodies - Flora Ocean Tiger Bloom: https://youtu.be/_A-zatxGb2g King Gizzard & the Lizard Wizard - The Silver Cord: https://youtu.be/vBgCMXngD6E Be Your Own Pet: https://youtu.be/mB4HMyexuCI Lol Tolhurst x Budgie x Jackknife Lee - Los Angeles: https://youtu.be/aP-v7DSnh7s The Armed - Perfect Saviours: https://youtu.be/I3sQ7OBU6vM Shop: Record Player: https://amzn.to/3CYS12s John Reis VINYL: https://swami-records.myshopify.com/products/swami-and-the-bed-of-nails-all-of-this-awaits-you-lp-swa-161 ----------------------------------------------------------------------------------------------------------------------- Some of the links featured may be affiliate links, which means I will receive a small commission for qualifying purchases. It doesn't cost you any more and really helps out the growth of the channel. Thanks for supporting! Remember to hurl some abuse in the comments and like 👍 and Subscribe for more content. Music by: Cigarette Follow us: Instagram.com/doodlereview tiktok.com/doodlereview threads.net/doodlereview Thanks for watching! #johnreis #swami #rocketfromthecrypt #hotsnakes #drivelikejehu #punkrock #guitarrock #garagerock #guitarmusic #rockmusic #albumreview #reddkross
    https://wn.com/Dr_183_Swami_John_Reis_The_Bed_Of_Nails_All_Of_This_Awaits_You
    City Pe City Baji  City Baji Jai Gajanan Swami Aai 🥳🥳🥳🥳
    0:14

    City Pe City Baji City Baji Jai Gajanan Swami Aai 🥳🥳🥳🥳

    • Order:
    • Duration: 0:14
    • Uploaded Date: 19 Jan 2025
    • views: 41
    https://wn.com/City_Pe_City_Baji_City_Baji_Jai_Gajanan_Swami_Aai_🥳🥳🥳🥳
    Swami And The Bed of Nails - How Are You Peeling? (Live on KEXP)
    2:24

    Swami And The Bed of Nails - How Are You Peeling? (Live on KEXP)

    • Order:
    • Duration: 2:24
    • Uploaded Date: 05 Jun 2024
    • views: 1922
    http://KEXP.ORG presents Swami And The Bed Of Nails performing “How Are You Peeling?” live in the KEXP studio. Recorded March 19, 2024. John Reis - Vocal, Guitar Thomas Kitsos - Bass, Vocals Joe Guevara - Keyboard, Vocals Mark Murino - Guitar Richard Larson - Drums, Vocals Host: Troy Nelson Audio Engineer: Kevin Suggs Mastering Engineer: Matt Ogaz Cameras:Jim Beckmann, Carlos Cruz, Scott Holpainen, Jonathan Jacobson & Luke Knecht Editor: Jim Beckmann https://swami-records.myshopify.com http://kexp.org Join this channel to get access to perks: https://www.youtube.com/channel/UC3I2GFN_F8WudD_2jUZbojA/join
    https://wn.com/Swami_And_The_Bed_Of_Nails_How_Are_You_Peeling_(Live_On_Kexp)
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 54:20

    SWAMI AND THE BED OF NAILS "HOW ARE YOU PEELING?"

    VIDEO BY DAVID DA CRUZ SONG RECORDED BY BEN MOORE AT SINGING SERPENT AND JOHN REIS AT CITY OF REFUGE MIXED BY BEN MOORE SWAMI JOHN REIS: VOCALS, GUITAR, BASS, SYNTH JOE GUEVARA: KEYBOARDS AND SYNTH JASON KOURKOUNIS: DRUMS BACK UP VOCALS: JACOB TURNBLOOM Rock and roll, punk rock, Swami John Reis, Swami Records,
    2:25
    SWAMI AND THE BED OF NAILS "HOW ARE YOU PEELING?"
    VIDEO BY DAVID DA CRUZ SONG RECORDED BY BEN MOORE AT SINGING SERPENT AND JOHN REIS AT CITY...
    published: 15 Feb 2024
    Play in Full Screen
    2:10
    SWAMI AND THE BED OF NAILS "KETCHUP, MUSTARD AND RELISH" from the LP "ALL OF THIS AWAITS YOU"
    Directed and edited by David da Cuz shot by Tiger Reis Swami John Reis: Vocals and guitar...
    published: 02 Aug 2024
    Play in Full Screen
    23:06
    Swami And The Bed of Nails - Full Performance (Live on KEXP)
    http://KEXP.ORG presents Swami And The Bed Of Nails performing live in the KEXP studio. Re...
    published: 05 Jun 2024
    Play in Full Screen
    0:11
    THE REVERSE WALKER! Man Achieves Unprecedented Feat at Sabarimala Ayyappa Swami Yatra | records
    #sabarimala #challenges #challengevideo #worldrecord
    published: 21 Dec 2024
    Play in Full Screen
    4:13
    Swami And The Bed of Nails - Lost In Bermondsey (Live on KEXP)
    http://KEXP.ORG presents Swami And The Bed Of Nails performing “Lost In Bermondsey ” live ...
    published: 05 Jun 2024
    Play in Full Screen
    3:06
    Swami John Reis - "Do You Still Wanna Make Out?"
    Swami John Reis "Do You Still Wanna Make Out' From The LP "Ride The Wild Night" Swami Rec...
    published: 04 Feb 2022
    Play in Full Screen
    8:54
    Who Keeps Track of Karma? | Swami Sarvapriyananda
    If everything is an appearance, how is karma kept track of? Swami Sarvapriyananda helps an...
    published: 27 Aug 2021
    Play in Full Screen
    7:37
    DR#183 Swami John Reis & the Bed of Nails - All of this Awaits You
    EPISODE 183 | Swami John Reis & the Bed of Nails - All of this Awaits You A NEW PROJECT F...
    published: 02 Jan 2025
    Play in Full Screen
    0:14
    City Pe City Baji City Baji Jai Gajanan Swami Aai 🥳🥳🥳🥳
    published: 19 Jan 2025
    Play in Full Screen
    2:24
    Swami And The Bed of Nails - How Are You Peeling? (Live on KEXP)
    http://KEXP.ORG presents Swami And The Bed Of Nails performing “How Are You Peeling?” live...
    published: 05 Jun 2024
    Play in Full Screen

    Swami Records

    Swami Records is a San Diego based independent record label specializing in punk rock, indie rock and garage rock that was founded in 2000 by John Reis. Reis also has his own radio show known as "Swami Sound System" on radio station 94.9FM KBZT in San Diego.

    Artists

  • Beehive & The Barracudas
  • CPC Gangbangs
  • Crime
  • Dan Sartain
  • Demolition Doll Rods
  • Drive Like Jehu
  • The Husbands
  • Hot Snakes
  • The Heartaches
  • The Marked Men
  • Mrs. Magician
  • The Night Marchers
  • The Penetrators
  • Pitchfork
  • Rocket From the Crypt
  • Sultans
  • Testors
  • Tourettes Lautrec
  • See also

  • List of record labels
  • External links

  • Official site
  • Swami Records publishing catalog at MusicBrainz
  • '); } 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)); } }); }); }); // -->

    Latest News for: swami records

    Edit

    Fake baba arrested for sexually exploiting women in Telangana’s Medak

    The Siasat Daily 21 Mar 2025
    The accused was identified as Bommera Bapu Swamy aka Shiva Swamy, a resident of Anupuram near Vemulawada, according to Medak superintendent of police D Uday Kumar Reddy, used to attract women by pretending to offer astrology services.
    Edit

    ‘We said yes to everything!’ John Reis on his blistering punk career, from Hot Snakes to Rocket from the Crypt

    The Observer 19 Mar 2025
    The group went on ice, and now play the occasional reunion show, while Reis invested his time in his Swami Records label, producing other groups, and forming Hot Snakes, his final band with Froberg.
    Edit

    Saswathikananda’s death: HC dismisses reprobe plea

    The Times of India 18 Mar 2025
    Swami Saswathikananda allegedly drowned at the bathing ghat on the banks of the Periyar River in Aluva at 9am on July 1, 2002 ... Following this claim, the SIT recorded Ramesh's detailed statement and interrogated Priyan.
    • 1
    ×