<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>adriennedomnick</title>
	<link>https://adriennedomnick.com</link>
	<description>adriennedomnick</description>
	<pubDate>Tue, 28 Jul 2026 00:11:44 +0000</pubDate>
	<generator>https://adriennedomnick.com</generator>
	<language>en</language>
	
		
	<item>
		<title>bsides radio</title>
				
		<link>http://adriennedomnick.com/bsides-radio</link>

		<comments></comments>

		<pubDate>Tue, 28 Jul 2026 00:11:44 +0000</pubDate>

		<dc:creator>adriennedomnick</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">460044</guid>

		<description>

BSIDES RADIO — DJ · Selector · Culture


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --midnight: #0A0A0F;
  --amber: #E8A020;
  --rose: #C4647A;
  --chalk: #F0EDE6;
  --concrete: #2A2830;
  --smoke: #6B6578;
  --vinyl: #1A1820;
}

html { scroll-behavior: smooth; }
body {
  background: var(--midnight);
  color: var(--chalk);
  font-family: 'IBM Plex Mono', monospace;
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--amber);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
.cursor.expand { width: 44px; height: 44px; background: var(--rose); }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 3rem;
  background: linear-gradient(to bottom, rgba(10,10,15,0.98) 0%, transparent 100%);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.18em;
  color: var(--amber);
  text-decoration: none;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--smoke);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--chalk); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem 5rem;
  text-align: center;
}

/* ambient gradient halos */
.hero::before {
  content: '';
  position: absolute;
  top: 10%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,160,32,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(196,100,122,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: 1.2rem;
  justify-content: center;
}
.hero-eyebrow span { display: block; width: 32px; height: 1px; background: var(--rose); }

/* ─── VINYL CENTER ─── */
.vinyl-center {
  position: relative;
  width: clamp(280px, 42vw, 500px);
  height: clamp(280px, 42vw, 500px);
  margin: 0 auto 3.5rem;
}

.vinyl-glow {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,32,0.14) 0%, transparent 65%);
  animation: halo-breathe 4s ease-in-out infinite;
}
@keyframes halo-breathe {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

.vinyl-disc {
  width: 100%; height: 100%;
  border-radius: 50%;
  position: relative;
  background:
    radial-gradient(circle at 50% 50%, #2a2830 0%, #1a1820 7.5%, transparent 8%),
    repeating-radial-gradient(circle at 50% 50%,
      #131218 0px, #1a1820 2px, #131218 4px, #1a1820 6px
    );
  box-shadow:
    0 0 0 1.5px #2a2830,
    0 0 0 3px #0d0c12,
    0 30px 80px rgba(0,0,0,0.85),
    inset 0 0 60px rgba(0,0,0,0.5);
  animation: spin-vinyl 9s linear infinite;
  animation-play-state: paused;
  transition: filter 0.4s;
}
.vinyl-disc.playing { animation-play-state: running; }

@keyframes spin-vinyl {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Vinyl label — centered absolutely */
.vinyl-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 38%; height: 38%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--amber) 0%, #c07810 45%, var(--amber) 70%, #a86010 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.2rem;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.4), 0 4px 20px rgba(232,160,32,0.35);
}
.vinyl-label-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(0.75rem, 2.5vw, 1.2rem);
  letter-spacing: 0.12em;
  color: var(--midnight);
  line-height: 1;
}
.vinyl-label-sub {
  font-size: clamp(0.28rem, 0.7vw, 0.44rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(10,10,15,0.55);
  line-height: 1;
}
.vinyl-spindle {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--midnight);
  margin-top: 0.3rem;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.5);
}

/* Tonearm — overlaid, pivots from top-right */
.tonearm-wrap {
  position: absolute;
  top: -6%; right: -8%;
  width: 38%; height: 65%;
  transform-origin: 88% 12%;
  transform: rotate(18deg);
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}
.tonearm-wrap.over-record { transform: rotate(0deg); }

.vinyl-click-hint {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: -1rem;
  margin-bottom: 2rem;
  transition: opacity 0.4s;
}
.vinyl-click-hint.hidden { opacity: 0; }

/* Hero headline — below the vinyl */
h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: 0.03em;
  color: var(--chalk);
}
h1 em {
  font-style: normal;
  color: var(--amber);
}

.hero-sub {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--smoke);
  line-height: 2;
  max-width: 500px;
  margin: 1.8rem auto 2.5rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
}

