This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # Created by So Okada (so.okada@gmail.com) in collaboration with | |
| # Anthropic's Claude AI. | |
| """ | |
| Count followers for all toXiv bots on mastoxiv.page. | |
| Uses the Mastodon API (no authentication required for public lookups). | |
| Run this on a machine that can access mastoxiv.page. | |
| """ | |
| import json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # Created by So Okada (so.okada@gmail.com) in collaboration with | |
| # Anthropic's Claude AI. | |
| """ | |
| Count followers for all bXiv bots on Bluesky. | |
| Uses the public AT Protocol API (no authentication required). | |
| Usage: | |
| python3 count_bxiv_followers.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # Graph Value Stability Game (starting from a tree) | |
| # Listen to Sponsor Game for Dynkin ADE Graphs | |
| # Created by So Okada so.okada@gmail.com in collaboration with | |
| # Anthropic's Claude AI, exploring the intersection of unstable sounds | |
| # and special graphs. | |
| # Usage: | |
| # % pip install numpy matplotlib pygame networkx pynput | |
| # % python3 value-stability-game.py [options] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # This script runs Metropolis Ising model with keyboard controls (C,D,E keys) | |
| # to modify spin flip probabilities, with sounds indicating | |
| # magnetization and energy states. | |
| # Created by So Okada so.okada@gmail.com in collaboration with | |
| # Anthropic's Claude AI, exploring the intersection of statistical | |
| # mechanics and generative music. | |
| # usage: | |
| # % pip install numpy matplotlib pygame pynput |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # This script runs prey-predator type life game with sounds indicated | |
| # dominant ones (spheres or boxes). | |
| # Created by So Okada so.okada@gmail.com in collaboration with | |
| # Anthropic's Claude AI, exploring the intersection of cellular | |
| # automata and generative music. | |
| # usage: | |
| # % pip install numpy matplotlib pygame | |
| # % chmod +x music-life-population.py |