<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:media="http://search.yahoo.com/mrss/"
	
	>

<channel>
	<title>Aramis Navarro</title>
	<link>https://aramisnavarro.com</link>
	<description>Aramis Navarro</description>
	<pubDate>Tue, 14 Jul 2026 09:23:59 +0000</pubDate>
	<generator>https://aramisnavarro.com</generator>
	<language>en</language>
	
		
	<item>
		<title>Index</title>
				
		<link>https://aramisnavarro.com/Index</link>

		<pubDate>Sun, 12 Nov 2023 13:08:56 +0000</pubDate>

		<dc:creator>Aramis Navarro</dc:creator>

		<guid isPermaLink="true">https://aramisnavarro.com/Index</guid>

		<description>


    
    
    
        
        Babelibabibliotheca // upcoming exhibition at Doppelganger Gallery, opening 11.September 2026 1800, Marktplatz 12 St.Gallen!!!!!!!!!!
        
    

    
    &#60;img src="https://freight.cargo.site/t/original/i/cc83328fd57e9ededcdc7ff25ed365e96e53263406c6f833af72184f56e36e54/Screenshot-2026-08-27-at-21.54.06.png" id="floating-image" alt="Exhibition Image" style="transform: translate(167.8px, 437.5px);"&#62;




    /* Hauptcontainer */
    #floating-0;container {
        position: fixed;
        top: 
        left: 0;
        width: 100vw;
        height: 100vh;
        pointer-events: none; /* Lässt Klicks auf die normale Website durch */
        z-index: 999999;
        overflow: hidden;
    }

    /* Der schwarze Streifen für den Ticker */
    #ticker-wrapper {
        position: absolute;
        top: 700px; /* Abstand von oben. Kannst du anpassen */
        left: 0;
        width: 100vw;
        background-color: black;
        padding: 10px 0;
        overflow: hidden;
        pointer-events: auto; /* Damit man den Link klicken kann */
        z-index: 2;
        box-shadow: 0 4px 10px rgba(0,0,0,0.5); /* Leichter Schatten für räumliche Wirkung */
    }

    /* Der Text im Ticker */
    #ticker-text {
        display: inline-block;
        white-space: nowrap;
        color: pink;
        font-family: "Courier New", Courier, monospace; /* Digitaler/Börsen-Look */
        font-size: 20px;
        font-weight: regular;
        text-decoration: none; /* Entfernt den Standard-Unterstrich vom Link */
        /* Animation: Läuft in 15 Sekunden einmal komplett durch. Ändere die 15s für die Geschwindigkeit */
        animation: ticker-move 15s linear infinite; 
    }

    /* Hover-Effekt: Unterstrichen, wenn man mit der Maus drüberfährt */
    #ticker-text:hover {
        text-decoration: underline;
    }

    /* Die CSS-Animation von rechts nach links */
    @keyframes ticker-move {
        0%   { transform: translateX(100vw); }
        100% { transform: translateX(-100%); }
    }

    /* Das schwebende Bild */
    #floating-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 250px; /* Startgrösse des Bildes */
        height: auto;
        pointer-events: auto; /* Macht das Bild klickbar */
        cursor: pointer;
        z-index: 1;
        transition: width 0.8s ease, height 0.8s ease, background-color 0.8s ease;
    }

    /* Styles für den Vollbild-Klick (Bild) */
    #floating-image.fullscreen {
        transform: translate(0px, 0px) !important; /* Setzt die Bewegung zurück */
        width: 100vw !important;
        height: 100vh !important;
        object-fit: contain;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 40px;
        box-sizing: border-box;
        z-index: 3;
    }




    document.addEventListener("DOMContentLoaded", function() {
        const img = document.getElementById("floating-image");
        const ticker = document.getElementById("ticker-wrapper");
        const container = document.getElementById("floating-container");

        if(!img) return;

        let isFullscreen = false;
        let animationFrameId;
        let initialDisappearTimer;

        // Startpositionen und Geschwindigkeit für das Bild (vx = X-Achse, vy = Y-Achse)
        let imgState = {
            x: Math.random() * (window.innerWidth - 300),
            y: Math.random() * (window.innerHeight - 300),
            vx: 1.2, 
            vy: 1.5
        };

        // Die Animations-Engine nur noch für das Bild (Text macht jetzt CSS)
        function animateImage() {
            if (isFullscreen) return;

            let imgMaxX = window.innerWidth - img.offsetWidth;
            let imgMaxY = window.innerHeight - img.offsetHeight;

            imgState.x += imgState.vx;
            imgState.y += imgState.vy;

            // Prallt ab, wenn der Rand berührt wird
            if (imgState.x = imgMaxX) imgState.vx *= -1;
            if (imgState.y = imgMaxY) imgState.vy *= -1;

            imgState.x = Math.max(0, Math.min(imgState.x, imgMaxX));
            imgState.y = Math.max(0, Math.min(imgState.y, imgMaxY));

            img.style.transform = `translate(${imgState.x}px, ${imgState.y}px)`;

            animationFrameId = requestAnimationFrame(animateImage);
        }

        // Animation starten
        animateImage();

        // Timer 1: Container verschwindet nach 10 Sekunden, falls NICHT auf das Bild geklickt wird
        initialDisappearTimer = setTimeout(() =&#62; {
            if (!isFullscreen) {
                container.style.display = "none";
                cancelAnimationFrame(animationFrameId);
            }
        }, 10000);

        // Klick-Event für das Bild
        img.addEventListener("click", function() {
            if (isFullscreen) return;

            isFullscreen = true;
            
            // Stoppt die Bewegung und löscht den ersten Timer
            cancelAnimationFrame(animationFrameId);
            clearTimeout(initialDisappearTimer);

            // Ticker ausblenden, damit das Bild volle Aufmerksamkeit hat
            ticker.style.display = "none";

            // Bild in den Vollbildmodus versetzen
            img.classList.add("fullscreen");

            // Timer 2: Nach dem Klick 10 Sekunden Vollbild, danach komplett schliessen
            setTimeout(() =&#62; {
                container.style.display = "none";
            }, 10000);
        });
    });
</description>
		
	</item>
		
		
	<item>
		<title>ratking</title>
				
		<link>https://aramisnavarro.com/ratking</link>

		<pubDate>Wed, 23 Jul 2025 15:47:49 +0000</pubDate>

		<dc:creator>Aramis Navarro</dc:creator>

		<guid isPermaLink="true">https://aramisnavarro.com/ratking</guid>

		<description>
	ratking

&#60;img width="960" height="752" width_o="960" height_o="752" data-src="https://freight.cargo.site/t/original/i/ca083e905eec274dd878513fb1f0a0306253cf743c3241879f2d08202b8e9d3e/960px-Rattenkonig_c1683.jpg" data-mid="238944123" border="0"  src="https://freight.cargo.site/w/960/i/ca083e905eec274dd878513fb1f0a0306253cf743c3241879f2d08202b8e9d3e/960px-Rattenkonig_c1683.jpg" /&#62;Friedrich Wilhelm Schmuck, 1683


	«ratking» 2025
