Skip to content

Instantly share code, notes, and snippets.

View juno's full-sized avatar
πŸ’°
writing code (almost) every weekday

Junya Ogura juno

πŸ’°
writing code (almost) every weekday
View GitHub Profile
@juno
juno / README.md
Last active June 22, 2025 04:37
claude-code-github-remote-mcp.md

Prerequisite

  • GitHub Personal Access Token with repository access permissions

Add GitHub Remote MCP server to Claude Code

  • Set your token in the Authorization header
  • The MCP server name should be "github"
@juno
juno / README.md
Last active June 16, 2022 01:24
πŸ’Ž Update rubygems and bundler for all installed (via asdf) ruby versions.

Usage

$ asdf list ruby
  2.7.4
  2.7.5
  2.7.6
  3.0.3
  3.1.2
 3.2.0-preview1
@juno
juno / design-documents.md
Created July 5, 2020 11:15
Awesome design documents on internet.
@juno
juno / devdocs.json
Last active February 4, 2020 06:09
My exported preferences for DevDocs.
{
"analyticsConsentAsked": "1",
"hideIntro": "1",
"docs": "crystal~0.31/css/dom/dom_events/eslint/html/immutable/javascript/jest/jquery/pony/react/redis/ruby~2.6/rails~6.0/rails~5.2/rust/sass",
"hideDisabled": "1",
"tips": "KeyNav",
"analyticsConsent": "1",
"layout": "_max-width",
"theme": "auto"
}
@juno
juno / custom.json
Last active April 13, 2021 05:47
My Karabiner Elements configuration
{
"title": "My Customize for Dvorak",
"rules": [
{
"description": "Ctrl+i to Tab",
"manipulators": [
{
"description": "Dvorakでは物理キーgがiとγͺγ‚‹",
"type": "basic",
"from": {
@juno
juno / πŸ“Š Weekly development breakdown
Last active June 28, 2025 00:31
πŸ“Š Weekly development breakdown
Ruby 3 hrs 12 mins β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 40.8%
JavaScript 1 hr 33 mins β–ˆβ–ˆβ–ˆβ–ˆβ–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 19.8%
Markdown 1 hr 28 mins β–ˆβ–ˆβ–ˆβ–‰β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 18.7%
Other 41 mins β–ˆβ–Šβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 8.8%
JSON 40 mins β–ˆβ–Šβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 8.7%
@juno
juno / circleci-config.yml
Created September 6, 2019 01:53
CircleCI config step to install bundler which compatible BUNDLED_WITH in Gemfile (workaround for bundler 2)
steps:
# ...
- run:
name: "Configure Bundler"
command: |
echo 'export BUNDLER_VERSION=$(cat Gemfile.lock | tail -1 | tr -d " ")' >> $BASH_ENV
source $BASH_ENV
gem install bundler
@juno
juno / keymap.diff
Last active January 11, 2019 03:58
qmk macro definition for refocusing to page from omnibar (Chrome): https://docs.qmk.fm/#/feature_macros
diff --git a/keyboards/crkbd/keymaps/juno/keymap.c b/keyboards/crkbd/keymaps/juno/keymap.c
index 487850951..4893837e9 100644
--- a/keyboards/crkbd/keymaps/juno/keymap.c
+++ b/keyboards/crkbd/keymaps/juno/keymap.c
@@ -32,7 +32,8 @@ enum custom_keycodes {
RAISE,
ADJUST,
BACKLIT,
- RGBRST
+ RGBRST,
@juno
juno / build.md
Last active October 20, 2018 14:08
Setting up QMK firmware for Meishi keyboard.

Add remote repo:

~ ❯❯❯ cd ~/src/qmk_firmware
~/s/qmk_firmware ❯❯❯ git remote add biacco42 https://github.com/Biacco42/qmk_firmware.git

Fetch feature/meishi branch from remote then checking-out it: