Kristen Ford + Rachael Sage - Joy = Resistance ...

Sunday August 10, 2025 08:00 PM EDT
Cost: $15.00+
Disclaimer: All prices are current as of the posting date and are subject to change. Please check the venue or ticket sales site for the current pricing.

From the venue:

Event Description


On Pinto, the queer, biracial, songwriter Kristen Ford blasts beyond the point of caution and unveils a wild landscape of visceral emotion.Ford’s world is one of the deepest feelings: whether fuming at queer repression, falling head over heels in love, or learning to practice true self-acceptance. Pinto is a place where she can be share her losses while being mindful enough to acknowledge her wins. In revealing both her scars and her successes, Ford raises a cry that invites the listener to boldly embrace themselves, to take up space, and to loudly state that “enough is enough”.
The lessons that Ford explores on Pinto are those learned the hard way: from helplessly watching the suppression of queer rights in the US, through finding new love after a gut-wrenching divorce, and from the daily microaggressions that come with being sold a patriarchal expectation of ‘womanliness’.
With a series of acclaimed releases under her belt, no one could accuse this veteran songwriter of lacking poetic nuance, but it is hard to ignore the raw messages that are contained within Pinto. Undoubtedly, this is Ford’s most political, most pointed, and most energizing outing yet.


Since founding her own label MPress Records two decades ago, NYC-based Billboard charting alt-pop artist Rachael Sage has steadily released a slew of vibrant, dynamic albums described by Goldmine Magazine as "mesmerizing...thoughtful, pensive and flush with an emotional flourish, all carefully and adeptly executed." She has toured with an eclectic list of artists including Ani DiFranco, Beth Hart, Howard Jones, and Grammy® winners Shawn Colvin and Judy Collins – with whom she also recorded a critically-acclaimed duet of Neil Young's "Helpless".
In addition to being a six-time Independent Music Award-winning musician and producer, Sage is also a John Lennon Contest Grand Prize winner who has performed at the Edinburgh Fringe, SXSW, and toured globally from Japan to Berlin with her band, The Sequins. Sage is also a visual artist and former ballet dancer who performed with the New York City Ballet. She is additionally a philanthropic advocate who has raised money for a wide range of causes, including WHY Hunger, American Refugee Committee, Memorial Sloan-Kettering Hospital and National Network For Youth (NN4Y).
Her 2020 album Character yielded the Billboard-charting single "Blue Sky Days"; her latest project Poetica, an adventurous fusion of poetry with jazz, classical and Americana musical elements in the vein of Leonard Cohen and Laurie Anderson debuted in October 2021. Her full-length album The Other Side including her current single "I Made A Case (feat Howard Jones)" is out now on MPress/Universal/Virgin, and the companion acoustic album Another Side was released May 2024.
"One of music's most inimitable iconoclasts." — BlackBook
"Her keen, ironic sense of humor and quirky sense of the profound is what makes her special as a songwriter" — Billboard








Event Organizer


body.scroll-disabled {
overflow: hidden;
}

#message-overlay {
position: fixed;
display: none;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.8);
z-index: 999;
overflow: auto;
}

#message-modal {
position: relative;
top: 7%;
width: 80%;
max-width: 400px;
margin: auto;
background-color: white;
margin-bottom: 50px;
}

#message-modal .panel-heading {
text-align: left;
}

#message-modal .contact-field {
text-align: left;
}

#message-modal label {
margin: 1em 0 0 0;
padding: 0;
}

#message-modal textarea {
resize: vertical;
min-height: 5.5em;
}

#message-modal .ft-form-error {
border: 1px solid #cd252f;
}

#message-modal .close-contact {
cursor: pointer;
}

#message-overlay .panel-footer {
overflow: hidden;
}

#message-modal #cancel-message {
float: left;
background: none;
border: none;
color: darkgrey;
}

#message-modal #cancel-message:hover, #message-modal #cancel-message:active {
color: black;
}

#message-modal #submit-message {
float: right;
transition: all 0.25s;
width: 144px !important;
}

#message-modal #submit-message.btn-success {
opacity: 1;
}

.error-message {
display: none;
color: #b94a48;
font-size: 1em;
}

#message-form > .error-message {
text-align: center;
}

.contact-field .error-message {
text-align: right;
}





Send a message to Smith's Olde Bar









Your Email Address





Message





CANCEL
SEND MESSAGE





