Kala Ambassador - annie the clumsy


annie the clumsy is a singer and songwriter from Japan. Inspired by New Zealand-based comedy duo Flight of the Conchords, she has been making songs with her lovely ukulele, very clumsily, since 2011. She produces her own Youtube show called the 
annie the clumsy show where she does random stuff very randomly. 

In addition to her web show, annie the clumsy also composes, writes and sings songs for tv & web commercials in Japan. She has toured as chorus support with indie artist Oh Shu and collaborated with EVIS BEATS and WHALE TALX. annie the clumsy frequently uses her Makala Baritone and All Solid Cedar Pau Ferro Tenor ukuleles to write, record and perform.

Her dream is to make a song with Jemaine and Bret from Flight of the Conchords!

Ukulele Philosophy
When you are sad, play ukulele. When you are angry, play ukulele. When you are happy play ukulele!
Tip for Beginners
If you are clumsy like me, it might take a while to learn chords and strumming patterns but don't worry about it, it's totally okay. Just keep practicing and be nice to your ukulele, love your ukulele and ukulele will love you back.

Ukulele of Choice

All Solid Cedar Top with Solid Pau Ferro Tenor Ukulele

Ambassador on the Web
Website: https://annietheclumsy.com/
Youtube: annie the clumsy
// Preorder Property Handler (function() { function initPreorderProperty() { // Check if this is a preorder product if (!window.isPreorderProduct) { return; } console.log('✅ Preorder product detected'); // Add property to form submissions function addPreorderToForm() { const addToCartButtons = document.querySelectorAll( '[name="add"], ' + 'button[type="submit"][name="add"], ' + '.product-form__submit, ' + '[data-add-to-cart], ' + 'button.add-to-cart, ' + 'button[name="add"]' ); addToCartButtons.forEach(function(button) { button.addEventListener('click', function(e) { const form = button.closest('form'); if (form && form.action && form.action.includes('/cart/add')) { let preorderInput = form.querySelector('input[name="properties[_preorder]"]'); if (!preorderInput) { preorderInput = document.createElement('input'); preorderInput.type = 'hidden'; preorderInput.name = 'properties[_preorder]'; preorderInput.value = 'true'; form.appendChild(preorderInput); console.log('✅ Added _preorder hidden input'); } } }); }); } // Intercept AJAX cart adds function interceptCartAjax() { const originalFetch = window.fetch; window.fetch = function(...args) { const [url, config] = args; if (url && (url.includes('/cart/add.js') || url.includes('/cart/add'))) { if (config && config.body) { try { // Handle JSON body if (typeof config.body === 'string') { const data = JSON.parse(config.body); if (!data.properties) { data.properties = {}; } if (!data.properties._preorder) { data.properties._preorder = 'true'; console.log('✅ Added _preorder to AJAX request'); } config.body = JSON.stringify(data); } // Handle FormData else if (config.body instanceof FormData) { if (!config.body.has('properties[_preorder]')) { config.body.append('properties[_preorder]', 'true'); console.log('✅ Added _preorder to FormData'); } } } catch (e) { console.error('Error modifying cart request:', e); } } } return originalFetch.apply(this, args); }; } // Initialize when DOM is ready if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', function() { addPreorderToForm(); interceptCartAjax(); }); } else { addPreorderToForm(); interceptCartAjax(); } } // Initialize initPreorderProperty(); })();