.hero-actions {
  display: flex; gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--amber);
  color: var(--midnight);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: none; cursor: none;
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,160,32,0.35); }

.btn-ghost {
  background: transparent;
  color: var(--chalk);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 1px solid var(--concrete); cursor: none;
  transition: border-color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--smoke); }

/* Scroll indicator */
.scroll-cue {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.scroll-cue-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--smoke));
  animation: scroll-drop 1.6s ease-in-out infinite;
}
@keyframes scroll-drop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
.scroll-cue-label {
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--smoke);
}

/* TICKER */
.ticker {
  background: var(--amber);
  padding: 0.65rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker-run 30s linear infinite;
}
.ticker-item {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--midnight);
  font-weight: 500;
  padding: 0 2.5rem;
}
.ticker-sep { opacity: 0.35; }
@keyframes ticker-run {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SECTIONS ─── */
section { padding: 7rem 4rem; }

.section-label {
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 3.5rem;
  display: flex; align-items: center; gap: 1.2rem;
}
.section-label::after {
  content: ''; flex: 1; height: 1px;
  background: var(--concrete);
}

/* ─── ABOUT ─── */
.about { background: var(--vinyl); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 720px;
}
h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
}
.about-body {
  font-size: 0.76rem;
  line-height: 2.1;
  color: var(--smoke);
  margin-bottom: 1.4rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
}
.about-body strong { color: var(--chalk); font-weight: 400; }

.stat-stack { display: flex; flex-direction: column; gap: 2.5rem; padding-top: 0.5rem; }
.stat-item { border-left: 2px solid var(--amber); padding-left: 1.4rem; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--chalk);
  line-height: 1;
}
.stat-desc { font-size: 0.58rem; letter-spacing: 0.18em; color: var(--smoke); margin-top: 0.2rem; text-transform: uppercase; }

/* ─── SETS / MIXES ─── */
.sets-section { background: var(--midnight); }
.sets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--concrete);
}
.set-card {
  background: var(--midnight);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: none;
}
.set-card:hover { background: var(--vinyl); }
.set-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.set-card:hover::before { transform: scaleX(1); }

.set-genre {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}
.set-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.set-meta {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--smoke);
}
.set-duration {
  position: absolute;
  bottom: 2rem; right: 2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--concrete);
  transition: color 0.3s;
}
.set-card:hover .set-duration { color: var(--amber); }
.set-play {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--smoke);
  transition: color 0.3s;
  cursor: none;
}
.set-card:hover .set-play { color: var(--amber); }
.set-play-icon {
  width: 22px; height: 22px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.5rem;
}

/* ─── RESIDENCIES ─── */
.res-section { background: var(--vinyl); }
.res-list { display: flex; flex-direction: column; }
.res-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--concrete);
  transition: padding-left 0.3s;
  cursor: none;
}
.res-row:first-child { border-top: 1px solid var(--concrete); }
.res-row:hover { padding-left: 1rem; }
.res-venue { font-size: 0.9rem; font-weight: 500; letter-spacing: 0.03em; }
.res-city { font-size: 0.7rem; color: var(--smoke); }
.res-type {
  font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--rose);
}
.res-year { font-size: 0.62rem; color: var(--smoke); text-align: right; }

/* ─── BOOKING ─── */
.booking { background: var(--midnight); }
.booking-inner {
  max-width: 720px; margin: 0 auto; text-align: center;
}
.booking-inner h2 { font-size: clamp(3rem, 7vw, 6.5rem); margin-bottom: 1rem; }
.booking-inner h2 em { font-style: normal; color: var(--amber); }
.booking-sub {
  font-size: 0.73rem;
  color: var(--smoke);
  line-height: 2;
  margin-bottom: 3rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
}
.booking-email {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  color: var(--amber);
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
  cursor: none;
  display: inline-block;
}
.booking-email:hover { border-color: var(--amber); }

.booking-types {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.booking-tag {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--concrete);
  color: var(--smoke);
  transition: border-color 0.25s, color 0.25s;
  cursor: none;
}
.booking-tag:hover { border-color: var(--amber); color: var(--amber); }

.socials {
  display: flex; justify-content: center; gap: 2.5rem;
  margin-top: 3.5rem;
}
.social-link {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--smoke);
  text-decoration: none;
  transition: color 0.25s;
  cursor: none;
}
.social-link:hover { color: var(--chalk); }

