This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git ls-tree HEAD 'test/gemma2:latest.Modelfile' | |
| git ls-tree HEAD 'test/llama3.1:latest.Modelfile' | |
| git ls-tree HEAD 'test/llama3.1:latest.model.json' | |
| git ls-tree HEAD 'test/llama3.2:latest.Modelfile' | |
| git ls-tree HEAD 'test/mistral-nemo:latest.Modelfile' | |
| git ls-tree HEAD 'test/mistral-nemo:latest.model.json' | |
| git ls-tree HEAD 'test/mxbai-embed-large:latest.Modelfile' | |
| git ls-tree HEAD 'test/mxbai-embed-large:latest.model.json' | |
| git ls-tree HEAD 'test/qwen2.5:latest.Modelfile' | |
| git ls-tree HEAD 'test/starcoder2:latest.Modelfile' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use std::time::{Duration, Instant}; | |
| use ratatui::{ | |
| crossterm::event::{self, Event, KeyEventKind}, | |
| symbols, | |
| text::Line, | |
| widgets::{Block, Padding, Paragraph, Widget}, | |
| }; | |
| fn main() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gh api --paginate 'user/starred' | ConvertFrom-Json -Depth 100 | ConvertTo-Json -Depth 100 > my_github_stars.json | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "lsp": { | |
| "rust-analyzer": { | |
| "initialization_options": { | |
| "cargo": { | |
| "features": "all", | |
| }, | |
| }, | |
| }, | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // just paste in console and hit f9 to extract JSON to clipboard | |
| (() => { | |
| const STATE_KEY = "__crowdin_extractor_state__"; | |
| // Cleanup previous run | |
| if (window[STATE_KEY]) { | |
| console.log("Crowdin Extractor: Removing previous state"); | |
| window.removeEventListener("keydown", window[STATE_KEY].handler); | |
| window[STATE_KEY].toast?.remove(); | |
| window[STATE_KEY].popover?.remove(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // https://github.com/instructkr/claude-code/blob/936e6c8e8d7258dd1b2bc127d704f02cc23076d5/src/constants/spinnerVerbs.ts#L16 | |
| // https://news.ycombinator.com/item?id=47584540 | |
| export const SPINNER_VERBS = [ | |
| 'Accomplishing', | |
| 'Actioning', | |
| 'Actualizing', | |
| 'Architecting', | |
| 'Baking', | |
| 'Beaming', | |
| "Beboppin'", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [package] | |
| name = "serde-facet-flatten-comparison" | |
| version = "0.1.0" | |
| edition = "2024" | |
| [dependencies] | |
| facet = "0.46.5" | |
| facet-json = "0.46.1" | |
| serde = { version = "1.0.229", features = ["derive"] } | |
| serde_json = "1.0.151" |
OlderNewer