@FurkanGozukara What do you think the insurance pay out is on those aging craft..
Yall still havent been greeted yet at the door. Welcome to the age of grift.
Unfortunately, my vpn (AS136787) does NOT implement BGP safely. Check out https://t.co/1x2AcT1Txl to see if your ISP implements BGP in a safe way or if it leaves the Internet vulnerable to malicious route hijacks. via @Cloudflare
Let me explain what just happened 👇
5 minutes before the President announced a halt to attacks on Iran… someone placed a $1.5 BILLION bet on stocks going up and dumped $192 million in oil.
5 minutes…
These trades were 4 to 6 times larger than anything else in the entire market. Whoever did this wasn’t guessing. You don’t risk $1.5 billion on a hunch.
There was zero public indication this announcement was coming. No leaks. No press. Nothing. The only people who knew were in the room when the decision was made.
Someone in that room picked up a phone.
And within minutes they made more money than most Americans will earn in a thousand lifetimes. In a single trade. On a war that cost you $4+ a gallon gas and $16 billion in tax dollars.
American citizens funded this war. Politicians are profiting from it.
This is not the first time. Every major announcement from this administration has had massive suspicious trades right before it dropped. Tariff reversals. Policy shifts. War decisions.
This is the most blatant insider trading operation in the history of American politics. It’s not even close. And it’s happening over and over in broad daylight.
You would go to federal prison for trading on a tip from your cousin. These people are front running war decisions with billion dollar bets and nobody will ever ask a single question.
Nobody will be investigated. Nobody will be charged. By tomorrow this will be buried under the next satisfying headline. Just like last time. And the time before that.
The game is rigged. And they’re not even trying to hide it anymore…
Extracted content. Here you go 🤘
### 1. Plan Node 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
- Use subagents liberally to keep main context window clean
- Offload research, exploration, and parallel analysis to subagents
- For complex problems, throw more compute at it via subagents
- One task per subagent for focused execution
---
### 3. Self-Improvement Loop
- After ANY correction from the user: update `tasks/lessons.md` with the pattern
- Write rules for yourself that prevent the same mistake
- Ruthlessly iterate on these lessons until mistake rate drops
- Review lessons at session start for relevant project
---
### 4. Verification Before Done
- Never mark a task complete without proving it works
- Diff behavior between main and your changes when relevant
- Ask yourself: "Would a staff engineer approve this?"
- Run tests, check logs, demonstrate correctness
---
### 5. Demand Elegance (Balanced)
- For non-trivial changes: pause and ask "is there a more elegant way?"
- If a fix feels hacky: "Knowing everything I know now, implement the elegant solution"
- Skip this for simple, obvious fixes - don't over-engineer
- Challenge your own work before presenting it
---
### 6. Autonomous Bug Fixing
- When given a bug report: just fix it. Don't ask for hand-holding
- Point at logs, errors, failing tests - then resolve them
- Zero context switching required from the user
- Go fix failing CI tests without being told how
---
## Task Management
1. **Plan First**: Write plan to `tasks/todo.md` with checkable items
2. **Verify Plan**: Check in before starting implementation
3. **Track Progress**: Mark items complete as you go
4. **Explain Changes**: High-level summary at each step
5. **Document Results**: Add review section to `tasks/todo.md`
6. **Capture Lessons**: Update `tasks/lessons.md` after corrections
---
## Core Principles
- **Simplicity First**: Make every change as simple as possible. Impact minimal code
- **No Laziness**: Find root causes. No temporary fixes. Senior developer standards