THE PRACTICE Accelerator

Get “Unstuck”, Save Time, and Turbo-Charge Your Results in the Practice Room in Just 8 Weeks





ENROLLMENT HAS NOW CLOSED
But don't worry... enter your email below and we'll let you know when we next open for enrollment

SUBMIT
window.cfields = []; window._show_thank_you = function(id, message, trackcmp_url) { var form = document.getElementById('_form_' + id + '_'), thank_you = form.querySelector('._form-thank-you'); form.querySelector('._form-content').style.display = 'none'; thank_you.innerHTML = message; thank_you.style.display = 'block'; if (typeof(trackcmp_url) != 'undefined' && trackcmp_url) { // Site tracking URL to use after inline form submission. _load_script(trackcmp_url); } if (typeof window._form_callback !== 'undefined') window._form_callback(id); }; window._show_error = function(id, message, html) { var form = document.getElementById('_form_' + id + '_'), err = document.createElement('div'), button = form.querySelector('button'), old_error = form.querySelector('._form_error'); if (old_error) old_error.parentNode.removeChild(old_error); err.innerHTML = message; err.className = '_error-inner _form_error _no_arrow'; var wrapper = document.createElement('div'); wrapper.className = '_form-inner'; wrapper.appendChild(err); button.parentNode.insertBefore(wrapper, button); document.querySelector('[id^="_form"][id$="_submit"]').disabled = false; if (html) { var div = document.createElement('div'); div.className = '_error-html'; div.innerHTML = html; err.appendChild(div); } }; window._load_script = function(url, callback) { var head = document.querySelector('head'), script = document.createElement('script'), r = false; script.type = 'text/javascript'; script.charset = 'utf-8'; script.src = url; if (callback) { script.onload = script.onreadystatechange = function() { if (!r && (!this.readyState || this.readyState == 'complete')) { r = true; callback(); } }; } head.appendChild(script); }; (function() { if (window.location.search.search("excludeform") !== -1) return false; var getCookie = function(name) { var match = document.cookie.match(new RegExp('(^|; )' + name + '=([^;]+)')); return match ? match[2] : null; } var setCookie = function(name, value) { var now = new Date(); var time = now.getTime(); var expireTime = time + 1000 * 60 * 60 * 24 * 365; now.setTime(expireTime); document.cookie = name + '=' + value + '; expires=' + now + ';path=/'; } var addEvent = function(element, event, func) { if (element.addEventListener) { element.addEventListener(event, func); } else { var oldFunc = element['on' + event]; element['on' + event] = function() { oldFunc.apply(this, arguments); func.apply(this, arguments); }; } } var _removed = false; var form_to_submit = document.getElementById('_form_1517_'); var allInputs = form_to_submit.querySelectorAll('input, select, textarea'), tooltips = [], submitted = false; var getUrlParam = function(name) { var regexStr = '[\?&]' + name + '=([^&#]*)'; var results = new RegExp(regexStr, 'i').exec(window.location.href); return results != undefined ? decodeURIComponent(results[1]) : false; }; for (var i = 0; i < allInputs.length; i++) { var regexStr = "field\\[(\\d+)\\]"; var results = new RegExp(regexStr).exec(allInputs[i].name); if (results != undefined) { allInputs[i].dataset.name = window.cfields[results[1]]; } else { allInputs[i].dataset.name = allInputs[i].name; } var fieldVal = getUrlParam(allInputs[i].dataset.name); if (fieldVal) { if (allInputs[i].type == "radio" || allInputs[i].type == "checkbox") { if (allInputs[i].value == fieldVal) { allInputs[i].checked = true; } } else { allInputs[i].value = fieldVal; } } } var remove_tooltips = function() { for (var i = 0; i < tooltips.length; i++) { tooltips[i].tip.parentNode.removeChild(tooltips[i].tip); } tooltips = []; }; var remove_tooltip = function(elem) { for (var i = 0; i < tooltips.length; i++) { if (tooltips[i].elem === elem) { tooltips[i].tip.parentNode.removeChild(tooltips[i].tip); tooltips.splice(i, 1); return; } } }; var create_tooltip = function(elem, text) { var tooltip = document.createElement('div'), arrow = document.createElement('div'), inner = document.createElement('div'), new_tooltip = {}; if (elem.type != 'radio' && elem.type != 'checkbox') { tooltip.className = '_error'; arrow.className = '_error-arrow'; inner.className = '_error-inner'; inner.innerHTML = text; tooltip.appendChild(arrow); tooltip.appendChild(inner); elem.parentNode.appendChild(tooltip); } else { tooltip.className = '_error-inner _no_arrow'; tooltip.innerHTML = text; elem.parentNode.insertBefore(tooltip, elem); new_tooltip.no_arrow = true; } new_tooltip.tip = tooltip; new_tooltip.elem = elem; tooltips.push(new_tooltip); return new_tooltip; }; var resize_tooltip = function(tooltip) { var rect = tooltip.elem.getBoundingClientRect(); var doc = document.documentElement, scrollPosition = rect.top - ((window.pageYOffset || doc.scrollTop) - (doc.clientTop || 0)); if (scrollPosition < 40) { tooltip.tip.className = tooltip.tip.className.replace(/ ?(_above|_below) ?/g, '') + ' _below'; } else { tooltip.tip.className = tooltip.tip.className.replace(/ ?(_above|_below) ?/g, '') + ' _above'; } }; var resize_tooltips = function() { if (_removed) return; for (var i = 0; i < tooltips.length; i++) { if (!tooltips[i].no_arrow) resize_tooltip(tooltips[i]); } }; var validate_field = function(elem, remove) { var tooltip = null, value = elem.value, no_error = true; remove ? remove_tooltip(elem) : false; if (elem.type != 'checkbox') elem.className = elem.className.replace(/ ?_has_error ?/g, ''); if (elem.getAttribute('required') !== null) { if (elem.type == 'radio' || (elem.type == 'checkbox' && /any/.test(elem.className))) { var elems = form_to_submit.elements[elem.name]; if (!(elems instanceof NodeList || elems instanceof HTMLCollection) || elems.length <= 1) { no_error = elem.checked; } else { no_error = false; for (var i = 0; i < elems.length; i++) { if (elems[i].checked) no_error = true; } } if (!no_error) { tooltip = create_tooltip(elem, "Please select an option."); } } else if (elem.type =='checkbox') { var elems = form_to_submit.elements[elem.name], found = false, err = []; no_error = true; for (var i = 0; i < elems.length; i++) { if (elems[i].getAttribute('required') === null) continue; if (!found && elems[i] !== elem) return true; found = true; elems[i].className = elems[i].className.replace(/ ?_has_error ?/g, ''); if (!elems[i].checked) { no_error = false; elems[i].className = elems[i].className + ' _has_error'; err.push("Checking %s is required".replace("%s", elems[i].value)); } } if (!no_error) { tooltip = create_tooltip(elem, err.join(' ')); } } else if (elem.tagName == 'SELECT') { var selected = true; if (elem.multiple) { selected = false; for (var i = 0; i < elem.options.length; i++) { if (elem.options[i].selected) { selected = true; break; } } } else { for (var i = 0; i < elem.options.length; i++) { if (elem.options[i].selected && !elem.options[i].value) { selected = false; } } } if (!selected) { elem.className = elem.className + ' _has_error'; no_error = false; tooltip = create_tooltip(elem, "Please select an option."); } } else if (value === undefined || value === null || value === '') { elem.className = elem.className + ' _has_error'; no_error = false; tooltip = create_tooltip(elem, "This field is required."); } } if (no_error && elem.name == 'email') { if (!value.match(/^[\+_a-z0-9-'&=]+(\.[\+_a-z0-9-']+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,})$/i)) { elem.className = elem.className + ' _has_error'; no_error = false; tooltip = create_tooltip(elem, "Enter a valid email address."); } } if (no_error && /date_field/.test(elem.className)) { if (!value.match(/^\d\d\d\d-\d\d-\d\d$/)) { elem.className = elem.className + ' _has_error'; no_error = false; tooltip = create_tooltip(elem, "Enter a valid date."); } } tooltip ? resize_tooltip(tooltip) : false; return no_error; }; var needs_validate = function(el) { return el.name == 'email' || el.getAttribute('required') !== null; }; var validate_form = function(e) { var err = form_to_submit.querySelector('._form_error'), no_error = true; if (!submitted) { submitted = true; for (var i = 0, len = allInputs.length; i < len; i++) { var input = allInputs[i]; if (needs_validate(input)) { if (input.type == 'text') { addEvent(input, 'blur', function() { this.value = this.value.trim(); validate_field(this, true); }); addEvent(input, 'input', function() { validate_field(this, true); }); } else if (input.type == 'radio' || input.type == 'checkbox') { (function(el) { var radios = form_to_submit.elements[el.name]; for (var i = 0; i < radios.length; i++) { addEvent(radios[i], 'click', function() { validate_field(el, true); }); } })(input); } else if (input.tagName == 'SELECT') { addEvent(input, 'change', function() { validate_field(this, true); }); } else if (input.type == 'textarea'){ addEvent(input, 'input', function() { validate_field(this, true); }); } } } } remove_tooltips(); for (var i = 0, len = allInputs.length; i < len; i++) { var elem = allInputs[i]; if (needs_validate(elem)) { if (elem.tagName.toLowerCase() !== "select") { elem.value = elem.value.trim(); } validate_field(elem) ? true : no_error = false; } } if (!no_error && e) { e.preventDefault(); } resize_tooltips(); return no_error; }; addEvent(window, 'resize', resize_tooltips); addEvent(window, 'scroll', resize_tooltips); window._old_serialize = null; if (typeof serialize !== 'undefined') window._old_serialize = window.serialize; _load_script("//d3rxaij56vjege.cloudfront.net/form-serialize/0.3/serialize.min.js", function() { window._form_serialize = window.serialize; if (window._old_serialize) window.serialize = window._old_serialize; }); var form_submit = function(e) { e.preventDefault(); if (validate_form()) { // use this trick to get the submit button & disable it using plain javascript document.querySelector('#_form_1517_submit').disabled = true; var serialized = _form_serialize(document.getElementById('_form_1517_')); var err = form_to_submit.querySelector('._form_error'); err ? err.parentNode.removeChild(err) : false; _load_script('https://scottsbasslessons.activehosted.com/proc.php?' + serialized + '&jsonp=true'); } return false; }; addEvent(form_to_submit, 'submit', form_submit); })();


 

WHAT IF YOU COULD STOP WORRYING ABOUT WHAT TO PRACTICE?

Ever get “Practice Anxiety?”

You’ve got your normal “routine”, but you constantly feel like maybe there’s something else you should be practicing instead.

You feel “in a rut”...

But you worry that if you change it up, maybe you’ll realize that the old routine was serving you better.

Besides, aren’t you supposed to focus on one thing for a long time to get better? How are you supposed to do that when there’s so much to learn?

Oh, and you never have enough time.

And it’s not like the existing bass teaching content is making it any better:

THERE ARE BASS INSTRUCTIONALS ON EVERYTHING YOU CAN THINK OF, BUT HARDLY ANYTHING ABOUT HOW TO PRACTICE BETTER


In fact, the sheer abundance of things to practice just makes the anxiety worse.

I used to feel the same way:

When I was younger, I’d decide “this is the week I’m working on walking basslines!”

Then I’d get bored, or frustrated, then something else would come along: maybe slap-bass.

A week later, I’d decide I was sick of the whole enterprise, and maybe I just needed a new P-Bass.

I’d hear stories about my heroes practicing 4, 5, even 6 hours-a-day, and think “maybe I have to do that.”

But all I’d end up practicing were the same warmups…

...the same scales and arpeggios…

...and the same exercises out of books.

It was hard to tell if anything was working, and I was constantly frustrated.

Gradually, I discovered a few key principles that helped alleviate the stress.

After years of refining, I could finally look back on the way I used to practice and see where I’d gone wrong:

  • I’d assumed I needed to practice everything equally. In reality, just a small subset of things ended up being the things that really moved me forward.
  • I hadn’t given any thought to how long to practice something before moving on. Gradually, I learned a system for knowing.
  • I’d approached everything at random, rather than setting specific goals.

Now, for the first time ever, I want to offer that system to you...


INTRODUCING: THE PRACTICE ACCELERATOR

Get “Unstuck”, Save Time, and Turbo-charge your results in the practice room in just 8 weeks.


WHAT IF YOU HAD A SYSTEM TO TELL YOU WHAT TO FOCUS ON?

When you become a student in The Practice Accelerator you’ll be able to finally stop worrying about what to practice next. Each and every week you’ll get one brand-new module containing your assignment for that week, and I’m even going to tell you exactly how much time to spend on each specific exercise.

But it’s not just exercises. I’ll be giving you the system that will allow you to practice better forever.


MY BIG PROMISE.

At the end of 8 weeks…

  • You won’t feel confined to just a few things you’re practicing over-and-over: you’ll have a system to determine where to go next.
  • You won’t worry if you “don’t have enough time”, because you’ll know that the things you are practicing are the best things to move you forward, even if you only have 30-minutes-a-day.
  • And you won’t feel unfocussed, because what you’re working on will be interesting, challenging, and relevant.

Best yet, you’ll see the progress you’re making.

LEARNING AT YOUR OWN PACE

If you fall behind because of other commitments, I get it… I have 2 kids! That’s why when you sign up to The Practice Accelerator, you’re going to get lifetime access to the entire program!

DIRECT SUPPORT

Below each video lesson there’ll be a questions section, so the SBL team and I will support you every step of the way by giving you personalised support for that specific lesson. If you hit a roadblock - we’ll be there for you!

 

What’s Included In The Practice Accelerator?

8 In-depth Step by Step Modules

Module 1: Retraining Your Brain and Shifting Your Mindset
Module 2: Fretboard Knowledge, Visualization & Application
Module 3: The 80/20 Technique Framework
Module 4: Ultimate Groove and Time Essentials
Module 5: Learning the Language of Bass Through Transcription, Emulation and Application
Module 6: Essential Genres & Repertoire
Module 7: Diatonic Harmony and Harmonic Analysis
Module 8: Creating Your Perfect Practice Plan (and sticking to it)

  • Within each module there are anywhere from 4 - 6 lesson.
  • Each module contains anything from 1 - 2hrs of HD video.
  • Within each module you get detailed downloadable PDFs and backing tracks where applicable.
  • You also get recommended listening, transcription and harmonic analysis studies where applicable.


The 8 Modules walk you through exactly what to focus on so that you're guaranteed to get massive results each time you sit down to practice and never again wonder "what to do next" or "how do I get out of this rut I'm in". Ever.

The step-by-step modules and lessons make it easy to follow and implement, even if you've only got 30 mins of practice time per day.

The downloadable worksheets are extremely in-depth, giving you specific exercise examples, recommended chart examples, recommended listening examples, and specific fill in worksheets where applicable.

Conveniently delivered within an 8 week program so you stay on track and get the results you want.

FREE BONUS WHEN YOU SIGN UP:
THE ULTIMATE PRACTICE PROGRESSION PACKAGE ($97 VALUE)

Professionally Produced Play-Alongs:

10x professionally produced play-alongs that you’re going to use when practicing the topics and exercises covered within the 8 week Practice Accelerator Program.

Each play-along track has been recorded by the best of the best musicians so you’re going to finally get the chance to play bass within a world-class rhythm section. This experience alone will be amazing for your bass playing.


Harmonic Analysis Video Lessons:

With each of the 10 play-along tracks you also get a harmonic analysis video tutorial where you’ll hear us talking through the piece of music, discussing how and why the chords work, what scales and substitutions can be used and way, way more! It’s going to be like going to a college professor and having them personally explain a piece of music you’re trying to learn (all of this ties in directly with what you’ll be learning in Module 7 of the Practice Accelerator Program).

Each piece has been specifically chosen because of its harmonic structure and we’ve grouped them in to, Beginner, Intermediate, Advanced, and Ultimate. I’m removing ALL of the guess work and giving you everything you’re going to need.


Individual Worksheets:


Each of the pieces comes with a detailed PDF worksheet so you can follow along with the analysis lessons and even print them out so you can use them away from your computer or tablet.

 







So… What’s the Investment?

With over one million bass players following ScottsBassLessons now, I don’t get the chance to teach 1:1 students anymore – things in my life would get crazy ;)


The gag is, I still want to give you the chance to study with me every week just like you would with a regular bass teacher. So if that sounds like something you’d want to do, The Practice Accelerator is for you!


THE COST OF THIS PROGRAM IS $147 FOR A SYSTEM YOU CAN USE TO PRACTICE BETTER FOR THE REST OF YOUR LIFE

MONEY BACK GUARANTEE: You also have a full 30 day money-back guarantee to make sure you’re completely satisfied with your Bass Technique Accelerator Course..

YOUR INSTRUCTOR


SCOTT DEVINE
SCOTT DEVINE

Scott played his first professional gig when he was 19 and spent the following 20 years honing his craft and eventually finding a passion for teaching that led him to create the ultimate online bass school, ScottsBassLessons.com.

He has taught, lectured and spoken at music schools around the world, and currently has an online community of over 20,000 active members.


Frequently Asked Questions


When does the course start and finish?
This program will be delivered in 8 weekly modules provided every Monday starting January 21, 2019.
What happens if I fall behind?
Don't worry if you fall behind, as a student of this program you have full lifetime access and can learn at your own pace.
What if I am unhappy with the course?
We offer a 30-day money back guarantee to make sure our students are happy with the lessons and practice exercises, and if not we’re happy to refund you.
How long is each lesson?
Lessons average around 30 minutes each, 4 specific exercises provided for each. It is recommended that you practice each exercise for 5 minutes a day, 4-5 days a week.
How long do I have to enroll?
This course has an open-and-closed enrollment starting Monday, January 14th and ending Sunday, January 20th.
Is this program for beginners?
If you're a total beginner, this program is not for you. You should be able to play the instrument already and have a basic understanding of things like arpeggios and scales.
How much time do I need to commit?
To get the absolute maximum from this program we recommend 30 minutes per day practice time (4-5 days per week). If you have less than that, you will still get great results, but things will take a little longer.
Who's NOT right for this program?
If you're the kind of bass player who's not willing to practice their craft and expects to get better by simply watching more and more videos hoping that it'll raise their game, this program is not for you.
Does this program work for all styles of music?
Absolutely! This program is a complete methodology that will work for any style of music.
If I'm currently a student of Scott's 26 Week Accelerator Program, would this program overwhelm me if I decided to enroll in both at once?
Absolutely not. It works in perfect harmony with the technique accelerator and will show you how to construct the ideal practice routine to use along side any of Scott's Accelerator programs. This means you'll be getting the absolute maximum out of the practice time you have and not chasing shiny objects that will ultimately hinder your progress. The Practice Accelerator is also a complete method of study, and although the program is 8 weeks long, the lessons taught within it include exercises you will use for life - not just the 8 week period. On top of that, as a student you also get lifetime access to the program, so you can study in your own time, and at your own pace.