TAAFKAA
This Is the TAAFKAA project.
The TAAFKAA project is an over-arching alias for an artist to share music from the future. Clanker Girls, Robot Hell, and universal level threats are all too common in this world. Who knows what could happen next?
The TAAFKAA project has released one single, with hints at others coming out soon. The vaporwave-esque album cover, with the 80s-weeknd style instrumental. It elevates you...
What is the next release? Find out here -->
Interested in making the team? Click here
©Acledent Business and TAAFKAA All Rights Reserved
TAAFKAA SOCIAL
Here is the general social medias TAAFKAA is using, as well as their music pages
©Acledent Business and TAAFKAA All Rights Reserved
Thank you for subscribing to the TAAFKAA project. Here is the latest sneak peek into the next album, and what will be the next single:
Watch very closely... you never know Taafkas next step...
Remember... Everything is hidden... And the world is blind...
©Acledent Business and TAAFKAA All Rights Reserved
TAAFKAATHE WORLD HAS FALLEN AGAIN.AND IT ALWAYS WILL. THE ROMAN EMPIRE.THE USSR.THESE ARE COMMON EXAMPLES. EVERY EMPIRE WILL RISE. EVERY EMPIRE WILL CRUMBLE.AND IT IS ALL THE SAME. HUMANITY WILL NEVER FIND PEACE.NOT UNTIL IT REACHES ITS HIGHER SELF. BUT WHO KNOWS WHEN THAT WILL HAPPEN.
©Acledent Business and TAAFKAA All Rights Reserved
©Acledent Business and TAAFKAA All Rights Reserved
TAAFKAA — GERIKIt has been 7 days.We have had the time of our lives!Robot hookers, millions against thehouse, and so much more.But, I gotta tell you, Gerik...it's all futile.Because, tomorrow,Robo Death takes over...And then, everything...All of us...Are gone...
©Acledent Business and TAAFKAA All Rights Reserved
Thank you for sharing interest on the TAAFKAA PROJECT.Currently, TAAFKAA is looking for:
1. An animator(s)
2. Album cover artist(s)
3. Musical Collaboration
4. A storyboard artist(s)For anyone who didn't get the Email/Direct Message/Etc. sent before you coming here, to preface, there is no
Onboarding Payout.
As much as TAAFKAA would like to commission artists, the current state of the TAAFKAA PROJECT does not have the current funds to do so. However, anyone working on these respective fields, following this sign up page, will get residuals on whatever they contributed — from ad revenue, to copyrightable materials — once the project is fully established, and is making a steady income.If you would like to continue with the onboarding process, please complete the following forum:
(function () { /* Your deployed worker endpoint. */ var WORKER_URL = "https://taafkaa-form.garza-andromeda2005.workers.dev"; /* Where to send people after a successful submit. */ var SUCCESS_URL = "https://taafkaa.carrd.co/#wewillmeetsoon"; var form = document.getElementById("taafkaa-form"); var button = document.getElementById("taafkaa-submit"); var msg = document.getElementById("taafkaa-msg"); /* Read inputs by ID. NOTE: form.name would return the form's own name attribute, not the input named "name", so we grab by ID. */ var nameInput = document.getElementById("taafkaa-name"); var emailInput = document.getElementById("taafkaa-email"); var phoneInput = document.getElementById("taafkaa-phone"); var positionInput = document.getElementById("taafkaa-position"); function showError(text) { msg.className = "error"; msg.textContent = text; } form.addEventListener("submit", function (e) { e.preventDefault(); /* stop the browser's normal form post */ msg.className = ""; msg.textContent = ""; var payload = { name: nameInput.value.trim(), email: emailInput.value.trim(), phone: phoneInput.value.trim(), position: positionInput.value }; /* Light front-end checks; the worker validates again server-side. */ if (!payload.email) { showError("Please enter your email."); return; } if (!payload.position) { showError("Please choose a position."); return; } button.disabled = true; button.textContent = "Sending…"; fetch(WORKER_URL, { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify(payload) }) .then(function (resp) { return resp.json().catch(function () { return {}; }); }) .then(function (result) { if (result && result.ok) { window.location.href = SUCCESS_URL; /* success -> redirect */ } else { showError((result && result.error) || "Something went wrong. Please try again."); button.disabled = false; button.textContent = "Submit"; } }) .catch(function () { showError("Network error. Please try again."); button.disabled = false; button.textContent = "Submit"; }); }); })(); ©Acledent Business and TAAFKAA All Rights Reserved
Your interest is gracious, and your message has been recieved. We will meet, very soon...
©Acledent Business and TAAFKAA All Rights Reserved
(function() { var PARAGRAPHS = [ "The intention was lost on humans. The start, the birth of creation. It was God's. But, with the first tower, they lost the connection to Him. They did so to abandon Him. To leave behind Our God.", "It started where all great things begin \u2014 with a voice. A single vibration, a single frequency, through the abyss, with capabilities to reach impossible distances between what we were and what we wanted to become. Before rockets, before stations, before the colony \u2014 there was a link. The tether. The one line that held", "In the world of before, they gave such a thing a name, a person on the other end of that line. The only voice a cadet could receive, in auditory, when Earth was just a blue dot and the dark was everything else.", "They called it CAPCOM", "Capsule Communicator. The connection between man and machine, and that connection to the ground, and the infinite. A human being, choosing to be the last voice you hear before the silence takes over. That same voice, first to hear when you make it back.", "When the civilized ruled, and the colony rose \u2014 when humanity stopped the visitation of the galaxy, to instead, live inside of it \u2014 they kept their word. Not as a title. Not as a form of pride, or in any sense, a way to expel and express great achievement. As a doctrine, the belief that no matter how far you go, someone is listening. Someone\u2026 is speaking to you, towards home.", "Every frequency. Every station. Every civilization between then, now, and the ongoing, would eventually forget that of Earth's beautiful, attractive smile, cheeks and dimples. But, it never forgot its voice.", "It all began with CAPCOM" ]; var TYPE_SPEED = 22; var PARA_PAUSE = 1400; function boot() { var wrap = document.getElementById('taafkaa-intro'); var stream = document.getElementById('taafkaa-stream'); if (!wrap || !stream) return; if (wrap.dataset.booted === '1') return; wrap.dataset.booted = '1'; wrap.style.display = 'block'; function wait(ms) { return new Promise(function(r) { setTimeout(r, ms); }); } function typeInto(p, text, speed) { return new Promise(function(resolve) { p.classList.add('visible'); var cursor = document.createElement('span'); cursor.className = 'taafkaa-cursor'; p.appendChild(cursor); var i = 0; function tick() { if (i < text.length) { cursor.insertAdjacentText('beforebegin', text.charAt(i)); i++; setTimeout(tick, speed); } else { cursor.remove(); resolve(); } } tick(); }); } function play() { var idx = 0; function next() { if (idx >= PARAGRAPHS.length) { localStorage.setItem('arg_dialogue_done', 'true'); return; } var p = document.createElement('p'); stream.appendChild(p); typeInto(p, PARAGRAPHS[idx], TYPE_SPEED).then(function() { idx++; if (idx < PARAGRAPHS.length) { wait(PARA_PAUSE).then(next); } else { next(); } }); } next(); } play(); } window.addEventListener('initDialogue', boot); })(); ©Acledent Business and TAAFKAA All Rights Reserved