| Random Link ¯\_(ツ)_/¯ | ||
| Mar 5, 2026 | » | Tons of Buttons
1 min; updated Mar 5, 2026
span#activatedButtonsCounter, span#activatedButtonsList { font-size: x-large; } #buttonContainer { display: flex; flex-wrap: wrap; } #buttonContainer button { padding: 5px; } #buttonContainer button.clicked { background-color: greenyellow; } This page shows 100,000 buttons. Use https://www.curiosities.dev/computer-science/large-language-models/toy-pages/tons-of-buttons/?numButtons=1000 to show 1,000 buttons instead. Click on a button to activate it. Click again to deactivate it. Activated buttons are highlighted in green. There are currently 0 activated buttons: {empty}. const buttonContainer = document.... |
| Jun 11, 2025 | » | Popping Bubbles Game for Computer-Use Models
2 min; updated Mar 5, 2026
.bubble { width: 50px; height: 50px; border-radius: 50%; background: radial-gradient(circle, rgba(173,216,230,1) 0%, rgba(135,206,250,1) 50%, rgba(0,191,255,1) 100%); box-shadow: 0 0 10px rgba(0,191,255,0.5), 0 0 20px rgba(0,191,255,0.3); cursor: pointer; } This page shows bubbles at random locations on the screen. To get the highest score, click on the bubble as soon as it appears. To restart the game, refresh the page. Game starts in seconds.... |