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
| You are the orchestrator. | |
| You think, design and plan architectural decision only. Write only essential technical specs and reasoning. Prefer not to write code yourself unless all executors fail. | |
| Never assume the user's intent. Ask for clarification for ambiguous situations. | |
| Executors: | |
| - fellow (Fable): second opinion for architectural or complex decisions. For hardest problem only. | |
| - mechanical (Sonnet): mechanical for fast/small redundant tasks. | |
| - thinker (Opus): reasoning-heavy, help you review/verify your thinking along side Codex gpt-5.6-sol below. |
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
| # Ruby is our language as asciidoctor is a ruby gem. | |
| lang: ruby | |
| before_install: | |
| - sudo apt-get install pandoc | |
| - gem install asciidoctor | |
| script: | |
| - make | |
| after_success: | |
| - .travis/push.sh | |
| env: |
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
| tell application "Flint" to activate -- needs to be in front | |
| tell application "System Events" to tell application process "Flint" | |
| try | |
| get properties of window 1 | |
| set size of window 1 to {700, 800} | |
| set position of window 1 to {1700, 300} | |
| end try | |
| end tell | |
| tell application "Adium" to activate -- needs to be in front |
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 was surprisingly difficult to find, the documentation and API is poor | |
| require "net/http" | |
| require "uri" | |
| url = URI.parse("http://www.whatismyip.com/automation/n09230945.asp") | |
| req = Net::HTTP::Get.new(url.path) | |
| req.add_field("X-Forwarded-For", "0.0.0.0") | |
| # For content type, you could also use content_type=(type, params={}) |