cables, eggs
Ratking reinterprets the historical superstition of rats bound together by their tails—a traditional symbol of bad omens—into a site of potential. Constructed as a nest of cables where eggs are laid and hatched, it transforms what was once feared as a sign of misfortune into a metaphor for hope.



	&#60;img width="850" height="1277" width_o="850" height_o="1277" data-src="https://freight.cargo.site/t/original/i/bd815e799e22283cb6e551f4e6b4de871ad13e8c58bcdddb4638f7d06bd3b87b/ratking-KH-04-low.jpg" data-mid="236185890" border="0"  src="https://freight.cargo.site/w/850/i/bd815e799e22283cb6e551f4e6b4de871ad13e8c58bcdddb4638f7d06bd3b87b/ratking-KH-04-low.jpg" /&#62;

Kunsthalle Sankt Gallen, algorithmic-mega-death-superspell.exe, 2025


	&#60;img width="2581" height="3543" width_o="2581" height_o="3543" data-src="https://freight.cargo.site/t/original/i/f3a5ecd975d1aff234462fa21c62fff2a29d728c4577b2901c78ad02d0214a3d/KHSG_07_AramisNavarro_2025.jpg" data-mid="236186243" border="0"  src="https://freight.cargo.site/w/1000/i/f3a5ecd975d1aff234462fa21c62fff2a29d728c4577b2901c78ad02d0214a3d/KHSG_07_AramisNavarro_2025.jpg" /&#62;
poem – Chicken feet and Palo Santo
when earphone cables knot like ratkings
when algorithms chant like black spells
my dad used to say
a black cat crossing the street&#38;nbsp;
only casts a bad omen
when its direction was
from left to rightlike the shift that’s happening
in front of our minds eyesjust nobody noticed
the pivotal moment in history
where magic became realeverybody walks&#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; walks &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; walks
&#38;nbsp; &#38;nbsp; with a wand
&#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; o &#38;nbsp;u&#38;nbsp; &#38;nbsp;r &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp;&#38;nbsp; &#38;nbsp; na &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; d&#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; the corn &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp;&#38;nbsp; e &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp;&#38;nbsp; r &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp;&#38;nbsp; .may the only offering today &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp;&#38;nbsp; be&#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; to unknot &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; and plug in.


	

&#60;img width="792" height="1190" width_o="792" height_o="1190" data-src="https://freight.cargo.site/t/original/i/aa9e63cbe40c3ace1379ddd61ad02caea3c056d1329a5fedea46b134cb544189/ratking-KH-05-low.jpg" data-mid="236185891" border="0"  src="https://freight.cargo.site/w/792/i/aa9e63cbe40c3ace1379ddd61ad02caea3c056d1329a5fedea46b134cb544189/ratking-KH-05-low.jpg" /&#62;
</description>
		
	</item>
		
		
	<item>
		<title>menschchmal</title>
				
		<link>https://aramisnavarro.com/menschchmal</link>

		<pubDate>Sun, 12 Nov 2023 13:08:59 +0000</pubDate>

		<dc:creator>Aramis Navarro</dc:creator>

		<guid isPermaLink="true">https://aramisnavarro.com/menschchmal</guid>

		<description>
	Menschchmal
	«Menschchmal» 2023 film with audio, 2'01"
A short film based on a conversation with a text based AI about gender-inclusive language. The dialogue exposes the limits of neutrality in machine learning, showing how even supposedly neutral systems revert to coded biases,&#38;nbsp; trained on past texts these sytems subtly reproduce old patterns of thought. History lingers in the code—echoing through the supposed future in ways we barely notice. The work highlights the friction at the human-machine threshold, pointing to a potential source of error when equality is programmed into systems shaped by historical bias—and suggesting that many such hidden sources remain embedded and unnoticed.
︎ message to get a link


&#60;img width="3000" height="2626" width_o="3000" height_o="2626" data-src="https://freight.cargo.site/t/original/i/c7505d546a0629d1eac81a24d18b0381b985f5488b6e3bbc315d9aa90ce0d995/frame.jpg" data-mid="232947594" border="0"  src="https://freight.cargo.site/w/1000/i/c7505d546a0629d1eac81a24d18b0381b985f5488b6e3bbc315d9aa90ce0d995/frame.jpg" /&#62;

	
	
filmstill</description>
		
	</item>
		
		
	<item>
		<title>trinity</title>
				
		<link>https://aramisnavarro.com/trinity</link>

		<pubDate>Fri, 19 Sep 2025 07:30:07 +0000</pubDate>

		<dc:creator>Aramis Navarro</dc:creator>

		<guid isPermaLink="true">https://aramisnavarro.com/trinity</guid>

		<description>
	trinity
	«trinity» &#38;nbsp;2025
neon

Trinity is a neon installation spelling ai ai ai. The work frames artificial intelligence as a quasi-divine presence, reflecting its growing role as an authority in society. The repetition evokes both alert and devotion, pointing AI’s capacity to capture attention while operating as an invisible system.





	
	

	
	

&#60;img width="691" height="1063" width_o="691" height_o="1063" data-src="https://freight.cargo.site/t/original/i/fc23510f92c311bb173063cfa7193031a313a072f89e461865c78c6c4578cb86/Aramis-Navarro-39-low.jpg" data-mid="238419414" border="0"  src="https://freight.cargo.site/w/691/i/fc23510f92c311bb173063cfa7193031a313a072f89e461865c78c6c4578cb86/Aramis-Navarro-39-low.jpg" /&#62;Aramis Navarro, «algorithmic-mega-death-superspell.exe», Ausstellungsansicht, 2025. Photo: Kunst Halle Sankt Gallen, E. Sommer.
</description>
		
	</item>
		
		
	<item>
		<title>Inflected-introspection</title>
				
		<link>https://aramisnavarro.com/Inflected-introspection</link>

		<pubDate>Sun, 12 Nov 2023 13:08:57 +0000</pubDate>

		<dc:creator>Aramis Navarro</dc:creator>

		<guid isPermaLink="true">https://aramisnavarro.com/Inflected-introspection</guid>

		<description>
	Inflected Introspection
	II «Inflected Introspection»&#38;nbsp; 2019–ongoing
paper, ink, pigments, resinIn Inflected Introspection, language becomes both material and method. The work begins with typed reflections—daily thoughts, concepts, and observations—archived on recycled studio paper. These fragments are later preserved in resin, echoing the logic of amber fossils (inclusives). In Ancient Greece, amber was known as electron, a substance thought to store energy and memory. This notion stands in contrast to the analog approach of preservation in the work. Accidental marks, sketches, or notes from the reverse side emerge through the process, layering meaning and disrupting intent. What begins as a note becomes something else entirely, raising questions about when a thought transitions into matter—at its inception, through its repetition, or in the act of preservation itself.︎ Text by Nadia Veronese, visuell-verbale Sprach-Bilder