/* FOOTER */
footer {
  padding: 2rem 4rem;
  border-top: 1px solid var(--concrete);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.58rem; letter-spacing: 0.15em; color: var(--smoke); }

/* NOW PLAYING */
.now-playing {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(26,24,32,0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--concrete);
  padding: 1rem 4rem;
  display: flex; align-items: center; gap: 2rem;
  z-index: 300;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.now-playing.visible { transform: translateY(0); }

.np-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
  animation: np-blink 1.2s ease-in-out infinite;
}
@keyframes np-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.15; } }

.np-label { font-size: 0.52rem; letter-spacing: 0.22em; color: var(--smoke); text-transform: uppercase; }
.np-title { font-size: 0.82rem; font-weight: 500; margin-top: 0.15rem; }

.np-bars {
  display: flex; align-items: center; gap: 2px;
  height: 28px; margin-left: auto;
}
.np-bar {
  width: 3px; background: var(--amber);
  border-radius: 2px; min-height: 3px;
}

.np-close {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.12em;
  color: var(--smoke); background: none;
  border: none; cursor: none;
  padding: 0.3rem 0.6rem;
  margin-left: 1rem;
  transition: color 0.2s;
}
.np-close:hover { color: var(--chalk); }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  section { padding: 5rem 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sets-grid { grid-template-columns: 1fr; }
  .res-row { grid-template-columns: 1fr 1fr; }
  .res-year { display: none; }
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem; }
  .now-playing { padding: 1rem 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .vinyl-disc, .ticker-inner, .vinyl-glow, .scroll-cue-line { animation: none; }
}








  BSIDES RADIO
  
    About
    Sets
    Residencies
    Book
  




  
    
    MISSISSIPPI
    
  

  
  
    
    
      
      
        BSIDESRADIO
        Atlanta · Est. 2011
        
      
    
    
    
      
        
        
        
        
        
        
      
    
  

  ↑ Click the record to spin

  MississippiSummersBendingCorners.
  
    From church basements to festival main stages —
    BSIDES RADIO reads a room like scripture and moves it like a sermon.
    Every set is a conversation between the past and right now.
  
  
    Hear the Sets
    Book a Date
  

  
    
    Scroll
  




  BSIDES RADIO ✦DJ · Selector ✦Atlanta, GA ✦Hip-Hop ✦Soul ✦Afrobeats ✦Jazz ✦Gospel ✦R&#38;amp;B ✦Neo-Soul ✦Club Nights ✦Festival Ready ✦Now Booking 2024 ✦Global Reach ✦15+ Years ✦The Floor Listens ✦BSIDES RADIO ✦DJ · Selector ✦Atlanta, GA ✦Hip-Hop ✦Soul ✦Afrobeats ✦Jazz ✦Gospel ✦R&#38;amp;B ✦Neo-Soul ✦Club Nights ✦Festival Ready ✦Now Booking 2024 ✦Global Reach ✦15+ Years ✦The Floor Listens ✦




  The Selector
  
    
      Raised onVinyl.Runs on Soul.
      
        Marcus "BSIDES RADIO" Williams came up in East Atlanta, 
        surrounded by his grandmother's gospel records and the bass that 
        rolled through the block on Friday nights. He learned early that 
        a DJ is a storyteller — every transition, every drop, 
        every choice of what comes next is a sentence in a larger conversation.
      
      
        Fluent in Hip-Hop, Afrobeats, Soul, R&#38;amp;B, Jazz, and Gospel, 
        BSIDES RADIO doesn't chase trends. He finds the thread between 
        the music that built us and what's moving us right now, 
        and pulls the room through it.
      
      
        His sets have opened for Burna Boy, closed Afropunk Atlanta, 
        and held down a 5-year residency at The Velvet Underground. 
        The music changes. The soul doesn't.
      
    
  




  Mixes &#38;amp; Sets
  
    Soul · R&#38;amp;B
    Soul in the A
    Afropunk Atlanta · 2023
    
      ▶
      Listen
    
    1H 22M
  
    Afrobeats · Dancehall
    Lagos to London
    O2 Brixton Academy · 2023
    
      ▶
      Listen
    
    58M
  
    Gospel · Neo-Soul
    Church Clothes
    Love Renaissance · 2022
    
      ▶
      Listen
    
    1H 08M
  
    Hip-Hop · Trap Soul
    Block Party Vol. 3
    EAV Street Fest · 2022
    
      ▶
      Listen
    
    2H 00M
  
    Jazz · Lo-Fi · Soul
    Crate Digging
    The Velvet Underground · 2021
    
      ▶
      Listen
    
    1H 34M
  
    Afrobeats · Reggae
    Diaspora Dance
    ONE MusicFest · 2021
    
      ▶
      Listen
    
    1H 15M
  





  
    Book BSIDES RADIO
    Ready toMove the Room?
    
      Club nights, festivals, private events, brand activations, cultural celebrations — 
      if the energy is right, the music will be.
      Reach out and let's make something unforgettable.
    
    book@bsidesradio.com
    
      Club Nights
      Festivals
      Private Events
      Brand Activations
      Cultural Events
      University Bookings
    
    
      Instagram
      SoundCloud
      Mixcloud
      YouTube
    
  




  © 2024 BSIDES RADIO · Atlanta, GA
  All sets recorded in love




  
  
    Now Playing
    —
  
  
  ✕ Stop


