Skip to content

Instantly share code, notes, and snippets.

View yamadashy's full-sized avatar
🐶

Kazuki Yamada yamadashy

🐶
View GitHub Profile
@yamadashy
yamadashy / gemini-stars.md
Created June 26, 2025 12:26
Gemini stars
$ gh api repos/google-gemini/gemini-cli/stargazers \
    --header "Accept: application/vnd.github.v3.star+json" \
    --paginate \
    > gemini-cli-stars.json
$ jq -r '.[] | .starred_at' gemini-cli-stars.json | sort > starred_at.txt
@yamadashy
yamadashy / test.md
Created January 5, 2025 08:38
Repomix testt

file 1

@yamadashy
yamadashy / Util1.js
Last active November 14, 2018 02:32
VSCode no IntelliSense pattern
import Util3 from "./Util3.js"; // -> no IntelliSense
class Util1 {
hello() {
}
}
export.default = Util1;