&#60;img width="4000" height="2667" width_o="4000" height_o="2667" data-src="https://freight.cargo.site/t/original/i/1e7aa409c6d5bd1dc275f5ded21cb270c33a1f2c8addb31bfbab4bdce3d1c975/20211210_HEIMSPIEL_123.jpg" data-mid="232987058" border="0"  src="https://freight.cargo.site/w/1000/i/1e7aa409c6d5bd1dc275f5ded21cb270c33a1f2c8addb31bfbab4bdce3d1c975/20211210_HEIMSPIEL_123.jpg" /&#62;
Photography Daniel Ammann, Heimspiel 2021, Kunstmuseum St.Gallen

&#60;img width="2835" height="1890" width_o="2835" height_o="1890" data-src="https://freight.cargo.site/t/original/i/72442a69d551d359544ccdfc42e76ca0a38b7fd25cc96013196cef13706a9cc2/Kunstmuseum_SG-191.jpg" data-mid="232987734" border="0"  src="https://freight.cargo.site/w/1000/i/72442a69d551d359544ccdfc42e76ca0a38b7fd25cc96013196cef13706a9cc2/Kunstmuseum_SG-191.jpg" /&#62;photography Anna-Tina Eberhard, Heimspiel 2021, Kunstmuseum St.Gallen