</description>
		
		<excerpt>BSIDES RADIO — DJ · Selector · Culture            BSIDES RADIO        About     Sets     Residencies     Book                    MISSISSIPPI                  ...</excerpt>

		<!--<wfw:commentRss></wfw:commentRss>-->

	</item>
		
		
	<item>
		<title>hwf</title>
				
		<link>http://adriennedomnick.com/hwf</link>

		<comments></comments>

		<pubDate>Thu, 05 Aug 2021 01:51:40 +0000</pubDate>

		<dc:creator>adriennedomnick</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">409804</guid>

		<description></description>
		
		<excerpt></excerpt>

		<!--<wfw:commentRss></wfw:commentRss>-->

	</item>
		
		
	<item>
		<title>BLOG</title>
				
		<link>http://adriennedomnick.com/BLOG</link>

		<comments></comments>

		<pubDate>Tue, 09 Mar 2021 15:13:40 +0000</pubDate>

		<dc:creator>adriennedomnick</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">400284</guid>

		<description>COMING SOON</description>
		
		<excerpt>COMING SOON</excerpt>

		<!--<wfw:commentRss></wfw:commentRss>-->

	</item>
		
		
	<item>
		<title>art</title>
				
		<link>http://adriennedomnick.com/art</link>

		<comments></comments>

		<pubDate>Wed, 13 Jan 2021 22:24:27 +0000</pubDate>

		<dc:creator>adriennedomnick</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">395262</guid>

		<description>Select Works - Painted on Canvas &#38;amp; Wood - 2010-2021
