Skip to content

Instantly share code, notes, and snippets.

View soyadokio's full-sized avatar
🍉
摸鱼ing...

SoyaDokio soyadokio

🍉
摸鱼ing...
View GitHub Profile
@rufoa
rufoa / patch.sh
Last active January 29, 2026 19:54
sublime merge 2 build 2068 linux
#!/bin/bash
set -o errexit
set -o nounset
set -o pipefail
target="${1:-/opt/sublime_merge/sublime_merge}"
check_sha() {
local sha_valid
printf '\00\00\00' | dd of=sublime_text bs=1 seek=290764 count=3 conv=notrunc
https://www.google.com/search?q=%22EA7E-890007%22
@tscontenna
tscontenna / Japanese-romanization-coding-standard.md
Last active June 7, 2024 06:19
効率的なコーディングのためのローマ字ルール

ja_roman_cs

効率的なコーディングのためのローマ字ルール

ソフトウェア開発において、コーディングルールはたくさんありますが一般的には英語がベースとなり、
日本語など英語以外の言語を扱う場合の規定は含まれないものがほとんどです。

変数名、ファイル名、その他あらゆる箇所において、 Unicodeで日本語を使えるものはたくさんありますが、 日本語にまつわる諸問題のために別のトラブルに遭うケースは少なくありません。 原則としてユーザが目にする箇所を除く開発時の語句について、

@blole
blole / win10-taskbar-never-combine-hide-labels.md
Created October 3, 2015 12:45
Make win10 taskbar buttons `Never combine, hide labels`

##Make win10 taskbar buttons Never combine, hide labels Normally, this option isn't available, and the valid options for how the taskbar button should behave are:

option registry value hide bit combine bit
Never combine 2 0 0
Combine when taskbar is full 1 0 1
Always combine, hide labels 0 1 1

These options are set in Taskbar and Start Menu Properties, accessible by right clicking the taskbar and selecting Properties.

@BrockA
BrockA / waitForKeyElements.js
Created May 7, 2012 04:21
A utility function, for Greasemonkey scripts, that detects and handles AJAXed content.
/*--- waitForKeyElements(): A utility function, for Greasemonkey scripts,
that detects and handles AJAXed content.
Usage example:
waitForKeyElements (
"div.comments"
, commentCallbackFunction
);