- 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
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. |
- 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
| float fixedpow(float a, float x) | |
| { | |
| return pow(abs(a), x) * sign(a); | |
| } | |
| float cbrt(float a) | |
| { | |
| return fixedpow(a, 0.3333333333); | |
| } |
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 |
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
| /* | |
| Ported shader Protean Clouds | |
| https://www.shadertoy.com/view/3l23Rh | |
| to WGSL | |
| */ | |
| // Protean clouds by nimitz (twitter: @stormoid) | |
| // https://www.shadertoy.com/view/3l23Rh | |
| // License Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License | |
| // Contact the author for other licensing options |
NewerOlder