$(document).ready(function() {
pageBody = $('body');
modal = $('#message-overlay');
email = $('#message-email');
body = $('#message-body');
submit = $('#submit-message');
cancel = $('#cancel-message');
formErrorField = $('#message-form > .error-message');
contactToken = '';

// open modal functionality
function showModal() {
pageBody.addClass('scroll-disabled');
modal.slideDown();
}

$('#message-button').click(function(e) {
e.preventDefault();
showModal();
});

// close modal functionality
function hideModal(callback = function() {}) {
pageBody.removeClass('scroll-disabled');
modal.slideUp(function() {
callback();
});
}

$(window).keydown(function(e) {
if (e.keyCode == 27) {
hideModal();
}
});

$('.close-contact').click(function() {
hideModal();
});

pageBody.click(function(e) {
if (modal.is(':visible')) {
if ($(e.target).attr('id') == 'message-overlay') {
hideModal();
}
}
});

// field validation
fieldTouched = {
'message-email': false,
'message-body': false
};

regex = {

'message-email': /
^@\s+@^@\s+.^@\s+$/, 'message-body': /
((?!https?:\/\/).)*$/

}

errors = {
'message-email': {
'blank': 'Please provide a valid contact email address.',
'format': 'Please provide a valid contact email address.'
},
'message-body': {
'blank': 'Please enter a message.',
'format': 'Please remove "http://" or "https://" from any links.'
}
};

function validate(field, value) {
if (inputIsBlank(value)) {
return errorsfield'blank';
} else if (inputIsInvalid(field, value)) {
return errorsfield'format';
}
}

function inputIsBlank(value) {
return value.replace(/\s/g, '').length == 0
}

function inputIsInvalid(field, value) {
return value.split(/\s/).join('').match(regexfield) == null;
}

function markAsInvalid(element, message) {
$(element).addClass('ft-form-error');
$(element).next().text(message);
$(element).next().slideDown();

submit.addClass('disabled');
}

function successfulValidation(element) {
markAsValid(element);

if (email.val().length > 0 && body.val().length > 0) {
if ($('#message-email.ft-form-error, #message-body.ft-form-error').length == 0) {
submit.removeClass('disabled');
}
}
}

function markAsValid(element) {
$(element).removeClass('ft-form-error');
$(element).next().slideUp();
}

$('#message-email, #message-body').keyup(function() {
var field = $(this).attr('id');
var value = $(this).val();

fieldTouchedfield = fieldTouchedfield
value.length > 0;
if (fieldTouchedfield) {
var error = validate(field, value);
if (error != null) {
markAsInvalid(this, error);
} else {
successfulValidation(this);
}
}
});
// form submission
function disableForm() {
$('#submit-message, #cancel-message').addClass('disabled');
modal.find('input, textarea').attr('disabled', true);
}
function enableFields() {
modal.find('input, textarea').removeAttr('disabled');
submit.html('SEND MESSAGE');
cancel.removeClass('disabled');
}
function enableForm() {
submit.removeClass('disabled');
enableFields();
}
function scheduleFormReset() {
setTimeout(function() { resetForm() }, 1250);
}
function resetForm() {
hideModal(function() {
email.val();
body.val();
submit.removeClass('btn-success');
enableForm();
});
}
submit.click(function() {
submit.html('<i class="fa fa-cog fa-spin"></i>');
formErrorField.slideUp();
disableForm();
var emailVal = $('#message-email').val();
var bodyVal = $('#message-body').val();
var yourNameVal = $('#your_name').val();
$.ajax({
url: '/organizations/7359e059-a585-421e-9e40-baf4956ba800',
type: 'POST',
dataType: 'json',
data: {
'email': emailVal,
'body': bodyVal,
'your_name': yourNameVal,
'contact_token': contactToken,
'authenticity_token': 'BIBz7yJkIx4Boo9unPHy97wH8vtpbzuARqZuv1sZoE2l4eGm5WXIxGixIatG5mcZ5sorc0zGDr/6Rd/21M6xIg=='
},
success: function(data) {
if (data'contact_token' != null) {
contactToken = data'contact_token';
}
if (data.success) {
submit.html('<i class="fa fa-check-circle"></i>');
submit.addClass('btn-success');
scheduleFormReset();
} else {
var errors = data'errors';
var emailError = errors'email';
var bodyError = errors'body';
var formError = errors'form';
if (emailError != null) {
markAsInvalid(email, emailError);
}
if (bodyError != null) {
markAsInvalid(body, bodyError);
}
if (emailError null && bodyError null) {
formError = formError
'There was a problem sending your message. Please try again.';

formErrorField.text(formError);
formErrorField.slideDown();

enableForm();
} else {
enableFields();
}
}
},
error: function() {
formErrorField.text('There was a problem sending your message. Please try again.');
formErrorField.slideDown();

enableForm();
}
});
});
});





Contact Organizer






Smith's Olde Bar












Frankly Scarlet's Summer Deadication









Sat, June 21, 2025

8:00 PM












Music Room at Smith's Olde Bar

Atlanta, GA















Fluorescents + Felicity with support from Estim...









Sat, June 21, 2025

8:00 PM












Atlanta Room at Smith's Olde Bar

Atlanta, GA















AFROBEATS & FRIENDS with DJ PRINCE









Sun, June 22, 2025

8:00 PM












Music Room at Smith's Olde Bar

Atlanta, GA

















One Night Only 2: Featuring Translee + Grey / J...









Sun, June 22, 2025

8:00 PM












Atlanta Room at Smith's Olde Bar

Atlanta, GA















Dog (In Human Costume) Album Preview with Viole...









Thu, June 26, 2025

8:00 PM












Atlanta Room at Smith's Olde Bar

Atlanta, GA















The Seth Winters Band ft. Damian Kapcala









Fri, June 27, 2025

8:00 PM












Atlanta Room at Smith's Olde Bar

Atlanta, GA










See More Events from This Organizer

More information

At

Smith's Outdoor Shot
1578 Piedmont Ave. N.E.
Atlanta, GA 30324
(404) 875-1522
sobatl.com
neighborhood: #ansleymall #midtownatl #piedmontheights #morningside