- Stunt Car Racer
- Elite
- 3D Pool
- Leaderboard Golf
- Guardian of The Sentinel
- Project Stealth Fighter
- Gunship
- Space Rogue
- Mood
- 3D Construction Kit
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
| ; This is an example of what coding agents can do as of Jan 2026. | |
| ; Given a disassembled SID music file, a coding agent can reproduce the music pretty well. | |
| ; Original music: https://youtu.be/84hIKDUIpsM?si=QCnMztPuYnW-no1Y&t=16 | |
| ; Notes: | |
| ; The assembly code copies memory around and self-modifies while running. | |
| ; Also, there is no 1:1 mapping from a synthesizer to a MIDI file. | |
| ; The SID synthesizer chip is far more capable than standard MIDI. | |
| ; Coding Agent used: Codex-CLI with GPT-5.2-Codex model. |
- Cursor AI https://www.cursor.com/
- Claude Code Research Preview https://github.com/anthropics/claude-code
- Softgen Web App Developer https://softgen.ai/
- Windsurf https://codeium.com/windsurf
- GitHub Copilot https://github.com/features/copilot
- Lovable https://lovable.dev/
- Devin https://devin.ai/
- Aider https://github.com/Aider-AI/aider
- PhiData https://github.com/phidatahq/phidata
- LangGraph https://www.langchain.com/langgraph
- Autogen https://github.com/microsoft/autogen
- RagApp https://github.com/ragapp/ragapp
- MetaGPT https://github.com/geekan/MetaGPT
- AgentOps https://www.agentops.ai/
- AutoAgent https://github.com/HKUDS/AutoAgent
- CrewAI https://www.crewai.com/ https://github.com/crewAIInc/crewAI
- Runway ML: https://runwayml.com/
- Pika: https://pika.art/home
- Luma Labs Dream Machine: https://lumalabs.ai/dream-machine
- OpenAI Sora (not published): https://openai.com/index/sora/
- Meta Make-A-Video: https://makeavideo.studio/
- Adobe Firefly Video: https://blog.adobe.com/en/publish/2024/09/11/bringing-gen-ai-to-video-adobe-firefly-video-model-coming-soon)
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
| package main | |
| import ( | |
| "fmt" | |
| "github.com/miekg/dns" | |
| "log" | |
| "net/http" | |
| ) | |
| const rootdnsv4 = "198.41.0.4" |
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
| ! | |
| " | |
| # | |
| $ | |
| % | |
| & | |
| ' | |
| ( | |
| ) | |
| * |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <title>Sparks of Copilot X</title> | |
| <meta charset="utf-8"> | |
| <meta name="author" content="Sebastian Macke"> | |
| <meta name="description" content="GPT-4 Coding Experiments"> | |
| <link href=" https://cdn.jsdelivr.net/npm/ace-builds@1.16.0/css/ace.min.css " rel="stylesheet"> | |
| <style> |
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
| package main | |
| import ( | |
| "flag" | |
| "fmt" | |
| "net/http" | |
| "time" | |
| ) | |
| var defaultSleepTimeMs *int |
NewerOlder