&#60;img width="4032" height="3024" width_o="4032" height_o="3024" src_o="https://cortex.persona.co/t/original/i/1a89263d48a36acf5a75d175fe717e963aa73edaeea2cc1f929f54ff0b6b7bec/mama-rose-kitchen.jpg" data-mid="1063436" border="0" data-scale="60"/&#62;&#60;img width="3300" height="4200" width_o="3300" height_o="4200" src_o="https://cortex.persona.co/t/original/i/3ac77d194ff3d6e476f40088d6bf503198ee17ac2cd488175c03f4dfb3942d78/nina-ms.jpg" data-mid="1063399" border="0" data-scale="60"/&#62;&#60;img width="2354" height="3396" width_o="2354" height_o="3396" src_o="https://cortex.persona.co/t/original/i/5904befd0a6e258d64e1056ad4e4280b83983fe8b3af0406f8afe099b12b9a61/fannie-lou-2.jpg" data-mid="1063423" border="0" data-scale="60"/&#62;&#60;img width="3196" height="3174" width_o="3196" height_o="3174" src_o="https://cortex.persona.co/t/original/i/f8797c94873391c8052c3689c5a1dc339f98a53a295df78850f90251bdc8c1df/phife-ad2016.jpg" data-mid="1063409" border="0" data-scale="60"/&#62;&#60;img width="3300" height="4200" width_o="3300" height_o="4200" src_o="https://cortex.persona.co/t/original/i/2b751fc5454f579000367174eb5689971a3418d119cabd8a6f51fa4609ddeee4/badu-final.jpg" data-mid="1063417" border="0" data-scale="60"/&#62;&#60;img width="4200" height="3300" width_o="4200" height_o="3300" src_o="https://cortex.persona.co/t/original/i/247ccb333a2ea7e9e0dfad4c1275b8b05127feb21f2ad564d378a6b9fb7d2c62/cutyis-mayfield.jpg" data-mid="1063416" border="0" data-scale="60"/&#62;&#60;img width="3300" height="4200" width_o="3300" height_o="4200" src_o="https://cortex.persona.co/t/original/i/376af6c18c1716b9789445d0c32d51462c41e139ad67f576dd3ca4c9d4ee7078/ali-11x14.jpg" data-mid="1063412" border="0" data-scale="60"/&#62;&#60;img width="2400" height="3000" width_o="2400" height_o="3000" src_o="https://cortex.persona.co/t/original/i/d2fcaf66c453340be25bd053251d3df46fb5effdf75f6297c2252f1ec177960a/milesfinal.jpg" data-mid="1063402" border="0" data-scale="60"/&#62;&#60;img width="3300" height="4200" width_o="3300" height_o="4200" src_o="https://cortex.persona.co/t/original/i/7a737e1eebe86be959e722a90521cd7d6253dc20717ac578a06ff170da6f5357/samo-11x14-new.jpg" data-mid="1063420" border="0" data-scale="60"/&#62;&#60;img width="3300" height="4200" width_o="3300" height_o="4200" src_o="https://cortex.persona.co/t/original/i/be6e94be85da59842857aad0fa0fb785b95e7ae107806e3dd0812173f403a69b/black-nina.jpg" data-mid="1063425" border="0" data-scale="60"/&#62;&#60;img width="4200" height="3300" width_o="4200" height_o="3300" src_o="https://cortex.persona.co/t/original/i/aacaa2391dad6db1969bc9ec9a41db177fe1bac8ec69e7f0121267914e8db24d/outkast-11x14.jpg" data-mid="1063421" border="0" data-scale="60"/&#62;&#60;img width="2400" height="3000" width_o="2400" height_o="3000" src_o="https://cortex.persona.co/t/original/i/d2fcaf66c453340be25bd053251d3df46fb5effdf75f6297c2252f1ec177960a/milesfinal.jpg" data-mid="1063402" border="0" data-scale="60"/&#62;&#60;img width="6480" height="4320" width_o="6480" height_o="4320" src_o="https://cortex.persona.co/t/original/i/36ad94452b8003bd5c37adae0b58f2b6456dea3a1725dd6bacb87477d42f7cbe/fugeela.jpg" data-mid="1063404" border="0" data-scale="60"/&#62;&#60;img width="2400" height="3000" width_o="2400" height_o="3000" src_o="https://cortex.persona.co/t/original/i/da739b39edaec72b42afb58943c670ddd2b0e35ca61eaa92cb41198a0b34a389/kanyefinal.jpg" data-mid="1063403" border="0" data-scale="60"/&#62;&#60;img width="3300" height="4200" width_o="3300" height_o="4200" src_o="https://cortex.persona.co/t/original/i/336abe2f30225e5824a38398b64683e1faee3db75c31ce8dbe83c66603fbd799/biggie.jpg" data-mid="1063414" border="0" data-scale="60"/&#62;&#60;img width="3300" height="4200" width_o="3300" height_o="4200" src_o="https://cortex.persona.co/t/original/i/59f1795b3948ec4316d13f4e9a0a99cb638d70a4199aa39594dbb5320f36a42e/dolphy-11x14.jpg" data-mid="1063418" border="0" data-scale="60"/&#62;&#60;img width="1234" height="1424" width_o="1234" height_o="1424" src_o="https://cortex.persona.co/t/original/i/0dc7797f744b86f1a248b102e63b780fb12dca494511502140dc7230c5383b09/warholbcard_6656.jpg" data-mid="1063408" border="0" data-scale="60"/&#62;&#60;img width="3300" height="4200" width_o="3300" height_o="4200" src_o="https://cortex.persona.co/t/original/i/0a22ac0d17519c498f195b4455ee707e31143117f2168149bba28eaeb2c52efd/wayne-new.jpg" data-mid="1063422" border="0" data-scale="60"/&#62;go back
</description>
		
		<excerpt>Select Works - Painted on Canvas &#38;amp; Wood - 2010-2021 go back</excerpt>

		<!--<wfw:commentRss></wfw:commentRss>-->

	</item>
		
		
	<item>
		<title>dear jazz</title>
				
		<link>http://adriennedomnick.com/dear-jazz</link>

		<comments></comments>

		<pubDate>Wed, 13 Jan 2021 22:21:55 +0000</pubDate>

		<dc:creator>adriennedomnick</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">395261</guid>

		<description>Dear Jazz
