Warped Tour freshman serves as ambassador for US Army | Charlotte Observer
Warped Tour freshman serves as ambassador for US Army | Charlotte Observer
var userName = checkUserSubscribed('MPPUser');
var signInOrAccountLink = 'Sign In';
var subscribeLink = 'Subscribe';
var label = "My Account";
var signOutLink = '';
if (getSubscribedFlag)
if(userName)
userName = JSON.parse(userName);
subscribeLink = '';
signOutLink = 'Sign Out';
if (userName && userName.firstName && userName.lastName)
label = userName.firstName + ' ' + userName.lastName;
else if (userName && userName.firstName)
label = userName.firstName;
signInOrAccountLink = '' + label + '';
var subscriptionLink = 'Subscriptions';
if (1 === 1)
$(".right.paywall-links").prepend(signInOrAccountLink, " ", subscribeLink);
signInOrAccountLink = signInOrAccountLink.replace("main mh-only-lg", "");
var profileLink = signInOrAccountLink.replace(label, "Profile");
$(".account-popup .content").prepend(profileLink, subscriptionLink);
$(".account-popup .footer").prepend(signOutLink);
if (getSubscribedFlag)
$(".account-popup .user-name").prepend(signInOrAccountLink);
var f = userName.firstName.split('').shift();
var l = userName.lastName.split('').shift();
$(".account-links.mobile .initials").html(f+l);
else
var userIcon = '';
$(".account-links.mobile .initials").html(userIcon);
subscribeLink = subscribeLink.replace("impact mh-only-lg", "");
$(".account-popup .content").append(subscribeLink);
Music & Nightlife
jQuery(document).ready(function ()
mi.leadAssets.init();
);
While the military asks many things of its soldiers, Corrin Campbell’s job as a sergeant requires her to rock her heart out on stage at the Warped Tour all summer. That may sound far-fetched, but she and her bandmates in Dash Ten are part of the 21st anniversary of the traveling rock festival.
They’re a lot like any other band, playing heavy rock anthems laced with positive messages and Campbell’s strong vocals – but they all have a rank, and have toured war-torn countries as part of the Army Band.
“The Army has us touring so we can talk about our passion and individuality, and show that that’s still a part of who we are as soldiers,” explains vocalist/bassist Sgt. Corrin Campbell. “I think the Army wants to show that stuff doesn’t get compromised. There are a lot of cool things you can do with those passions you love while you’re still serving.”
She and bandmates Staff Sgts. Steve Ebert and Pete Greenberg (guitar and drums, respectively) all joined the Army to become musicians.
Digital Access for only $0.99
For the most comprehensive local coverage, subscribe today.
#ReadLocal
'use strict';
var mi = mi || ;
mi.calltoActionCtrl = (function ()
var subscriptionInlineCta = document.querySelector('#story-cta-widget');
var $newsletterForm = document.querySelector('#newsletter-signUpWidget');
var isInlineCtaEnabled = true;
var isNewsletterEnabled = false;
if (isNewsletterEnabled === true)
var $email = $newsletterForm.querySelector('#s_email_address');
var $submitBtn = $newsletterForm.querySelector('.more-link-macro a');
// Object that contains key values stored in data-attributes
var config =
newsletterPreferenceListNames: JSON.parse(getDataAttribute($newsletterForm, 'newsletterPreferenceListNames')),
siteName: getDataAttribute($newsletterForm, 'newsletterSiteName'),
newsletterUrl: getDataAttribute($newsletterForm, 'newsletterUrl'),
newsletterSuccess: getDataAttribute($newsletterForm, 'newsletterSuccess'),
;
var newsletterData =
siteName: config.siteName
;
function isEmailValid(email) (".+"))@(([[0-9]1,3.[0-9]1,3.[0-9]1,3.[0-9]1,3])
function getDataAttribute(el, attr)
var dataAttr = 'data-' + attr;
if (el.hasAttribute(dataAttr))
var val = el.getAttribute(dataAttr);
el.removeAttribute(dataAttr);
return val;
function getRandomArbitrary(min, max)
return Math.floor(Math.random() * (max - min + 1)) + min;
function removeNode(node)
if (node)
node.parentNode.removeChild(node);
function insertAfterNode(el, node)
if (node)
node.parentNode.insertBefore(el, node.nextSibling);
function insertHeadings(pos)
var $heading = document.createElement('h3');
$heading.classList.add('heading');
$heading.innerHTML = config.newsletterPreferenceListNames[pos].title;
var $divHeading = document.getElementById('newletter-inline-title');
$divHeading.appendChild($heading);
$newsletterForm.insertBefore($divHeading, $newsletterForm.firstChild);
var $subtitle = document.createElement('p');
$subtitle.classList.add('subtitle');
$subtitle.innerHTML = config.newsletterPreferenceListNames[pos].headline;
insertAfterNode($subtitle, $heading);
function displayRandomNewsletter(num)
var pos = num - 1;
if(subscriptionInlineCta)
removeNode(subscriptionInlineCta);
$newsletterForm.classList.remove('hidden');
newsletterData.preferenceListName = config.newsletterPreferenceListNames[pos].name;
$newsletterForm.querySelector('#newsletterType').value = config.newsletterPreferenceListNames[pos].name;
insertHeadings(pos);
function removeRandomCTA()
if (isNewsletterEnabled === true)
var maxLength = config.newsletterPreferenceListNames.length;
var num = getRandomArbitrary(0, maxLength);
if (subscriptionInlineCta && num === 0)
removeNode($newsletterForm);
notifyWidgetSelected(subscriptionInlineCta);
subscriptionInlineCta.classList.remove('hidden');
else if(!subscriptionInlineCta && num === 0)
displayRandomNewsletter(num + 1);
notifyWidgetSelected($newsletterForm);
else
displayRandomNewsletter(num);
notifyWidgetSelected($newsletterForm);
else if (isInlineCtaEnabled)
notifyWidgetSelected(subscriptionInlineCta);
subscriptionInlineCta.classList.remove('hidden');
function notifyWidgetSelected(widget)
var newEvent = new CustomEvent('cta_widget', detail: widget);
window.dispatchEvent(newEvent);
function enableSubmitBtn()
$submitBtn.classList.remove('disabled');
function disableSubmitBtn()
$submitBtn.classList.add('disabled');
function showErrorMsg(node, msg)
var div = document.createElement('div');
div.classList.add('errorText');
div.innerHTML = msg;
insertAfterNode(div, node);
function validateNewsletter()
var errorMsg = $newsletterForm.querySelector('.errorText');
if (errorMsg)
errorMsg.remove();
if ($email.classList.contains('error'))
$email.classList.remove('error');
if (!isEmailValid($email.value))
showErrorMsg($email, "Please insert a valid email address!");
$email.classList.add('error');
disableSubmitBtn();
else
enableSubmitBtn();
;
function submitNewsletter(e)
e.preventDefault();
validateNewsletter();
if ($submitBtn.classList.contains('disabled'))
return false;
grecaptcha.execute();
newsletterData.emailAddress = $email.value;
$newsletterForm.setAttribute('data-json', JSON.stringify(newsletterData));
;
function eventHandlers()
$email.addEventListener('change', function (e)
validateNewsletter();
);
$newsletterForm.addEventListener('submit', function (e)
submitNewsletter(e);
);
$submitBtn.addEventListener('click', function (e)
submitNewsletter(e);
);
function init(isNewsletterEnabled, isInlineCtaEnabled)
if (isNewsletterEnabled
return
init: init
());
/* function enableSubmitBtn(token)
mi.calltoActionCtrl.sendResponse(token);
*/
jQuery(document).ready(function ()
mi.calltoActionCtrl.init(false, true)
);
“We’ve all done tours overseas,” Campbell says. “Steve and I in Iraq, and Pete to Afghanistan. It’s perfect training for Warped Tour – tons of sweating, you have to hydrate, and work long hours.”
Dash Ten is the only group of military musicians in any branch writing and performing original music.
“I’m sure the Air Force will catch up really quick,” she adds. “We actually beat them to something. We’re trailblazing!”
She continues: “There are military bands in all the branches, but what we do is different. We play music that we’ve written and recorded. That is the most fulfilling element.”
Campbell grew up a classically trained cellist, but her grandfather encouraged her to pick up bass. (“There weren’t cello positions in the Army,” she says.)
In 2003, she met Paramore frontwoman Hayley Williams through their shared vocal coach. A few years later, Paramore made its Warped Tour debut, and Campbell was there.
“It was their first, and they were playing the stage on the side of a pink bread truck,” says Campbell, who met festival founder Kevin Lyman through Williams’ family.
Campbell was discharged and pursuing a solo career when the Army invited her back as part of Army Musical Outreach. She decided to put together a band instead of going it alone. Enter Ebert and Greenberg.
While the military is known for its stringent regulations, that doesn’t interfere with Dash Ten’s creative process.
“The Army doesn’t tell us what to write,” she says. “When we first came into it, we thought they’d tell us what to say. I’m the prime songwriter, and I don’t know that I could do that. They’ve been cool about it. They’re like, ‘We just want you to go out there and show who you are and how that merges with being a soldier.’ ”
Vans Warped Tour
Dash Ten, a trio of military musicians, plays Vans Warped Tour along with New Found Glory, Falling in Reverse, Sum 41, the Interrupters, Mayday Parade, Yellowcard, We the Kings, Less Than Jake, Four Year Strong, Reel Big Fish, the Maine, Every Time I Die, Whitechapel, Emarosa, Pepper, Sleeping with Sirens, Motionless in White, the Story So Far, and others.
When: 11 a.m. Tuesday.
Where: PNC Music Pavilion, 707 Pavilion Blvd.
Tickets: $40.
Details: 800-745-3000; www.livenation.com.
Suggested for you
lazyLoadingModule("zerg-template", "zerg-target", "zerg",500,
undefined, undefined, "53322", undefined , undefined );
Videos
Trending Stories
Digital Access for only $0.99
#ReadLocal
For the most comprehensive local coverage, subscribe today.
SUBSCRIBE NOW
MORE MUSIC & NIGHTLIFE
Music & Nightlife
Music & Nightlife
Music & Nightlife
Movie News & Reviews
Movie News & Reviews
Movie News & Reviews
jQuery(document).ready(function ()
UD.updateDate.getDiffDate("1467317989", "MMMM DD, YYYY hh:mm A", "America/New_York", "en", "-05:00");
);
jQuery(document).ready(function ()
mi.footer.init();
);
var optimeraEnabled = false;
optimeraEnabled = true;
var oDv = ;
var oVa = ;
mi_OptimeraTools.init('11');
//Do not edit
(function()
var optimeraHost = window.location.host;
var optimeraPathName = window.location.pathname;
var optimeraScript = document.createElement('script');
optimeraScript.async = true;
optimeraScript.type = 'text/javascript';
rand = Math.random();
optimeraScript.src="https://s3.amazonaws.com/elasticbeanstalk-us-east-1-397719490216/json/client/"+oDv[0]+"/"+optimeraHost+optimeraPathName+".js?t="+rand;
var node = document.getElementsByTagName('script')[0];
node.parentNode.insertBefore(optimeraScript, node);
var optimeraOpsScript = document.createElement('script');
optimeraOpsScript.async = true;
optimeraOpsScript.type = 'text/javascript';
optimeraOpsScript.src='https://s3.amazonaws.com/elasticbeanstalk-us-east-1-397719490216/external_json/oPS.js';
document.head.appendChild(optimeraOpsScript);
var s = +new Date();
while (+new Date() < s + 200) /*Default 200ms Timeout*/;
)();
mi_Ads.env.create();
mi_Ads.env.init();
//<![CDATA[
var clientDT = new Date().getTime();
document.write('');
//]]>
jQuery(document).ready(function ()
UD.updateDate.getDiffDate("1467317989", "MMMM DD, YYYY hh:mm A", "America/New_York", "en", "-05:00");
);
var WFClientTypeDef =
"extraSmall": "(max-width: 767px)",
"medium": "(min-width: 992px) and (max-width: 1199px)",
"large": "(min-width: 1200px)",
"small": "(min-width: 768px) and (max-width: 991px)"
;
var imageSizes = [80, 160, 200, 320, 400, 480, 560, 640, 720, 768, 960, 1080, 1140];
/* */
mi.pageInfo.setConf("chartbeat.uid", 62447);
var nextbee =
user_cookie: undefined,
user_email: undefined,
nextbee_host: "app.nextbee.com",
nextbee_campaign: "3748",
nextbee_client: "1703",
API_AUTHORIZATION_KEY: 'DECGCFCFHEACGCDBIBGZ158469415068700193Y!n-868654787',
ENCRYPTION_KEY: '0.9240762',
credit_read_story: function()
this.post_to_nextbee("8180");
,
credit_watch_video: function()
this.post_to_nextbee("8147");
,
credit_share_articles: function(id, url)
this.post_to_nextbee(id, url);
,
initialize: function()
this.user_cookie = checkUserSubscribed('MPPUser');
if (this.user_cookie)
var cookie_json = JSON.parse(this.user_cookie);
if (cookie_json)
this.user_email = cookie_json.NextBeeEmail;
this.credit_read_story();
,
required_values_present: function (widget_id)
return this.user_cookie && this.user_email &&
this.nextbee_host && this.nextbee_client && this.nextbee_campaign &&
widget_id;
,
post_to_nextbee: function (widget_id, href)
if (this.required_values_present(widget_id))
var nextbee_url = ['https://' + this.nextbee_host, 'nextbeeapis',
this.nextbee_client, this.nextbee_campaign, 'Event'].join('/') +
'?email=' + encodeURIComponent(this.user_email) +
'&widget_config_id=' + widget_id;
var timestamp_key = Math.floor(Date.now()).toString();
var api_call_signature = md5(this.API_AUTHORIZATION_KEY +
this.ENCRYPTION_KEY + timestamp_key);
console.log("NextBee URL: " + nextbee_url +
"nAuth. Key: " + this.API_AUTHORIZATION_KEY +
"nEnc. Key: " + this.ENCRYPTION_KEY +
"nTimestamp: " + timestamp_key +
"nSignature: " + api_call_signature);
$.ajax( url: nextbee_url, type: 'post', headers:
'ts-key': timestamp_key,
'api-call-signature': api_call_signature,
'cache-control': 'no-cache',
'content-type': 'application/json',
,
complete: function(data)
if(href)
window.location.href = href;
console.log("NextBee API response: " + data.responseText);
);
;
$(function()
nextbee.initialize();
);
_cc7443.bcp();
Comments
jQuery(document).ready(function ()
mi.commentingFaceboook.init();
);