Morten ist da. Angelo kommt wohl noch. Heute war nach der 3. Stunde Schulschluss.
Wir reden u.a. über DeepSeek und den Open-Source-Code auf GitHub.
Angelo geht es um die binäre Verarbeitung (Multiplikation) von Oktonionen. Die erste Antwort von
Claude AI war mäßig richtig:
def oct_multiply_binary(a, b):
# a und b sind 3-Bit Vektoren für die Basiseinheiten
# Vorzeichen wird durch XOR bestimmt
sign = ((a[0]&b[1]) ^ (a[1]&b[2]) ^ (a[2]&b[0])) & 1
# Resultierende Basiseinheit durch zyklische Operationen
result = [(a[1]&b[2]) ^ (a[2]&b[1]),
(a[2]&b[0]) ^ (a[0]&b[2]),
(a[0]&b[1]) ^ (a[1]&b[0])]
return sign, result
Nächste Mal sind Ferien.
Hier Testcodes von Claude AI und DeepSeek für eine Kerze:
Claude AI 1:
<!DOCTYPE html>
<html>
<head>
<title>Brennende Kerze</title>
<style>
body {
background-color: #1a1a1a;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
}
.candle-container {
position: relative;
width: 100px;
height: 300px;
}
.candle {
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 50px;
height: 200px;
background: linear-gradient(180deg, #fff 0%, #f0f0f0 100%);
border-radius: 5px;
}
.wick {
position: absolute;
top: -10px;
left: 50%;
transform: translateX(-50%);
width: 4px;
height: 12px;
background-color: #2c2c2c;
}
.flame {
position: absolute;
top: -40px;
left: 50%;
transform: translateX(-50%);
width: 20px;
height: 40px;
background: #ff9800;
border-radius: 50% 50% 20% 20%;
animation: flicker 0.5s infinite alternate;
filter: blur(1px);
}
.flame::before {
content: '';
position: absolute;
top: 30%;
left: 50%;
transform: translateX(-50%);
width: 12px;
height: 24px;
background: #ffeb3b;
border-radius: 50% 50% 20% 20%;
}
.flame::after {
content: '';
position: absolute;
top: 10%;
left: 50%;
transform: translateX(-50%);
width: 8px;
height: 16px;
background: #fff;
border-radius: 50% 50% 20% 20%;
}
.glow {
position: absolute;
top: -50px;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 100px;
background: radial-gradient(circle, rgba(255, 152, 0, 0.4) 0%, rgba(255, 152, 0, 0) 70%);
animation: glow 1s infinite alternate;
}
@keyframes flicker {
0% {
transform: translateX(-50%) scaleY(1);
}
100% {
transform: translateX(-50%) scaleY(1.1);
}
}
@keyframes glow {
0% {
opacity: 0.5;
}
100% {
opacity: 0.8;
}
}
</style>
</head>
<body>
<div class="candle-container">
<div class="glow"></div>
<div class="flame"></div>
<div class="wick"></div>
<div class="candle"></div>
</div>
</body>
</html>
Claude AI 2:
<!DOCTYPE html>
<html>
<head>
<title>Brennende Kerze</title>
<style>
body {
background-color: #1a1a1a;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
}
.candle-container {
position: relative;
width: 100px;
height: 300px;
}
.candle {
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 50px;
height: 280px;
background: linear-gradient(180deg, #fff 0%, #f0f0f0 100%);
border-radius: 5px;
}
.wick {
position: absolute;
top: -10px;
left: 50%;
transform: translateX(-50%);
width: 4px;
height: 12px;
background-color: #2c2c2c;
}
.flame {
position: absolute;
top: -40px;
left: 50%;
transform: translateX(-50%);
width: 20px;
height: 40px;
background: #ff9800;
border-radius: 50% 50% 20% 20%;
animation: flicker 0.5s infinite alternate;
filter: blur(1px);
}
.flame::before {
content: '';
position: absolute;
top: 30%;
left: 50%;
transform: translateX(-50%);
width: 12px;
height: 24px;
background: #ffeb3b;
border-radius: 50% 50% 20% 20%;
}
.flame::after {
content: '';
position: absolute;
top: 10%;
left: 50%;
transform: translateX(-50%);
width: 8px;
height: 16px;
background: #fff;
border-radius: 50% 50% 20% 20%;
}
.glow {
position: absolute;
top: -50px;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 100px;
background: radial-gradient(circle, rgba(255, 152, 0, 0.4) 0%, rgba(255, 152, 0, 0) 70%);
animation: glow 1s infinite alternate;
}
@keyframes flicker {
0% {
transform: translateX(-50%) scaleY(1);
}
100% {
transform: translateX(-50%) scaleY(1.1);
}
}
@keyframes glow {
0% {
opacity: 0.5;
}
100% {
opacity: 0.8;
}
}
</style>
</head>
<body>
<div class="candle-container">
<div class="glow"></div>
<div class="flame"></div>
<div class="wick"></div>
<div class="candle"></div>
</div>
</body>
</html>
DeepSeek Candle 1:
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Brennende Kerze</title>
<style>
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #1a1a1a;
}
.candle {
position: relative;
width: 60px;
}
.candle-body {
width: 60px;
height: 150px;
background: #FFD700;
border-radius: 5px;
box-shadow: inset -10px 0 0 #daa520;
}
.flame {
position: absolute;
top: -40px;
left: 50%;
transform: translateX(-50%);
width: 20px;
height: 40px;
background: linear-gradient(to bottom, #ff9900 0%, #ff5500 100%);
border-radius: 50% 50% 35% 35%;
animation: flicker 0.1s infinite;
}
.flame::before {
content: '';
position: absolute;
top: 60%;
left: 50%;
transform: translate(-50%, -50%);
width: 12px;
height: 12px;
background: #ffdd00;
border-radius: 50%;
}
.glow {
position: absolute;
top: -60px;
left: 50%;
transform: translateX(-50%);
width: 40px;
height: 40px;
background: rgba(255, 100, 0, 0.2);
border-radius: 50%;
box-shadow: 0 0 30px 10px rgba(255, 100, 0, 0.2);
}
.melted-wax {
position: absolute;
top: -5px;
width: 100%;
height: 15px;
background: #daa520;
border-radius: 50%;
}
.wick {
position: absolute;
top: -30px;
left: 50%;
transform: translateX(-50%);
width: 3px;
height: 10px;
background: #333;
}
@keyframes flicker {
0% { transform: translateX(-50%) scale(1) rotate(1deg); }
50% { transform: translateX(-50%) scale(1.05) rotate(-1deg); }
100% { transform: translateX(-50%) scale(1) rotate(1deg); }
}
/* Rauch-Effekt */
.smoke {
position: absolute;
top: -80px;
left: 50%;
width: 4px;
height: 20px;
background: rgba(255, 255, 255, 0.3);
border-radius: 50%;
opacity: 0;
animation: smoke 3s infinite;
}
@keyframes smoke {
0% {
transform: translateY(0) translateX(-50%);
opacity: 0;
}
20% {
opacity: 0.3;
}
100% {
transform: translateY(-50px) translateX(-50%);
opacity: 0;
}
}
.smoke:nth-child(2) { animation-delay: 0.5s; }
.smoke:nth-child(3) { animation-delay: 1s; }
</style>
</head>
<body>
<div class="container">
<div class="candle">
<div class="smoke"></div>
<div class="smoke"></div>
<div class="smoke"></div>
<div class="glow"></div>
<div class="wick"></div>
<div class="flame"></div>
<div class="melted-wax"></div>
<div class="candle-body"></div>
</div>
</div>
</body>
</html>
DeepSeek Candle 2:
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Korrigierte Brennende Kerze</title>
<style>
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #1a1a1a;
}
.candle {
position: relative;
width: 60px;
}
.candle-body {
width: 60px;
height: 150px;
background: #FFD700;
border-radius: 5px;
box-shadow: inset -10px 0 0 #daa520;
}
/* Docht-Stil */
.wick {
position: absolute;
top: -25px; /* Position angepasst */
left: 50%;
transform: translateX(-50%);
width: 3px;
height: 15px; /* Länger gemacht */
background: #444;
z-index: 2;
}
/* Brennenden Docht-Spitze hinzugefügt */
.wick::after {
content: '';
position: absolute;
bottom: -2px;
left: 50%;
transform: translateX(-50%);
width: 4px;
height: 4px;
background: #222;
border-radius: 50%;
}
.flame {
position: absolute;
top: -35px; /* Position angepasst */
left: 50%;
transform: translateX(-50%);
width: 20px;
height: 40px;
background: linear-gradient(to bottom, #ff9900 0%, #ff5500 100%);
border-radius: 50% 50% 35% 35%;
animation: flicker 0.1s infinite;
z-index: 3; /* Sicherstellen dass Flamme über allem liegt */
}
.flame::before {
content: '';
position: absolute;
top: 60%;
left: 50%;
transform: translate(-50%, -50%);
width: 12px;
height: 12px;
background: #ffdd00;
border-radius: 50%;
}
.melted-wax {
position: absolute;
top: -5px;
width: 100%;
height: 15px;
background: #daa520;
border-radius: 50%;
z-index: 1; /* Unter der Flamme */
}
/* Restliche Stile bleiben gleich */
.glow {
position: absolute;
top: -60px;
left: 50%;
transform: translateX(-50%);
width: 40px;
height: 40px;
background: rgba(255, 100, 0, 0.2);
border-radius: 50%;
box-shadow: 0 0 30px 10px rgba(255, 100, 0, 0.2);
}
@keyframes flicker {
0% { transform: translateX(-50%) scale(1) rotate(1deg); }
50% { transform: translateX(-50%) scale(1.05) rotate(-1deg); }
100% { transform: translateX(-50%) scale(1) rotate(1deg); }
}
.smoke {
position: absolute;
top: -80px;
left: 50%;
width: 4px;
height: 20px;
background: rgba(255, 255, 255, 0.3);
border-radius: 50%;
opacity: 0;
animation: smoke 3s infinite;
z-index: 4;
}
@keyframes smoke {
0% {
transform: translateY(0) translateX(-50%);
opacity: 0;
}
20% {
opacity: 0.3;
}
100% {
transform: translateY(-50px) translateX(-50%);
opacity: 0;
}
}
.smoke:nth-child(2) { animation-delay: 0.5s; }
.smoke:nth-child(3) { animation-delay: 1s; }
</style>
</head>
<body>
<div class="container">
<div class="candle">
<div class="smoke"></div>
<div class="smoke"></div>
<div class="smoke"></div>
<div class="glow"></div>
<div class="candle-body"></div>
<!-- Reihenfolge geändert -->
<div class="melted-wax"></div>
<div class="wick"></div>
<div class="flame"></div>
</div>
</div>
</body>
</html>