Skip to content

Instantly share code, notes, and snippets.

View idaisukee's full-sized avatar

INOUE Daisuke idaisukee

  • Shizuoka, Japan
View GitHub Profile
@sandhan26
sandhan26 / pro_min_i2c_slave.c
Created December 2, 2018 08:01
Pro mini i2c slave code v1
// Author : Sandhan Sarma <sandhan.sarma26@gmail.com>
// Date : 2nd December 2018
#include <Wire.h>
float voltage = 0.0F;
char voltBuff[7];
void setup() {
// put your setup code here, to run once:
# based on the original config
from libqtile.config import Key, Screen, Group, Drag, Click
from libqtile.command import lazy
from libqtile import layout, bar, widget
from libqtile import hook
from libqtile.log_utils import logger
import os
import subprocess
@miyakogi
miyakogi / config.md
Last active February 8, 2024 08:57
JSON, YAML, ini, TOML ざっくり比較
@funatsufumiya
funatsufumiya / README.md
Last active June 21, 2017 18:58
常用漢字データベースSQL

常用漢字データベースSQL

常用漢字データベースがすぐ作れる2つのSQLファイルです。

常用漢字の版(バージョン)

平成22年版

ライセンス

@troynt
troynt / better_dvorak.ahk
Created October 8, 2009 15:17
Dvorak Autohotkey
; Use Scroll Lock to swap keyboard layouts
; and do not let Control, Alt, or Win modifiers act on Dvorak
Loop {
If GetKeyState("ScrollLock", "T")
and !GetKeyState("Control")
and !GetKeyState("Alt")
and !GetKeyState("LWin")
and !GetKeyState("RWin") {
Suspend, Off
} else {