Skip to content

Instantly share code, notes, and snippets.

View shuGH's full-sized avatar

Shuzo Iwasaki shuGH

  • Japan
View GitHub Profile
@troelskn
troelskn / app.rb
Last active August 12, 2021 17:25 — forked from dstrelau/app.rb
Gollum protected by HTTP Basic
require 'gollum/frontend/app'
require 'digest/sha1'
class App < Precious::App
User = Struct.new(:name, :email, :password_hash, :can_write)
before { authenticate! }
before /^\/(edit|create|delete|livepreview|revert)/ do authorize_write! ; end
helpers do
@Gab-km
Gab-km / github-flow.ja.md
Last active April 25, 2024 04:01 — forked from juno/github-flow.ja.md
GitHub Flow (Japanese translation)
@Nyoho
Nyoho / makedocset.py
Last active May 7, 2021 01:04 — forked from hetima/makedocset.py
Python 3.6.1 日本語ドキュメントを Dash.app に追加する
#!/usr/bin/env python3
import urllib.request
import urllib.parse
from bs4 import BeautifulSoup
import os
import copy
from shlex import quote
# 生成される docset の名前。カレントディレクトリに作られる
@ujiro99
ujiro99 / change-key-repeat.bat
Last active January 27, 2023 16:20
Windows10のキーリピートの速さを変える
reg add "HKEY_CURRENT_USER\Control Panel\Accessibility\Keyboard Response" /v AutoRepeatDelay /d 200 /f
reg add "HKEY_CURRENT_USER\Control Panel\Accessibility\Keyboard Response" /v AutoRepeatRate /d 10 /f
reg add "HKEY_CURRENT_USER\Control Panel\Accessibility\Keyboard Response" /v BounceTime /d 0 /f
reg add "HKEY_CURRENT_USER\Control Panel\Accessibility\Keyboard Response" /v DelayBeforeAcceptance /d 0 /f
reg add "HKEY_CURRENT_USER\Control Panel\Accessibility\Keyboard Response" /v Flags /d 59 /f