Transcript Vote Maker
Create a transcript vote maker
AI
Get This App On Your Website
2. Paste the code into your website.
3. Resize the iframe to fit your website.
Create a transcript vote maker
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript"> window.addEventListener('error', function(event) { var message = JSON.parse(JSON.stringify(event.message)); var source = event.filename; var lineno = event.lineno; var colno = event.colno; var error = event.error; window.parent.postMessage({ type: 'iframeError', details: { message: message, source: source, lineno: lineno, colno: colno, error: error ? error.stack : '' } }, '*'); }); window.addEventListener('unhandledrejection', function(event) { window.parent.postMessage({ type: 'iframePromiseRejection', details: { reason: event.reason } }, '*'); }); </script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Transcript Vote Maker</title>
<meta name="description" content="Create a transcript vote maker">
<meta name="keywords" content="transcript, vote, TPOT 7, Bottle, Marker, Cake, Book, Winner, Ice Cube, Snowball, Bell, Basketball">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<!-- 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
// Character objects
var characters = [
{ id: 1, name: "Bottle", votes: 0 },
{ id: 2, name: "Marker", votes: 0 },
{ id: 3, name: "Cake", votes: 0 },
{ id: 4, name: "Book", votes: 0 },
{ id: 5, name: "Winner", votes: 0 },
{ id: 6, name: "Ice Cube", votes: 0 },
{ id: 7, name: "Snowball", votes: 0 },
{ id: 8, name: "Bell", votes: 0 },
{ id: 9, name: "Basketball", votes: 0 }
];
// 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);
// Calculate percentages
var percentages = chartData.map(votes => ((votes / maxVotes) * 100).toFixed(2) + '%');
// 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;
}
.character-name {
font-weight: bold;
width: 160px;
margin-right: 10px;
}
.chart-bar {
background-color: #007bff;
height: 20px;
border-radius: 10px;
}
.vote-count {
margin-left: 10px;
}
</style>
<link rel="canonical" href="https://calculator.tools/prompt/1397/">
<meta charset="utf-8">
</head>
<body>
<div id="main-container" class="container">
<h1>Transcript Vote Maker</h1>
<div id="vote-chart"></div>
<div id="result-message"></div>
</div>
<script type="text/javascript"> var localStoragePrefix = "ct-{{ cachebreaker }}"; var lastSave = 0; function saveLocal(data) { if (Date.now() - lastSave < 1000) { return; } 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(); } 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); } } </script>
<script type="text/javascript"> window.addEventListener('load', function() { var observer = new MutationObserver(function() { window.parent.postMessage({height: document.documentElement.scrollHeight || document.body.scrollHeight},"*"); }); observer.observe(document.body, {attributes: true, childList: true, subtree: true}); window.parent.postMessage({height: document.documentElement.scrollHeight || document.body.scrollHeight},"*"); }); </script>
</body>
</html>
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.
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.
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.