By Adrienne Domnick
October 2020
Hall Gallery at Millsaps College
&#60;img width="6480" height="4320" width_o="6480" height_o="4320" src_o="https://cortex.persona.co/t/original/i/d42942331be7fabddbdc2be48ffc999ff92b79cfba12dad37403aa29f28ca825/10293071.JPG" data-mid="1063401" border="0" /&#62;go back</description>
		
		<excerpt>Dear Jazz By Adrienne Domnick October 2020 Hall Gallery at Millsaps College go back</excerpt>

		<!--<wfw:commentRss></wfw:commentRss>-->

	</item>
		
		
	<item>
		<title>in the crates</title>
				
		<link>http://adriennedomnick.com/in-the-crates</link>

		<comments></comments>

		<pubDate>Wed, 13 Jan 2021 22:21:49 +0000</pubDate>

		<dc:creator>adriennedomnick</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">395260</guid>

		<description></description>
		
		<excerpt></excerpt>

		<!--<wfw:commentRss></wfw:commentRss>-->

	</item>
		
		
	<item>
		<title>music</title>
				
		<link>http://adriennedomnick.com/music</link>

		<comments></comments>

		<pubDate>Wed, 13 Jan 2021 22:17:13 +0000</pubDate>

		<dc:creator>adriennedomnick</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">395259</guid>

		<description>&#60;img width="640" height="467" width_o="640" height_o="467" src_o="https://cortex.persona.co/t/original/i/395c743640240ef6c2d9cb27ce9cec214ce79211bfe22d3afafa9620e76dbc25/IMG_8784-1.jpg" data-mid="1036873" border="0" /&#62;























2018


Heart Society • Wake The Queens


Artwork 



 
&#60;img width="750" height="364" width_o="750" height_o="364" src_o="https://cortex.persona.co/t/original/i/69fcb54952f2d73c3da97b6830f0b60c791dc232be574fe25bfc744af12eb00f/love-sol.jpg" data-mid="1036874" border="0" /&#62;











2016


Clouds &#38;amp; Crayons • Love Solilioquy


Artwork &#38;amp; Design Layout 




&#60;img width="750" height="328" width_o="750" height_o="328" src_o="https://cortex.persona.co/t/original/i/a448a445dc43472fe97cde46743091ef01ce6d56cbad12caee79b435f42933a3/5th-convo.jpg" data-mid="1036872" border="0" /&#62;













2015


5th Child • My Conversations With God 


Creative Direction of Photography &#38;amp; Design Layout 




go back</description>
		
		<excerpt>2018   Heart Society • Wake The Queens   Artwork                   2016   Clouds &#38;amp; Crayons • Love Solilioquy   Artwork &#38;amp; Design...</excerpt>

		<!--<wfw:commentRss></wfw:commentRss>-->

	</item>
		
		
	<item>
		<title>press</title>
				
		<link>http://adriennedomnick.com/press</link>

		<comments></comments>

		<pubDate>Wed, 13 Jan 2021 22:15:42 +0000</pubDate>

		<dc:creator>adriennedomnick</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">395258</guid>

		<description>PressNow You’re Talking w/ Marshall Ramsey - How We Fly, MPB Online, February 2020
Jackson, Mississippi, Named Winner of&#38;nbsp; Bloomberg Philanthropies’s 2018 Public Art Challenge,ARTNEWS, November 2018A Place For Contemporary Art, Boom Jackson, December 2017Featured Artist Interview, Southern Glossary, October 2017Let's Talk Jackson: Adrienne Domnick, Podastery Studios, August 2017And Gallery Is Fostering a Groundbreaking Contemporary Art Scene in Jackson, MS, VICE, March 2017 Making Space, Portico Magazine, January/February 2017Featured Artist &#124; Golden Era: The Pop Artistry of Adrienne Domnick, Dime Magazine, December 2016Next Stop Mississippi: Art Appreciation,Mississippi Public Broadcasting, January 2016A Lesson In Pop Art, Jackson Free Press, September 2015go back

