<!-- Built-In Functions for Apps --> <script type="text/javascript"> var localStoragePrefix = "ct-16890941182020"; var lastSave = 0; // save to localstorage function saveLocal(data) { if (Date.now() - lastSave < 1000) { return; } // save to cookie let cookie = localStoragePrefix + "=" + JSON.stringify(data) + "; path=" + window.location.pathname + "'; SameSite=Strict"; cookie += "; expires=" + new Date(Date.now() + 1000 * 60 * 60 * 24 * 365 * 1000).toUTCString(); document.cookie = cookie; lastSave = Date.now(); }
// load from localstorage function loadLocal() { var cookiePrefix = localStoragePrefix + "="; var cookieStart = document.cookie.indexOf(cookiePrefix); if (cookieStart > -1) { let cookieEnd = document.cookie.indexOf(";", cookieStart); if (cookieEnd == -1) { cookieEnd = document.cookie.length; } var cookieData = document.cookie.substring(cookieStart + cookiePrefix.length, cookieEnd); return JSON.parse(cookieData); } }
// Function to generate random number between min and max (inclusive) function getRandomNumber(min, max) { return Math.floor(Math.random() * (max - min + 1)) + min; }
// Function to get a random element from an array function getRandomElement(array) { return array[Math.floor(Math.random() * array.length)]; }
// Function to generate a random date between two dates function getRandomDate(startDate, endDate) { return new Date(startDate.getTime() + Math.random() * (endDate.getTime() - startDate.getTime())); }
// Function to format a date as "Month Day, Year" function formatDate(date) { var options = { year: 'numeric', month: 'long', day: 'numeric' }; return date.toLocaleDateString(undefined, options); } </script>
<script type="text/javascript"> // App Javascript Goes Here
// Function to update the vote count for a character function updateVoteCount(characterId) { var character = characters.find(c => c.id == characterId); if (character) { character.votes++; saveLocal(characters); updateVoteChart(); } }
// Function to update the vote chart function updateVoteChart() { var chartData = characters.map(c => c.votes); var maxVotes = Math.max(...chartData);
// Generate HTML for the chart var html = ''; for (var i = 0; i < characters.length; i++) { var character = characters[i]; html += '<div class="chart-row">'; html += '<div class="character-name">' + character.name + '</div>'; html += '<div class="chart-bar" style="width:' + percentages[i] + ';"></div>'; html += '<div class="vote-count">' + character.votes + '</div>'; html += '</div>'; }
// Update the chart element with the generated HTML $('#vote-chart').html(html); }
// Function to get the eliminated characters function getEliminatedCharacters() { var sortedCharacters = characters.slice().sort((a, b) => a.votes - b.votes); var eliminatedCharacters = sortedCharacters.slice(0, 13).map(c => c.name); var safeCharacters = sortedCharacters.slice(13).map(c => c.name); return { eliminated: eliminatedCharacters, safe: safeCharacters }; }
// Function to run the voting process function runVotingProcess() { // Reset vote counts characters.forEach(c => c.votes = 0); saveLocal(characters);
// Generate random votes for (var i = 0; i < 225; i++) { var randomCharacterId = getRandomElement(characters.map(c => c.id)); updateVoteCount(randomCharacterId); }
// Get eliminated and safe characters var eliminatedCharacters = getEliminatedCharacters();
// Generate result message var resultMessage = "The eliminated characters are: " + eliminatedCharacters.eliminated.join(", ") + ". "; resultMessage += "The safe characters are: " + eliminatedCharacters.safe.join(", ") + ".";
// Display the result message $('#result-message').text(resultMessage); }
// Function to set Two as the voter and giver of cake function setTwoAsVoterAndGiver() { var two = characters.find(c => c.name == "Two"); if (two) { two.name = "Two (Voter and Giver)"; } saveLocal(characters); }
// Function to initialize the app function initializeApp() { // Load characters from local storage var loadedCharacters = loadLocal(); if (loadedCharacters) { characters = loadedCharacters; }
// Update the vote chart updateVoteChart(); }
// Run the voting process on page load $(document).ready(function() { initializeApp(); runVotingProcess(); setTwoAsVoterAndGiver(); }); </script> <style> /* App CSS Goes Here */ .chart-row { display: flex; align-items: center; margin-bottom: 10px; }
Calculator Tools allows you to instantly create and generate any simple one page web app for
free and immediately have it online to use and share. This means anything! Mini apps,
calculators, trackers, tools, games, puzzles, screensavers... anything you can think of that the
AI can handle.
The AI uses Javacript, HTML, and CSS programming to code your app up in moments. This currently
uses GPT-4 the latest and most powerful version of the OpenAI GPT language model.
What Do You Mean Make An App?
Have you ever just wanted a simple app but didn't want to learn programming or pay someone to
make it for you? Calculator Tools is the solution! Just type in your prompt and the AI will
generate a simple app for you in seconds. You can then customize it to your liking and share it
with your friends.
AI has become so powerful it is that simple these days.
Does This Use ChatGPT?
It uses GPT-4 which is the most powerful model for ChatGPT.
Calculator Tools does not remember things from prompt to prompt, each image is a unique image
that does not reference any of the images or prompts previously supplied.