Ole Fateful, Cody Marlowe, J.R. Rund
From the venue:
Event Description
Ole Fateful
North Georgia native Evan Fricks pulled roots and moved to New York City in 2009. A lifelong musician, Evan dug his heels into the NYC music scene, playing with notable acts Adult Dude, Iola, and StrangePride.
In 2013, Evan released his first EP Places Where You’ve Been under the moniker Ole Fateful and released the full-length Spirits in 2018. His sound, rooted in southern soil, conjures an atmosphere that is both timeless and urgent. A southern crooner at heart, Evan possesses an authenticity to his songwriting that is both honest and raw- but he’s also happy to break your heart with a tall tale or two.
After cutting his teeth in New York, Evan crash-landed back to Georgia- spending his time raising two daughters and raising new songs. Joined by Ross Harrell and Nicholas Mendenhall (and sometimes a few extra friends) Ole Fateful is currently playing shows and recording new tunes in the Metro Atlanta and surrounding areas.
https://olefateful.bandcamp.com/album/spirits
https://www.instagram.com/ole_fateful/?hl=en
https://www.youtube.com/watch?v=ZaekWMSV4bA
Cody Marlowe
American born singer-songwriter and roots-rock artist Cody Marlowe found his inspiration at an early age in the soulful sounds of B.B. King, Merle Haggard, and The Allman Brothers Band. In the North Georgia town of Clermont, Cody was born into a musical family. At a young age, Marlowe was taught piano by his great-aunt and his mother, guitar from his grandpa and uncle, and was influenced vocally by his grandma, aunt, mother, and sister. Katie (sister) sings live with Cody on stage and on many recordings. Cody has played in Georgia and the American Southeast for over twenty years, performing in popular venues such as Eddie’s Attic, Smiths Olde Bar, Crimson Moon, and many others. Marlowe’s Americana sound explores the polarities of good and evil in an intriguing blend of lyrics featuring lost loves and hopeful musings.
J.R. Rund
The Georgia-bred songwriter brings a unique perspective to a genre that has often been reduced to the mention of whiskey and the spiral of unrequited love. J.R. is decidedly more poet and Prine than crooner and Cash. His humble songs are chocked full of conversational lyrics—often humorous, other times gut-wrenching but always delivered honestly. Loaded for bear with his band and new LP, J.R.’s knocking on Americana’s Palace door. But he doesn’t need to be the new King in the castle, he’s happy to be the Jester with a heart of gold.
In 2022 J.R. popped the cork on his most ambitious musical project to date. He whittled away at a group of songs, painstakingly piecing together the puzzle that would become his first full-length release, From Where I’m Sittin’. J.R. recalls the process of making the record with Caleb Neff at Juniper Recordings as “organic and raw”. With a mix of classic-leaning country, folk, and rock and roll, this session would produce 10 sonically diverse small plates, thoughtfully prepared and perfectly seasoned with his trademark ‘I don’t take myself too seriously’ aesthetic. Sometimes sad and sometimes sweet but always with tongue planted firmly in cheek, From Where I’m Sittin’ is an infectious new addition to the burgeoning country-roots scene.
https://www.jrrund.com/
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': /((?!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();
| 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': 'EdPxcUCeEO1M27Op7QjaPcR8BimyKqrVZSGmf1IWsO6i5CscU7/tEEY2fpqpRYyCUvGmJ+WhbjJ1h7Pyld5CFA==' |
| }, |
| 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 |
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
Dalton Dover, Bryce Leatherwood, Will Moseley &...
Sat, March 21, 2026
6:00 PM
Music Room at Smith's Olde Bar
Atlanta, GA
Jake Sayer & Friends with Dirty 930
Sat, March 21, 2026
8:00 PM
Atlanta Room at Smith's Olde Bar
Atlanta, GA
The Elements - Hypotheticals Album Release Show...
Thu, March 26, 2026
8:00 PM
Atlanta Room at Smith's Olde Bar
Atlanta, GA
Annual Battle for the Brain & Daughters Agains...
Fri, March 27, 2026
8:00 PM
Music Room at Smith's Olde Bar
Atlanta, GA
Olivia Wolf w/ Wyatt Edmondson + Conrad Moore
Fri, March 27, 2026
8:00 PM
Atlanta Room at Smith's Olde Bar
Atlanta, GA
Kody West
Sat, March 28, 2026
8:00 PM
Music Room at Smith's Olde Bar
Atlanta, GA
See More Events from This Organizer
Ole Fateful, Cody Marlowe, J.R. Rund | 05/29/2026 8:00 PM