&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/aecb3e98b978275ce33fa544a91863ecc705010fb25873d2e1979ce39e8b9550/II_Nullpunkt_low.jpg" data-mid="232946767" border="0"  src="https://freight.cargo.site/w/1000/i/aecb3e98b978275ce33fa544a91863ecc705010fb25873d2e1979ce39e8b9550/II_Nullpunkt_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/2335e8902e9a532937192e6865dac1c28af497ea63ec02a3c2665c14c56430bd/II_Abracadabra_low.jpg" data-mid="232946733" border="0"  src="https://freight.cargo.site/w/1000/i/2335e8902e9a532937192e6865dac1c28af497ea63ec02a3c2665c14c56430bd/II_Abracadabra_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/e90eeb656330eea39aefefb5fb6b7a2c4280cefe99fbca7345fc01feb6a16e32/II_Agaynste_low.jpg" data-mid="232946734" border="0"  src="https://freight.cargo.site/w/1000/i/e90eeb656330eea39aefefb5fb6b7a2c4280cefe99fbca7345fc01feb6a16e32/II_Agaynste_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/6c64aceb4d85d62fff96f89fcb649067d11bd53eb917cdf8d8b6e0ade5495753/II_announcement_low.jpg" data-mid="232946735" border="0"  src="https://freight.cargo.site/w/1000/i/6c64aceb4d85d62fff96f89fcb649067d11bd53eb917cdf8d8b6e0ade5495753/II_announcement_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/a340d7ec4c3f5b1a791ab84abf5ca215a61291421e8bc1764abcc66bbedc5ae8/II_Bandit_low.jpg" data-mid="232946736" border="0"  src="https://freight.cargo.site/w/1000/i/a340d7ec4c3f5b1a791ab84abf5ca215a61291421e8bc1764abcc66bbedc5ae8/II_Bandit_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/a5f20863c05ea337ec519b13775c9300437dd3f0fe098af9c6fa545db78db62a/II_bridges_low.jpg" data-mid="232946737" border="0"  src="https://freight.cargo.site/w/1000/i/a5f20863c05ea337ec519b13775c9300437dd3f0fe098af9c6fa545db78db62a/II_bridges_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/c0087f626c6d307375e5046a402fc68a6ed9949e4136898b7c7488c070cf8d4a/II_carryPigeon_low.jpg" data-mid="232946738" border="0"  src="https://freight.cargo.site/w/1000/i/c0087f626c6d307375e5046a402fc68a6ed9949e4136898b7c7488c070cf8d4a/II_carryPigeon_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/122ef3eeadb8ff4a01ee55699dbda87a942d3d9905219c46e94c0ae606ace958/II_catpapers_low.jpg" data-mid="232946739" border="0"  src="https://freight.cargo.site/w/1000/i/122ef3eeadb8ff4a01ee55699dbda87a942d3d9905219c46e94c0ae606ace958/II_catpapers_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/6057b5ef7d3785b318ec45788367d65b3d23ce01fb2581597c2f0c5964f6f2b6/II_clairvoyant_low.jpg" data-mid="232946740" border="0"  src="https://freight.cargo.site/w/1000/i/6057b5ef7d3785b318ec45788367d65b3d23ce01fb2581597c2f0c5964f6f2b6/II_clairvoyant_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/4932a090b68bdf303b6fa54c0ef0a437ad767068a4ab5779788972e851a2b544/II_code_low.jpg" data-mid="232946741" border="0"  src="https://freight.cargo.site/w/1000/i/4932a090b68bdf303b6fa54c0ef0a437ad767068a4ab5779788972e851a2b544/II_code_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/317133a7df8d03cc2619fc599d81c51f07dbc3b87044e3439345e3ba3a91352a/II_Cybersacred_low.jpg" data-mid="232946742" border="0"  src="https://freight.cargo.site/w/1000/i/317133a7df8d03cc2619fc599d81c51f07dbc3b87044e3439345e3ba3a91352a/II_Cybersacred_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/34b49fc4c71f90e79cc2efa781b2dd017f178dedf219986f30a1d594838ed60e/II_DefBubblesort_low.jpg" data-mid="232946743" border="0"  src="https://freight.cargo.site/w/1000/i/34b49fc4c71f90e79cc2efa781b2dd017f178dedf219986f30a1d594838ed60e/II_DefBubblesort_low.jpg" /&#62;
&#60;img width="6048" height="8064" width_o="6048" height_o="8064" data-src="https://freight.cargo.site/t/original/i/8346e312ae9bfe7210897b473babedcf831befe134b0adf19d6e2645fa3a4719/II_defTable_low.jpg" data-mid="232946744" border="0"  src="https://freight.cargo.site/w/1000/i/8346e312ae9bfe7210897b473babedcf831befe134b0adf19d6e2645fa3a4719/II_defTable_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/e094544cd5493c61aaec6e5c145c34b0ccd7099342d3449960558689e92cb433/II_Demonstration_low.jpg" data-mid="232946745" border="0"  src="https://freight.cargo.site/w/1000/i/e094544cd5493c61aaec6e5c145c34b0ccd7099342d3449960558689e92cb433/II_Demonstration_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/b1253ea7e1f3147c6e71e896766cd08829877f53ab8424303a3e143ad8a6ab17/II_Denken_low.jpg" data-mid="232946746" border="0"  src="https://freight.cargo.site/w/1000/i/b1253ea7e1f3147c6e71e896766cd08829877f53ab8424303a3e143ad8a6ab17/II_Denken_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/97fb841e2334b1768741fa1e088fe7ff8b6b4ffae5e94f2ddbf1d926093b6d74/II_e-e-e_low.jpg" data-mid="232946747" border="0"  src="https://freight.cargo.site/w/1000/i/97fb841e2334b1768741fa1e088fe7ff8b6b4ffae5e94f2ddbf1d926093b6d74/II_e-e-e_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/734d3ce4c49a1ba1cb6901a8d67948137fb75a21a2f41cb1554af9300aac30cc/II_Echochamber_low.jpg" data-mid="232946748" border="0"  src="https://freight.cargo.site/w/1000/i/734d3ce4c49a1ba1cb6901a8d67948137fb75a21a2f41cb1554af9300aac30cc/II_Echochamber_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/c17664fd1cf5e0e7acbad74ca0ff93c3d16733269444ee791048cb771fdc428c/II_EchoChamberKeyboard_low.jpg" data-mid="232946749" border="0"  src="https://freight.cargo.site/w/1000/i/c17664fd1cf5e0e7acbad74ca0ff93c3d16733269444ee791048cb771fdc428c/II_EchoChamberKeyboard_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/321d767e20cbfe0706da58dc19d076895dc15c212a66ab3a7e0ce7015af368fb/II_Edicktor_low.jpg" data-mid="232946750" border="0"  src="https://freight.cargo.site/w/1000/i/321d767e20cbfe0706da58dc19d076895dc15c212a66ab3a7e0ce7015af368fb/II_Edicktor_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/ac05bc0319f78a780c489a61d555575215760978f6e3aaeaa18b793aafe32bce/II_Elektron_low.jpg" data-mid="232946751" border="0"  src="https://freight.cargo.site/w/1000/i/ac05bc0319f78a780c489a61d555575215760978f6e3aaeaa18b793aafe32bce/II_Elektron_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/7e743279168094c60c92fefb693e6682d4e6876cac82c82a9ef864d7b0b895b9/II_Entropy_low.jpg" data-mid="232946752" border="0"  src="https://freight.cargo.site/w/1000/i/7e743279168094c60c92fefb693e6682d4e6876cac82c82a9ef864d7b0b895b9/II_Entropy_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/9092e273676efbc749e5c9510d81dd6a6e1a0f9f79141d25602282a0a43eea33/II_Entwicklung_low.jpg" data-mid="232946753" border="0"  src="https://freight.cargo.site/w/1000/i/9092e273676efbc749e5c9510d81dd6a6e1a0f9f79141d25602282a0a43eea33/II_Entwicklung_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/a6eaf6de6edc60a0e118e8e64b1d48f41c2ce9732c9c01e2fe82aa78501afd18/II_environment_low.jpg" data-mid="232946754" border="0"  src="https://freight.cargo.site/w/1000/i/a6eaf6de6edc60a0e118e8e64b1d48f41c2ce9732c9c01e2fe82aa78501afd18/II_environment_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/be1a40e45c3c75045e2dd8514d475c0b927b8868484372ac3076e234b4437215/II_equation_low.jpg" data-mid="232946755" border="0"  src="https://freight.cargo.site/w/1000/i/be1a40e45c3c75045e2dd8514d475c0b927b8868484372ac3076e234b4437215/II_equation_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/dbfdbc93524c1d9c990b435a47155e2a48880e3189b5e9d3cfa0c44f2ca5bb0e/II_exchangeNode_low.jpg" data-mid="232946756" border="0"  src="https://freight.cargo.site/w/1000/i/dbfdbc93524c1d9c990b435a47155e2a48880e3189b5e9d3cfa0c44f2ca5bb0e/II_exchangeNode_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/512a35423d984aefccdd1828d4bdf8a5a72b488093181be2ebedea6409deb946/II_fig1_low.jpg" data-mid="232946757" border="0"  src="https://freight.cargo.site/w/1000/i/512a35423d984aefccdd1828d4bdf8a5a72b488093181be2ebedea6409deb946/II_fig1_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/e996036245808a77c1478fdd965071470ac09ada876eb5338b581b7a23046a77/II_Flat_low.jpg" data-mid="232946758" border="0"  src="https://freight.cargo.site/w/1000/i/e996036245808a77c1478fdd965071470ac09ada876eb5338b581b7a23046a77/II_Flat_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/5a92e726b7ae62e5923d858c775b93f051e90f4b45a9dca87dce5fad5700c69d/II_Flux_low.jpg" data-mid="232946759" border="0"  src="https://freight.cargo.site/w/1000/i/5a92e726b7ae62e5923d858c775b93f051e90f4b45a9dca87dce5fad5700c69d/II_Flux_low.jpg" /&#62;
&#60;img width="1333" height="1778" width_o="1333" height_o="1778" data-src="https://freight.cargo.site/t/original/i/e578630c23aee1a460eb1500c408d7aa9f2e338f59293689ae83c831a20ab430/II_GarticPhone_low.jpg" data-mid="232946760" border="0"  src="https://freight.cargo.site/w/1000/i/e578630c23aee1a460eb1500c408d7aa9f2e338f59293689ae83c831a20ab430/II_GarticPhone_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/5541d789eb398514a2e273ee7ca3abdc68242429abf6b7ff288802af74b13d6d/II_gutschein_low.jpg" data-mid="232946761" border="0"  src="https://freight.cargo.site/w/1000/i/5541d789eb398514a2e273ee7ca3abdc68242429abf6b7ff288802af74b13d6d/II_gutschein_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/dc63ad063a0b264074d2faae8b8d42de6b52e5313e3c7d6cd86fa3e8a0060272/II_Illusion_low.jpg" data-mid="232946762" border="0"  src="https://freight.cargo.site/w/1000/i/dc63ad063a0b264074d2faae8b8d42de6b52e5313e3c7d6cd86fa3e8a0060272/II_Illusion_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/7883fb3df06ea1aa52fee3afe2a63b47ebfec37e3fc34c1df4729753b5e21faf/II_Liminal_low.jpg" data-mid="232946763" border="0"  src="https://freight.cargo.site/w/1000/i/7883fb3df06ea1aa52fee3afe2a63b47ebfec37e3fc34c1df4729753b5e21faf/II_Liminal_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/cc7462db127ea82aca9db0503aea9c8ea8da003fe93d7c25de79b5de2d0255a2/II_LMN_low.jpg" data-mid="232946764" border="0"  src="https://freight.cargo.site/w/1000/i/cc7462db127ea82aca9db0503aea9c8ea8da003fe93d7c25de79b5de2d0255a2/II_LMN_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/eabca25f4294f5e25d1d0503fe913c6a6819b9ca2f4f4746372ad119053e34cc/II_LogicMagic_low.jpg" data-mid="232946765" border="0"  src="https://freight.cargo.site/w/1000/i/eabca25f4294f5e25d1d0503fe913c6a6819b9ca2f4f4746372ad119053e34cc/II_LogicMagic_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/ae319565bf837a2d04d8669449d72bbea41c8b1dbe7d5e596806bcab933ea21a/II_Network_low.jpg" data-mid="232946766" border="0"  src="https://freight.cargo.site/w/1000/i/ae319565bf837a2d04d8669449d72bbea41c8b1dbe7d5e596806bcab933ea21a/II_Network_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/5ca26ee9f435f1d750d86a774b7fdd7852a5af5b75cc987627b8f0ee051eb575/II_pot_low.jpg" data-mid="232946768" border="0"  src="https://freight.cargo.site/w/1000/i/5ca26ee9f435f1d750d86a774b7fdd7852a5af5b75cc987627b8f0ee051eb575/II_pot_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/787ad98f82f48c0164465814da01d5cafbe197bb5ea5a4fd7d86e96722274eab/II_Predicting_low.jpg" data-mid="232946769" border="0"  src="https://freight.cargo.site/w/1000/i/787ad98f82f48c0164465814da01d5cafbe197bb5ea5a4fd7d86e96722274eab/II_Predicting_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/ade953efea5aee8b22f2abd5d973aa682231c0ebed837d8b93c3ee151b4c8fa1/II_Pseudocode_low.jpg" data-mid="232946770" border="0"  src="https://freight.cargo.site/w/1000/i/ade953efea5aee8b22f2abd5d973aa682231c0ebed837d8b93c3ee151b4c8fa1/II_Pseudocode_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/63da561c834d3a6807aaf96efecfdf8301d9a1b33176f104802c46c185891ea8/II_Runde_low.jpg" data-mid="232946771" border="0"  src="https://freight.cargo.site/w/1000/i/63da561c834d3a6807aaf96efecfdf8301d9a1b33176f104802c46c185891ea8/II_Runde_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/4d4d42709f43b49fdd6eda04f562f04ad9a65a5c2d0e49228721a5f736fe680c/II_Salzstreuer_low.jpg" data-mid="232946772" border="0"  src="https://freight.cargo.site/w/1000/i/4d4d42709f43b49fdd6eda04f562f04ad9a65a5c2d0e49228721a5f736fe680c/II_Salzstreuer_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/99211e02944b9fbe498e8f354c219506ae36b7f479a466969d203d041fcc281b/II_ShapeshiftingNarratives_low.jpg" data-mid="232946773" border="0"  src="https://freight.cargo.site/w/1000/i/99211e02944b9fbe498e8f354c219506ae36b7f479a466969d203d041fcc281b/II_ShapeshiftingNarratives_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/ba45e0b99ce8d9ab2928ed5c6512bbe962a70ef8526a805ce090d832f008e8bf/II_SindWir_low.jpg" data-mid="232946774" border="0"  src="https://freight.cargo.site/w/1000/i/ba45e0b99ce8d9ab2928ed5c6512bbe962a70ef8526a805ce090d832f008e8bf/II_SindWir_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/5fa983b5105e07305c194532a39183676b2e3f590a97a1be83768eec41ab8a75/II_stabileZustande_low.jpg" data-mid="232946775" border="0"  src="https://freight.cargo.site/w/1000/i/5fa983b5105e07305c194532a39183676b2e3f590a97a1be83768eec41ab8a75/II_stabileZustande_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/d71b3dd8513880dc5d7134188c7e469971ca083c0cbbd7a6b964ee966a584e6a/II_Symbiose_low.jpg" data-mid="232946776" border="0"  src="https://freight.cargo.site/w/1000/i/d71b3dd8513880dc5d7134188c7e469971ca083c0cbbd7a6b964ee966a584e6a/II_Symbiose_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/2b060bdd05fea70f1d02acb0cdf59f1dc6af3e154df918416f6a924661b772e0/II_Taube_low.jpg" data-mid="232946777" border="0"  src="https://freight.cargo.site/w/1000/i/2b060bdd05fea70f1d02acb0cdf59f1dc6af3e154df918416f6a924661b772e0/II_Taube_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/aa3d9a9d5ae3e271a97055bc75b881eb7c046e88984264332830448551d52c78/II_Thauma_low.jpg" data-mid="232946778" border="0"  src="https://freight.cargo.site/w/1000/i/aa3d9a9d5ae3e271a97055bc75b881eb7c046e88984264332830448551d52c78/II_Thauma_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/8a418c9a9e9b4df670207d0b1c01ea62e8e46ab098cfa708ee23935997ddf0bb/II_tool_low.jpg" data-mid="232946779" border="0"  src="https://freight.cargo.site/w/1000/i/8a418c9a9e9b4df670207d0b1c01ea62e8e46ab098cfa708ee23935997ddf0bb/II_tool_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/d08592923c86de4c215e5af8b957d01e8e18555b80f2346cc946b770e50672f7/II_Trinity_low.jpg" data-mid="232946780" border="0"  src="https://freight.cargo.site/w/1000/i/d08592923c86de4c215e5af8b957d01e8e18555b80f2346cc946b770e50672f7/II_Trinity_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/49187740892599b24b2ec99be45367311145eb11e6f881de86649d1e4fb0eb8c/II_ununum_low.jpg" data-mid="232946781" border="0"  src="https://freight.cargo.site/w/1000/i/49187740892599b24b2ec99be45367311145eb11e6f881de86649d1e4fb0eb8c/II_ununum_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/802a20e0da3f06540c85848caacee9ae6457be9eacd9ffe015c96b99111efc4c/II_Voodoo_low.jpg" data-mid="232946782" border="0"  src="https://freight.cargo.site/w/1000/i/802a20e0da3f06540c85848caacee9ae6457be9eacd9ffe015c96b99111efc4c/II_Voodoo_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/238a3a71a4c7574edbdcf35fd8d8ed739f6b3fb342dfb10209b05949d01143a8/II_w_low.jpg" data-mid="232946783" border="0"  src="https://freight.cargo.site/w/1000/i/238a3a71a4c7574edbdcf35fd8d8ed739f6b3fb342dfb10209b05949d01143a8/II_w_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/1ba319542f78da4703e4a3b67f9452aa0328ba0d4e0abfdf2b16b03dd7f3304d/II_Walks_walks_walks_low.jpg" data-mid="232946784" border="0"  src="https://freight.cargo.site/w/1000/i/1ba319542f78da4703e4a3b67f9452aa0328ba0d4e0abfdf2b16b03dd7f3304d/II_Walks_walks_walks_low.jpg" /&#62;
&#60;img width="1367" height="1823" width_o="1367" height_o="1823" data-src="https://freight.cargo.site/t/original/i/77878886450d42adcbbf08de6332fdc938668cc51d466d2c88e3e435df489b59/II_word_low.jpg" data-mid="232946785" border="0"  src="https://freight.cargo.site/w/1000/i/77878886450d42adcbbf08de6332fdc938668cc51d466d2c88e3e435df489b59/II_word_low.jpg" /&#62;



	
	
