- OpenCode Zen (opencode/)
- OpenRouter (openrouter/)
When using /models in the TUI, models from both providers show up. You need to pick the ones prefixed with opencode/ to use your Zen key.
When using /models in the TUI, models from both providers show up. You need to pick the ones prefixed with opencode/ to use your Zen key.
To dial a phone number in China from the USA, start with the US exit code (011), followed by China's country code (86), then the area code or mobile prefix and local number—no spaces or dashes needed. vonageforhome
Enter 011 + 86 + area code (2-4 digits) + local number (6-8 digits). vitelglobal
Enter 011 + 86 + mobile prefix (usually 1 followed by 10 digits, totaling 11 digits). vitelglobal
Enumerating objects: 19, done.
Counting objects: 100% (19/19), done.
Delta compression using up to 22 threads
Compressing objects: 100% (18/18), done.
Writing objects: 100% (18/18), 10.41 MiB | 4.59 MiB/s, done.
Total 18 (delta 2), reused 0 (delta 0), pack-reused 0
remote: Resolving deltas: 100% (2/2), completed with 1 local object.
remote: error: GH007: Your push would publish a private email address.
remote: You can make your email public or disable this protection by visiting:
| ! swap left ctrl and left alt | |
| ! run xmodmap ~/.Xmodmap | |
| clear control | |
| clear mod1 | |
| keycode 37 = Alt_L Meta_L | |
| keycode 64 = Control_L | |
| add control = Control_L Control_R | |
| add mod1 = Alt_L Meta_L |
| # Find lots more stations at http://www.iheart.com | ||
|---|---|---|
| Alternative (BAGeL Radio - SomaFM) | http://somafm.com/bagel.pls | |
| Alternative (The Alternative Project) | http://c9.prod.playlists.ihrhls.com/4447/playlist.m3u8 | |
| American Roots (Boot Liquor - SomaFM) | http://somafm.com/bootliquor.pls | |
| Celtic (ThistleRadio - SomaFM) | http://somafm.com/thistle.pls | |
| Chillout (Groove Salad - SomaFM) | http://somafm.com/startstream=groovesalad.pls | |
| Commodore 64 Remixes (Slay Radio) | http://www.slayradio.org/tune_in.php/128kbps/listen.m3u | |
| Covers (SomaFM) | http://somafm.com/covers.pls | |
| Downtempo (Secret Agent - SomaFM) | http://somafm.com/secretagent.pls | |
| Dub Step (Dub Step Beyond - SomaFM) | http://somafm.com/dubstep.pls |
In Jira, an "idea" is not part of the standard project hierarchy (Project > Epic > Story/Task) but is a separate concept used for early-stage innovation and is managed in a dedicated tool called Jira Product Discovery (JPD). Ideas are for capturing and prioritizing potential work before it becomes part of the development backlog.
Here is a comparison of how ideas fit into the overall workflow:
| Aspect | Jira Product Discovery (The "Idea" Space) | Jira Software (The "Development" Space) |
|---|---|---|
| Purpose | Capture, discuss, and prioritize opportunities and solutions. | Plan, track, and execute development work. |
| Unit of Work | Idea. | Issue (e.g., Epic, Story, Task, Bug). |
| Primary Goal | Decide what to build. | Build and deliver the selected items. |
| Connection | Promising ideas are sent to Jira Software as Epics or Stories. | Epics and Stories from JPD are broken down and worked on. |
Here is a breakdown of the standard Jira hierarchy for clarity:
| Hierarchy Level | Description & Relationship | Common Issue Types at This Level |
|---|---|---|
| Project | A container for organizing all related work. | N/A |
| Epic | A large body of work within a project, spanning multiple sprints. It groups related Stories and Tasks. | Epic |
| Story / Task | An individual work item that contributes to an Epic. Stories are user-focused, while Tasks are general work. These are considered "standard-level" issues. | Story, Task, Bug |
| Sub-task | A small, actionable step that breaks down a Story or Task. A Sub-task must have a parent Story/Task and cannot exist on its own. | Sub-task |
For most Site Reliability Engineering (SRE) teams, a Kanban board is generally more suitable than Scrum. Kanban’s flexibility helps manage the dynamic, interrupt-driven nature of SRE work, which often involves urgent incidents, on-call rotations, and unpredictable tasks. Scrum is typically better for projects with predictable, time-boxed work—less common for SREs.
A .gitkeep file is a convention-based placeholder file used to force Git to track an otherwise empty directory.
Git doesn't track empty directories - if you commit a folder with no files, it won't be included in your repository. The .gitkeep file solves this problem.
# Without .gitkeep - empty directory won't be trackedFrom Deepseek.
The core idea of supercomputing is to solve a big problem faster by breaking it into smaller pieces and solving those pieces simultaneously on thousands of processors (CPUs/GPUs).