OpenCode supports any OpenAI-compatible API via custom providers.
Your API keys are stored separately from config to prevent accidental leaks.
| File | Purpose |
"Just like a Saiyan warrior needs to control their power levels, a developer needs to control which SSH key fires for which repo."
Most of us juggle two GitHub accounts: one for work (company Org)
"I used to be a standard residual connection. Then I learned to pay attention."
Paper: https://arxiv.org/abs/2603.15031 Code: https://github.com/MoonshotAI/Attention-Residuals (2.8k stars) Authors: Kimi Team (Moonshot AI), March 2026 Model: Kimi Linear - 48B total / 3B activated, trained on 1.4T tokens
| // generate list of random colors except blue rgb values until green is reached | |
| let colors = []; | |
| const numOfColors = 10; | |
| const unDesirableColor = (color) => { | |
| // if color is near blue or white return true | |
| const rgb = color.split(',').map((val) => { |
| #!/usr/bin/env python3 | |
| # coding: utf-8 | |
| import matplotlib | |
| import matplotlib.pyplot as plt | |
| import pandas as pd | |
| import squarify | |
| import platform | |
| # print versions |
| username='' #email | |
| password='' #password |
| # /usr/bin/env python | |
| # | |
| # Author: Red5d | |
| # | |
| # Description: Extract and run OCR on subtitles from a PGS-format .sup file. | |
| # | |
| # Example Usage: python sup2srt.py bd_subtitles.sup bd_subtitles.srt | |
| # | |
| # Dependencies: | |
| # - pytesseract |