</description>
		
	</item>
		
		
	<item>
		<title>useless eater</title>
				
		<link>https://aramisnavarro.com/useless-eater</link>

		<pubDate>Tue, 13 May 2025 09:30:27 +0000</pubDate>

		<dc:creator>Aramis Navarro</dc:creator>

		<guid isPermaLink="true">https://aramisnavarro.com/useless-eater</guid>

		<description>
	useless eater
	«useless eater» 2025
photography, acrylic, ink on cardboard
poem –&#38;nbsp;a doves flapping wing 
carryinga letter rolled like a ring

You won’t believe this.&#38;nbsp; &#38;nbsp; 
The solution to 99% of your problems.&#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; 
Do this before 7 o’clock in the morning.
What they don’t want you to know...
&#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; Street pigeons only shapeshifted&#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; when unemployed.&#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; so...&#38;nbsp; &#38;nbsp; me and you&#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; might also turn to
Useless Eaters&#38;nbsp; &#38;nbsp; 
Useless Eaters &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; 
Useless Eaters


&#60;img width="1484" height="1978" width_o="1484" height_o="1978" data-src="https://freight.cargo.site/t/original/i/1faf354ec53f64c0a2719110ba7030d235b8eac781a5daaac91d9719974dfaa1/UE_04_low.jpg" data-mid="233131150" border="0"  src="https://freight.cargo.site/w/1000/i/1faf354ec53f64c0a2719110ba7030d235b8eac781a5daaac91d9719974dfaa1/UE_04_low.jpg" /&#62;

	&#60;img width="1550" height="2066" width_o="1550" height_o="2066" data-src="https://freight.cargo.site/t/original/i/81918b48ca162fce5a614b5cb642172b642cc2f5faafa4d4e95ec784ccba8201/UE_03_low.jpg" data-mid="233131148" border="0"  src="https://freight.cargo.site/w/1000/i/81918b48ca162fce5a614b5cb642172b642cc2f5faafa4d4e95ec784ccba8201/UE_03_low.jpg" /&#62;
	&#60;img width="1556" height="2075" width_o="1556" height_o="2075" data-src="https://freight.cargo.site/t/original/i/98c7cc80430416bf489fae5295f03ef2c79fb576261ac5c97c7d3d71ed84eb6f/UE_01_low.jpg" data-mid="233131151" border="0"  src="https://freight.cargo.site/w/1000/i/98c7cc80430416bf489fae5295f03ef2c79fb576261ac5c97c7d3d71ed84eb6f/UE_01_low.jpg" /&#62;
