HidNTrackz / Flow State Band / Lorii Woods / 7E...
From the venue:
Event Description
With musical roots stretching from Outkast, Jay-z, Prince, to Earth, Wind, & Fire, HidNTrackz channels a unique passion for lyrical and sonic detail into his craft. His name reflects his core philosophy: like the best hidden track on an album, his music delivers an unexpected and powerful experience that outshines the rest.
Fueled by a relentless work ethic, the Birmingham, AL native relocated to Atlanta to carve his own path. Now,HidNTrackz is bringing his signature sound to the stage with a full band for an unforgettable night of live hip-hop soul.
Experience the energy firsthand at the prestigious Smith's Olde Bar on Wednesday, October 29th at 8 p.m. Get your tickets now for a premier live music event.
-
Singer, rapper, songwriter, and producer Lorii Woods, was a force unrecognized on account of humble beginnings out of Jamaica but a little further down the road his journey would begin to take shape. Between the influences of his time spent in the Bronx of NY & Bloomfield, CT later to come, Lorii had found himself on the scene amongst the community elites. Drawing from his diverse roots, he’s emerged out of Hartford and built a reputation for versatility, writing and creating across genres while steadily working alongside various established names and contributing to projects with brands like Cartoon Network’s Adult Swim, VH1, MTV, BET and many more. From sessions in studios in Miami’s Circle House, to Tree House in Atlanta, Hollywood, and even RAK in London, Lorii continues to grow his craft, blending influences from every stop along the way into a sound that’s authentically his own and ever-evolving.
-
7EEN (pronounced Seventeen) is a Soul and R&B singer whose sound is as rich and rooted as her upbringing. Born in New Orleans and raised on the Eastside of Atlanta in Stone Mountain, 7EEN blends the soulful, rhythmic heartbeat of NOLA with the raw, melodic edge of Atlanta’s vibrant music scene.
Growing up, she was surrounded by the deep musical traditions of New Orleans—jazz, gospel, and second-line culture—while also absorbing the energy of Atlanta’s R&B, hip-hop, and trap scenes. Influenced by artists from the ’60s to the early 2000s, 7EEN crafts music that feels timeless yet current, paying homage to her roots while forging her own sound.
With a voice that carries both grit and grace, 7EEN is carving out a space that bridges the old school with the new wave.
-
A.O.S. is synonymous with the word emcee. From the intricate wordplay, rhythmically smooth delivery & relevant concepts to his unexpected live performance, he embodies the elements possessed by the elite. He's worked with the likes of artists such as J-Live, 4ize, Scienz of Life & Dynas, is a founder of the mighty BINKIS RECS crew & boasts over 30 years of mic & stage experience. If great rap music, that speaks to the human condition, with beats that bang is your thing, get to know A.O.S.
-
Monique Curry is a soulful vocalist, music entrepreneur, and recording artist whose voice blends gospel roots with R&B, jazz, and neo-soul. Raised in her early years by her grandmother and inspired by her father’s musical legacy, Monique channels joy, grief, and healing into unforgettable performances. Her music is both ministry and medicine—delivering poetic lyrics, spiritual undertones, and raw emotional resonance. Whether leading a powerhouse band, curating entertainment for upscale events, or crafting originals like Line After Line, Monique’s voice transforms spaces into sanctuaries. With influences ranging from Jill Scott and India.Arie to Ella Fitzgerald and Michael Jackson, her artistry bridges timeless tradition with modern soul. Through truth, tone, and timeless artistry, Monique makes every memory beautiful.
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': 'Tot33Hefwa+bg3wNBGametNv2FtXE4BdhxktUyfh1JainikTmsFofCMA2NBsq5zeq4CcxlPDAz/ejNC1rOvy9w==' |
}, |
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
ROCK DOWN SOUTH: Feat. Craig Campbell, Bryce Le...
Sat, October 11, 2025
6:00 PM
Music Room at Smith's Olde Bar
Atlanta, GA
Willow the Cat with support from Idris French
Sat, October 11, 2025
7:00 PM
Atlanta Room at Smith's Olde Bar
Atlanta, GA
SOB After Dark Presents: Late Night DJ
Sat, October 11, 2025
11:30 PM
DJ EVENTS Music Room
Atlanta, GA
Atlanta Graduates Concert 2025
Sun, October 12, 2025
7:00 PM
Music Room at Smith's Olde Bar
Atlanta, GA
Kyle Kimbrell with support from Hunter Blalock ...
Sun, October 12, 2025
8:00 PM
Atlanta Room at Smith's Olde Bar
Atlanta, GA
JT Loux + Arsun
Thu, October 16, 2025
7:00 PM
Atlanta Room at Smith's Olde Bar
Atlanta, GA
See More Events from This Organizer
HidNTrackz / Flow State Band / Lorii Woods / ... | 10/29/2025 8:00 PM