-
Edit
~/.dsh/profiles/web/cordis.patch.yml:- insert: - id: dropbox-mcp
name: '@deepseek-ai/dsh-mcp-client'
Edit ~/.dsh/profiles/web/cordis.patch.yml:
- insert:
- id: dropbox-mcpname: '@deepseek-ai/dsh-mcp-client'
| name: claude | |
| description: "Claude Code inspired — warm terracotta, clean minimal, dark" | |
| # ── Colors ────────────────────────────────────────────── | |
| # Claude brand palette: Crail #C15F3C, Peach #DE7356, Cloudy #B1ADA1, Pampas #F4F3EE | |
| # All temperatures tuned to the warm terracotta ethos. | |
| colors: | |
| banner_border: "#2A2A2A" | |
| banner_title: "#E4E4E4" |
| public interface IHeap<T> where T : IComparable<T> | |
| { | |
| static abstract List<T> Heapify(List<T> collection); | |
| void Push(T element); | |
| T Pop(); | |
| T Peek(); | |
| int Count { get; } | |
| bool IsEmpty { get; } | |
| } |
| var path = @""; | |
| if (!Directory.Exists(path)) | |
| { | |
| throw new ArgumentException("Invalid directory path"); | |
| } | |
| PrintFileSystemEntries(path); | |
| return; | |
| void PrintFileSystemEntries(string path) | |
| { |
| void BFS(string startingPath) | |
| { | |
| var paddingFactor = 2; | |
| var paddingMultiplier = 1; | |
| var format = (int padding, string arg1, string arg2) => String.Format("{0}: {1}", arg1.PadLeft(padding * paddingMultiplier, ' '), arg2); | |
| var traversalQueue = new Queue<DirectoryWithMeta>(); | |
| traversalQueue.Enqueue(new DirectoryWithMeta(path, 0)); | |
| while (traversalQueue.Count != 0) |
| .cm-s-obsidian .list-bullet::after { | |
| content: ''; | |
| width: 7px; | |
| height: 7px; | |
| border-radius: 50%; | |
| background-color: var(--text-muted); | |
| position: relative; | |
| z-index: 1; | |
| box-shadow: none; | |
| /* explicit reset */ |