&#60;img width="1653" height="1239" width_o="1653" height_o="1239" data-src="https://freight.cargo.site/t/original/i/3b3ae2b8cec7e8c5fc662497e102dadf8db780f866c6219373f8cb99ea46a831/UE_02_low.jpg" data-mid="233131149" border="0"  src="https://freight.cargo.site/w/1000/i/3b3ae2b8cec7e8c5fc662497e102dadf8db780f866c6219373f8cb99ea46a831/UE_02_low.jpg" /&#62;</description>
		
	</item>
		
		
	<item>
		<title>RhizomesHyperSanctum</title>
				
		<link>https://aramisnavarro.com/RhizomesHyperSanctum</link>

		<pubDate>Wed, 18 Jun 2025 07:01:52 +0000</pubDate>

		<dc:creator>Aramis Navarro</dc:creator>

		<guid isPermaLink="true">https://aramisnavarro.com/RhizomesHyperSanctum</guid>

		<description>
	RHS
	«RhizomesHyperSanctum» 2025
mixed media
RhizomesHyperSanctum is conceived as a tribute—a place of worship for the invisible architecture of cyberspace. It’s a conceptual sanctuary for the systems that penetrates us, not spiritually but systemically.

The scaffold is skeletal, see-through—offering no shelter, only a frame. It stands for the hyper room: a networked zone we can’t touch, but that touches us constantly. Accessed not through the biological body but through the extensions of it. The installation gives form to a metaphysical condition: we live inside systems that we cannot see, but still believe in. The sanctum is not about faith in the divine, but about our quiet submission to the coded logics we’ve come to trust.



	
	

	&#60;img width="1063" height="703" width_o="1063" height_o="703" data-src="https://freight.cargo.site/t/original/i/1a542ae1b3134cba2bd5ca15c5fc893f87f89ddfc80bd9d16f8b74ae35f486a7/KHSG_03_AramisNavarro_2025_low.jpg" data-mid="234718206" border="0"  src="https://freight.cargo.site/w/1000/i/1a542ae1b3134cba2bd5ca15c5fc893f87f89ddfc80bd9d16f8b74ae35f486a7/KHSG_03_AramisNavarro_2025_low.jpg" /&#62;



	
	&#60;img width="1063" height="709" width_o="1063" height_o="709" data-src="https://freight.cargo.site/t/original/i/b9b13a64ddf189bbdb0289615befd21ba59c3222af8b2f33dbe27caa73ac9c5e/KHSG_04_AramisNavarro_2025_low.jpg" data-mid="234718207" border="0"  src="https://freight.cargo.site/w/1000/i/b9b13a64ddf189bbdb0289615befd21ba59c3222af8b2f33dbe27caa73ac9c5e/KHSG_04_AramisNavarro_2025_low.jpg" /&#62;


&#60;img width="1063" height="710" width_o="1063" height_o="710" data-src="https://freight.cargo.site/t/original/i/211b426e0cee14646ef997f1542579aff970b207b024e024d8ce334341763147/KHSG_02_AramisNavarro_2025_low.jpg" data-mid="234718205" border="0"  src="https://freight.cargo.site/w/1000/i/211b426e0cee14646ef997f1542579aff970b207b024e024d8ce334341763147/KHSG_02_AramisNavarro_2025_low.jpg" /&#62;Aramis Navarro, «algorithmic-mega-death-superspell.exe», Ausstellungsansicht, 2025. 
Photo: Kunst Halle Sankt Gallen, E. Sommer.

&#60;img width="850" height="1277" width_o="850" height_o="1277" data-src="https://freight.cargo.site/t/original/i/91038b20f3e1ed4c1a6b9c09ad3f6d4cc6f52accca9611bf899bb8f6db9a4bb5/router-KH-02-low.jpg" data-mid="236094798" border="0"  src="https://freight.cargo.site/w/850/i/91038b20f3e1ed4c1a6b9c09ad3f6d4cc6f52accca9611bf899bb8f6db9a4bb5/router-KH-02-low.jpg" /&#62;
	&#60;img width="850" height="1277" width_o="850" height_o="1277" data-src="https://freight.cargo.site/t/original/i/ff52c97bf5677cbe522528e53460a761c4394382d111172f54e00656430ca4f1/lungs-KH-low.jpg" data-mid="236094800" border="0"  src="https://freight.cargo.site/w/850/i/ff52c97bf5677cbe522528e53460a761c4394382d111172f54e00656430ca4f1/lungs-KH-low.jpg" /&#62;
	

</description>
		
	</item>
		
		
	<item>
		<title>GOTT-IST-TOT</title>
				
		<link>https://aramisnavarro.com/GOTT-IST-TOT</link>

		<pubDate>Sun, 12 Nov 2023 13:08:56 +0000</pubDate>

		<dc:creator>Aramis Navarro</dc:creator>

		<guid isPermaLink="true">https://aramisnavarro.com/GOTT-IST-TOT</guid>

		<description>
	GOTT-IST-TOT