</description>
		
		<excerpt>PressNow You’re Talking w/ Marshall Ramsey - How We Fly, MPB Online, February 2020 Jackson, Mississippi, Named Winner of&#38;nbsp; Bloomberg Philanthropies’s 2018...</excerpt>

		<!--<wfw:commentRss></wfw:commentRss>-->

	</item>
		
		
	<item>
		<title>cv</title>
				
		<link>http://adriennedomnick.com/cv</link>

		<comments></comments>

		<pubDate>Wed, 13 Jan 2021 22:14:37 +0000</pubDate>

		<dc:creator>adriennedomnick</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">395257</guid>

		<description>Past Exhibitions &#38;amp; Features
 2020*Dear Jazz The Hall Gallery at Millsaps College - Jackson, MS 
*Mama Rose Kitchen - Permanent Installation
Farish Street Park - Jackson, MSHow We Fly Arts Commission of Mississippi - Jackson, MS
 
2019*In The CratesOffbeat - Jackson, MS 

2018City of Ink 11th Anniversary Art ShowPeter Street Station - Atlanta, GA 2017March ForthAND Gallery - Jackson, MS 2016 * Hip Hop Show Vol. 2AND Gallery - Jackson, MSHealthy Start With Art 
University Medical Center - Jackson, MS* Nappy Heads 
Offbeat - Jackson, MS 2015Portico’s 2015 Rising Artists 
Cedars - Jackson, MS
2014* Hip Hop Show Vol. 1133 Millsaps Avenue - Jackson, MS Art &#38;amp; Soul Offbeat, Jackson, MS2013&#38;nbsp; * The Jazz ShowNorth Midtown Arts Center - Jackson, MS *solo exhibitiongo back </description>
		
		<excerpt>Past Exhibitions &#38;amp; Features  2020*Dear Jazz The Hall Gallery at Millsaps College - Jackson, MS  *Mama Rose Kitchen - Permanent Installation Farish Street Park -...</excerpt>

		<!--<wfw:commentRss></wfw:commentRss>-->

	</item>
		
		
	<item>
		<title>glass</title>
				
		<link>http://adriennedomnick.com/glass</link>

		<comments></comments>

		<pubDate>Wed, 13 Jan 2021 22:07:19 +0000</pubDate>

		<dc:creator>adriennedomnick</dc:creator>
		
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">395255</guid>

		<description>&#60;img width="6480" height="3648" width_o="6480" height_o="3648" src_o="https://cortex.persona.co/t/original/i/fd6542d1ab2adbebfeb8ace03133d43af06c4c7848ba65e03cdae77005842ee3/SAM_0913.jpeg" data-mid="1036869" border="0" /&#62;&#60;img width="6480" height="4320" width_o="6480" height_o="4320" src_o="https://cortex.persona.co/t/original/i/b1e5a0c9b8374f1a6cdb4d31b8d40e3ee85083f5d301e7b4f1a0ca7afcadf8e4/donuts-angle.jpg" data-mid="1036871" border="0" /&#62;&#60;img width="6480" height="4320" width_o="6480" height_o="4320" src_o="https://cortex.persona.co/t/original/i/7d465ce221b8959ae85339d109b757800ca2c7b07c5559836ef4d8f9eaffbe94/SAM_1528_4511.jpeg" data-mid="1036870" border="0" /&#62;&#60;img width="6480" height="3648" width_o="6480" height_o="3648" src_o="https://cortex.persona.co/t/original/i/21b5a02cac71e33eea92c102d6f0f9ba124feda9016d2be7ff3f81aef11f0aaf/glass-3-ad.JPG" data-mid="1036861" border="0" /&#62;&#60;img width="6480" height="3648" width_o="6480" height_o="3648" src_o="https://cortex.persona.co/t/original/i/39f79b79ce5e25c21e5264d79913cfbbeae63c5bcc47420649ffc16fc3b60f88/glass-2-ad.JPG" data-mid="1036860" border="0" /&#62;&#60;img width="6480" height="3648" width_o="6480" height_o="3648" src_o="https://cortex.persona.co/t/original/i/1e27541826f4a1a0908636d0c942db567f3198d632175573b44938db68472446/glass-1-ad.JPG" data-mid="1036868" border="0" /&#62;go back </description>
		
		<excerpt>go back</excerpt>

		<!--<wfw:commentRss></wfw:commentRss>-->

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