The following operators are available.
| Operator | Description |
|---|---|
| + | Adds two operands |
| ## Workflow Orchestration | |
| ### 1. Plan Mode Default | |
| - Enter plan mode for ANY non-trivial task (3+ steps or architectural decisions) | |
| - If something goes sideways, STOP and re-plan immediately | |
| - Don't keep pushing. | |
| - Use plan mode for verification steps, not just building | |
| - Write detailed specs upfront to reduce ambiguity | |
| ### 2. Subagent Strategy |
| #!/bin/bash | |
| ########## | |
| # contents | |
| ########## | |
| # contents | |
| # notes | |
| # script setup | |
| # git config files |
| ipconfig /release | |
| ipconfig /all | |
| ipconfig /flushdns | |
| ipconfig /renew | |
| netsh int ip set dns | |
| netsh winsock reset |
| using System; | |
| using System.Data.SQLite; | |
| using NPoco; | |
| using NPoco.FluentMappings; | |
| namespace NpocoSqlite | |
| { | |
| /* | |
| CREATE TABLE [TestMe]( | |
| [MySuperID] INTEGER PRIMARY KEY NOT NULL, |
| # install openjdk | |
| sudo apt-get install openjdk-7-jdk | |
| # download android sdk | |
| wget http://dl.google.com/android/android-sdk_r24.2-linux.tgz | |
| tar -xvf android-sdk_r24.2-linux.tgz | |
| cd android-sdk-linux/tools | |
| # install all sdk packages |
| using System; | |
| using System.Collections.Generic; | |
| using Castle.MicroKernel.Registration; | |
| using Castle.Windsor; | |
| namespace ConsoleApplication6 | |
| { | |
| public class Message | |
| { | |
| } |
| using System; | |
| using System.Diagnostics; | |
| using System.Linq; | |
| using StackExchange.Redis; | |
| namespace ConsoleApplicationRedis | |
| { | |
| internal class Program | |
| { | |
| private static void Main(string[] args) |