&#60;img width="4284" height="5712" width_o="4284" height_o="5712" data-src="https://freight.cargo.site/t/original/i/a3d85e98a0d662fc91c8dec8d4e9d6241dd2d399f4c63ea534c3f72fa96f7a9f/IMG_6089.JPG" data-mid="232946102" border="0" data-scale="78" src="https://freight.cargo.site/w/1000/i/a3d85e98a0d662fc91c8dec8d4e9d6241dd2d399f4c63ea534c3f72fa96f7a9f/IMG_6089.JPG" /&#62;


	GOTT-IST-TOT, 2023, 2-channel audio installation, 3'12"
aluminum, concrete, water, pigments, exciterA water-filled basin becomes a speaker, its surface in constant vibration. The installation breaks the reflection—literally and metaphorically—mirroring a spiritual void in the narcissistic self. The audio piece blends slang with spiritual explanations, creating a dissonant soundscape that amplifies inner emptiness and the paradox of a self stuck between surface change and internal inertia.︎ Link

&#60;img width="8064" height="6048" width_o="8064" height_o="6048" data-src="https://freight.cargo.site/t/original/i/14d66e92d30637ca3a31cf5edd57ca216b51d7b4939e3c209e64df079dd5c205/GOTT-IST-TOT_01-.jpg" data-mid="232945824" border="0"  src="https://freight.cargo.site/w/1000/i/14d66e92d30637ca3a31cf5edd57ca216b51d7b4939e3c209e64df079dd5c205/GOTT-IST-TOT_01-.jpg" /&#62;&#60;img width="968" height="726" width_o="968" height_o="726" data-src="https://freight.cargo.site/t/original/i/83058f2cde65ce3a300d476b35480ca99eb9d04d4f3afbd32d5cbf78e493a06c/cc_rockingwindshield_low.jpg" data-mid="232946365" border="0"  src="https://freight.cargo.site/w/968/i/83058f2cde65ce3a300d476b35480ca99eb9d04d4f3afbd32d5cbf78e493a06c/cc_rockingwindshield_low.jpg" /&#62;Aramis Navarro, «the bread of angels» Kulturfolger Zürich, exhibtion view, 2023

poem – solala panels

Lightboxes move through the city&#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; 
like, light might
ignite space – a headspace&#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; 
Emotics erotics &#38;nbsp; &#38;nbsp; 
lightning mirrors voices
&#38;nbsp; &#38;nbsp; again and again
communication s’over&#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp;&#38;nbsp; 
Sober
Moving through the city
&#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp;&#38;nbsp; 
Procession
&#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; 
towards a collective collection&#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; collecting solitude
Exhibited In front of everyone&#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp;
 Lightboxes &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; 
show me your face
&#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; 
where 
lessandless

&#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; &#38;nbsp; is to be found


	




	&#60;img width="5951" height="7205" width_o="5951" height_o="7205" data-src="https://freight.cargo.site/t/original/i/3a34ae61deb835979a4ab6ba683975a10fb4f220f5cd9e51d5583e8034d77750/Narcissus-Caravaggio_1594-96-copy.jpg" data-mid="237198215" border="0"  src="https://freight.cargo.site/w/1000/i/3a34ae61deb835979a4ab6ba683975a10fb4f220f5cd9e51d5583e8034d77750/Narcissus-Caravaggio_1594-96-copy.jpg" /&#62;Caravaggio: Narcissus (ca. 1597–1599). Oil on canvas, Galleria Nazionale d’Arte Antica, Rome. Source: Wikimedia Commons, public domain.

	&#60;img width="2913" height="1942" width_o="2913" height_o="1942" data-src="https://freight.cargo.site/t/original/i/00d0a24b516b0f47cf0128a9af7569d9e58708814a815817f3e3bd29b8d40d64/GOTT-IST-TOT_detail.jpg" data-mid="232945825" border="0"  src="https://freight.cargo.site/w/1000/i/00d0a24b516b0f47cf0128a9af7569d9e58708814a815817f3e3bd29b8d40d64/GOTT-IST-TOT_detail.jpg" /&#62;
</description>
		
	</item>
		
		
	<item>
		<title>the tree of knowledge </title>
				
		<link>https://aramisnavarro.com/the-tree-of-knowledge</link>

		<pubDate>Tue, 14 Jul 2026 09:23:59 +0000</pubDate>

		<dc:creator>Aramis Navarro</dc:creator>

		<guid isPermaLink="true">https://aramisnavarro.com/the-tree-of-knowledge</guid>

		<description>
	untitled (the tree of knowledge)
&#60;img width="934" height="1363" width_o="934" height_o="1363" data-src="https://freight.cargo.site/t/original/i/ed4746f33d478ca16f31292abf855be2563b05d4e024e417df74268fc67c3722/Arbor-scientiae.png" data-mid="250395768" border="0"  src="https://freight.cargo.site/w/934/i/ed4746f33d478ca16f31292abf855be2563b05d4e024e417df74268fc67c3722/Arbor-scientiae.png" /&#62;Figure X. Arbor Scientiae (Tree of Science), woodcut from the 1505 Barcelona edition of Ramon Llull's Arbor Scientiae(original work composed c. 1295


&#60;img width="2338" height="1654" width_o="2338" height_o="1654" data-src="https://freight.cargo.site/t/original/i/4f2f4251a6aecefd64b2bf6d3cce12203934f07f60ec47bba693dc7a8b683749/BIBAL-16.jpeg" data-mid="250395767" border="0"  src="https://freight.cargo.site/w/1000/i/4f2f4251a6aecefd64b2bf6d3cce12203934f07f60ec47bba693dc7a8b683749/BIBAL-16.jpeg" /&#62;
	«the tree of knowledge &#38;amp; the bibliotheca alexandrina»&#38;nbsp;2026


The apples are rotting on the floor.


Nobody touched them.


Or everyone did and this is what touching looks like now.


sssssssssssss



Something is always about to bite.


Or already has.


The server rack hums the way the garden must have hummed before the hum became audible, before there was an ear trained enough to hear the difference between silence and the noise underneath silence.


And then they realized they were naked.


Not metaphorically. The exposure was material, was skin, was the sudden unbearable legibility of the body to itself. Knowledge as vulnerability. Knowing as the permanent end of not-knowing, which cannot be undone, which is the only truly irreversible transaction in the record.


We carry the tree in the pocket now.


We bite every morning before we are fully awake.


The apple is the feed, is the search, is the question typed at 3am into a system that has no stake in the answer.





ssssss





The cables run from the rack to the wall to the room to the building to the infrastructure beneath the city to the undersea cables to the data centers burning in the desert to the rare earth minerals pulled from the ground by hands we will never see.


The root system goes deep.


It always did.


We just stopped calling it that.


The K flickers.


Know.


Now.


The apples continue their work on the floor.



Patient, deliberate, accurate.


&#60;img width="2000" height="1333" width_o="2000" height_o="1333" data-src="https://freight.cargo.site/t/original/i/4149e645e98c28ac5393bedb8da29ac27eb307a932aea98bb3a8166aa3238669/A_DSC7975_low.jpg" data-mid="250395641" border="0"  src="https://freight.cargo.site/w/1000/i/4149e645e98c28ac5393bedb8da29ac27eb307a932aea98bb3a8166aa3238669/A_DSC7975_low.jpg" /&#62;Aramis Navarro, «untitled (the tree of knowledge)», Ausstellungsansicht, 2025. Photo: Hiltibold, M. Rinderknecht.


