Created by: Daniel Makus
Welcome to your digital adventure with Daniel Makus! Before you is a series of tasks that will test your skills in graphics, programming, and using AI tools. All tasks can be completed on an iPad.
Get ready for the challenges!
Your first task is to design an icon for a new, innovative mobile application!
Time for a small programming challenge! We will create a simple guessing game using HTML with CSS and JavaScript elements.
<h1>Guess the Number!</h1>
<p>I'm thinking of a number from 1 to 10.</p>
<input type="number" id="guessInput" placeholder="Your guess">
<button onclick="checkGuess()">Guess!</button>
<p id="message"></p>
body { font-family: sans-serif; text-align: center; margin-top: 50px; background-color: #f1faee; }
h1 { color: #1d3557; }
button { padding: 10px 20px; background-color: #457b9d; color: white; border: none; border-radius: 5px; cursor: pointer; }
input { padding: 8px; border: 1px solid #ccc; border-radius: 5px; }
#message { margin-top: 20px; font-weight: bold; color: #e74c3c; } /* Initial color for error */
let correctNumber = Math.floor(Math.random() * 10) + 1; // Random number from 1 to 10
function checkGuess() {
let guess = parseInt(document.getElementById('guessInput').value);
let messageElement = document.getElementById('message');
if (isNaN(guess) || guess < 1 || guess > 10) {
messageElement.textContent = "Please enter a number between 1 and 10!";
messageElement.style.color = '#e74c3c'; // Red for error
} else if (guess === correctNumber) {
messageElement.textContent = "Congratulations! You guessed it!";
messageElement.style.color = '#2ecc71'; // Green for success
} else if (guess < correctNumber) {
messageElement.textContent = "Too low! Try again.";
messageElement.style.color = '#e74c3c';
} else {
messageElement.textContent = "Too high! Try again.";
messageElement.style.color = '#e74c3c';
}
}
Now we will use ChatGPT for brainstorming and generating ideas for educational mobile games.
Now it's time for a challenge with the second AI model - Gemini.
In this task, you will compare different artificial intelligence models for creativity and language skills.
Think like a computer scientist! Solve the following logic puzzle.
Network security is fundamental! Time to create a strong password.
Use AI to plan learning or develop a new skill.
You have completed all challenges. Congratulations!
To submit your work, follow these steps:
Thank you for participating in the digital adventure!