&#60;img width="2000" height="1333" width_o="2000" height_o="1333" data-src="https://freight.cargo.site/t/original/i/cef310663d577ac217bb6efca5fb1a24e209388bc96947d558d724f7c0eee897/_DSC7964_low.jpg" data-mid="250395640" border="0"  src="https://freight.cargo.site/w/1000/i/cef310663d577ac217bb6efca5fb1a24e209388bc96947d558d724f7c0eee897/_DSC7964_low.jpg" /&#62;&#60;img width="2000" height="1333" width_o="2000" height_o="1333" data-src="https://freight.cargo.site/t/original/i/ca14b11ef5b3452180aa65027afad24e6d2d901d47b283a81b152bb3ea9c1279/_DSC7940_low.jpg" data-mid="250395638" border="0"  src="https://freight.cargo.site/w/1000/i/ca14b11ef5b3452180aa65027afad24e6d2d901d47b283a81b152bb3ea9c1279/_DSC7940_low.jpg" /&#62;&#60;img width="2000" height="1333" width_o="2000" height_o="1333" data-src="https://freight.cargo.site/t/original/i/93b5f12f58dee14f4b89a9b3b2b67d1c3022d7f2a7506ed6d65c489a7c737c11/_DSC7894_lowjpg.jpg" data-mid="250395645" border="0"  src="https://freight.cargo.site/w/1000/i/93b5f12f58dee14f4b89a9b3b2b67d1c3022d7f2a7506ed6d65c489a7c737c11/_DSC7894_lowjpg.jpg" /&#62;&#60;img width="2000" height="1333" width_o="2000" height_o="1333" data-src="https://freight.cargo.site/t/original/i/670ce564f1ea5f2591e1b608be8b41f06ac03cf3e569b2376225f33948c1dcc8/_DSC7944_low.jpg" data-mid="250395639" border="0"  src="https://freight.cargo.site/w/1000/i/670ce564f1ea5f2591e1b608be8b41f06ac03cf3e569b2376225f33948c1dcc8/_DSC7944_low.jpg" /&#62;&#60;img width="2000" height="1333" width_o="2000" height_o="1333" data-src="https://freight.cargo.site/t/original/i/4ed1e65007b0f1a38c843de71cd884e2adef1d611329bb4245928a34404985a1/_DSC7895_low.jpg" data-mid="250395644" border="0"  src="https://freight.cargo.site/w/1000/i/4ed1e65007b0f1a38c843de71cd884e2adef1d611329bb4245928a34404985a1/_DSC7895_low.jpg" /&#62;&#60;img width="2000" height="1333" width_o="2000" height_o="1333" data-src="https://freight.cargo.site/t/original/i/ffb333851cc72be55edd8904c7ba3362c8cb727904aae77cd3f209f76a7a74d0/_DSC7848_low.jpg" data-mid="250395642" border="0"  src="https://freight.cargo.site/w/1000/i/ffb333851cc72be55edd8904c7ba3362c8cb727904aae77cd3f209f76a7a74d0/_DSC7848_low.jpg" /&#62;


	
	
	
	


	
	
</description>
		
	</item>
		
		
	<item>
		<title>Retibel</title>
				
		<link>https://aramisnavarro.com/Retibel</link>

		<pubDate>Thu, 04 Sep 2025 08:51:16 +0000</pubDate>

		<dc:creator>Aramis Navarro</dc:creator>

		<guid isPermaLink="true">https://aramisnavarro.com/Retibel</guid>

		<description>
	Retibel
	«Retibel» studies, 2025
Aluminum, Resin, Multiplex, Wood

Retibel is a series of works that takes the historical retable as a reference point and translates it into a digital altar. The works consist of flat panels with high-gloss black surfaces reminiscent of inactive displays. They remain empty and thus refer to a latent pictoriality that is not realized. 
While in religious tradition the retable was only opened on certain occasions, thus regulating access to images and narratives, the Retibel appears as its contemporary counterpart: an altar without revelation, whose sacred gesture lives on in its reference to the aesthetics of mobile devices. It marks a space of expectation in which screens themselves have become objects of worship and reflection.

&#60;img width="1815" height="2419" width_o="1815" height_o="2419" data-src="https://freight.cargo.site/t/original/i/b8ec56ae873bfeb27c7b99a04138cbd3c960edd44a5fec6fb619d2b32efb3d89/retibel_03_01-low.jpg" data-mid="238645399" border="0"  src="https://freight.cargo.site/w/1000/i/b8ec56ae873bfeb27c7b99a04138cbd3c960edd44a5fec6fb619d2b32efb3d89/retibel_03_01-low.jpg" /&#62;


	
	

	
&#60;img width="1815" height="2419" width_o="1815" height_o="2419" data-src="https://freight.cargo.site/t/original/i/3bb559be803bb3bd619d1bed57c5f22a493b64e112ab3a9c16fabb2e61ef5dcb/retibel_03_04-low.jpg" data-mid="237805250" border="0"  src="https://freight.cargo.site/w/1000/i/3bb559be803bb3bd619d1bed57c5f22a493b64e112ab3a9c16fabb2e61ef5dcb/retibel_03_04-low.jpg" /&#62;
&#60;img width="1656" height="2209" width_o="1656" height_o="2209" data-src="https://freight.cargo.site/t/original/i/7542ddaebad7d0e63981a91e3c89597ba331ecf273dab442b03079dc94f892ff/retibel_02_04-low.jpg" data-mid="237805253" border="0"  src="https://freight.cargo.site/w/1000/i/7542ddaebad7d0e63981a91e3c89597ba331ecf273dab442b03079dc94f892ff/retibel_02_04-low.jpg" /&#62;
&#60;img width="1063" height="744" width_o="1063" height_o="744" data-src="https://freight.cargo.site/t/original/i/2c15d3c3419247957c4613826c59434bd14977e4232b592a087877831c20c1be/Aramis-Navarro-26-low.jpg" data-mid="238419403" border="0"  src="https://freight.cargo.site/w/1000/i/2c15d3c3419247957c4613826c59434bd14977e4232b592a087877831c20c1be/Aramis-Navarro-26-low.jpg" /&#62;
&#60;img width="1815" height="2419" width_o="1815" height_o="2419" data-src="https://freight.cargo.site/t/original/i/b74c5dafb018420f736deb0036be0d7bcdb1a68606cffe8dac13ea41b8ef4a38/retibel_02_03-low.jpg" data-mid="237805254" border="0"  src="https://freight.cargo.site/w/1000/i/b74c5dafb018420f736deb0036be0d7bcdb1a68606cffe8dac13ea41b8ef4a38/retibel_02_03-low.jpg" /&#62;


</description>
		
	</item>
		
	</channel>
</rss>