Skip to content

Instantly share code, notes, and snippets.

View takano32's full-sized avatar
🌏

TAKANO Mitsuhiro takano32

🌏
View GitHub Profile
uuid = require 'node-uuid'
uuid1 = uuid.v4()
uuid2 = uuid.v4()
uuid2bytes = (uuid) ->
bytes = []
sBytes = uuid.match(/([0-9a-zA-Z]{2})/g)
sBytes.forEach (inByte) ->
aByte = parseInt(inByte, 16)
bytes.push(aByte)
@takano32
takano32 / beer.lisp
Created September 23, 2018 23:11 — forked from elderica/beer.lisp
(in-package #:cl-user)
(defpackage #:beer
(:use #:common-lisp)
(:export #:verse #:sing))
(in-package #:beer)
;; [*endpoint-min*, *endpoint-max*] in notations for intervals.
(defparameter *endpoint-max* 99)
(defparameter *endpoint-min* 0)
@takano32
takano32 / hackadoll
Created May 17, 2019 12:50 — forked from koluku/hackadoll
ハッカドールソースコメント コメントが消える直前に取得したソースコメント。多分最後のコメントを保存しているのはこれだけだと思う。 リビジョンで最後に取得したことを証明できるので参考までに。 2014-08-12 13:59 view-source:hackadoll.com
<!--
--
もう時間がないのでここにログだけ残す。
--

Arch Linux ARM on Crostini

Screenshot

I got Arch Linux ARM installed on a Lenovo Chromebook Duet! I mostly used the instructions from the Arch Wiki as reference.

0. Before we begin

[
{
"word": "Asshole",
"kana": "アスホール",
"meaning": "いやな奴(Ass=お尻、Hole=穴)",
"notice": "「うざい野郎」「ろくでなし」"
},
{
"word": "あばずれ",
"kana": "あばずれ",
@takano32
takano32 / SKILL.md
Created June 17, 2026 03:15 — forked from k16shikano/SKILL.md
japanese-tech-writing/SKILL
name japanese-tech-writing
description 日本語の技術文書・書籍原稿の文章規範。整形(一文一行、引用ブロック、脚注、コラム記法)、段落と論証の構成(パラグラフライティング)、論証の厳密さ(ツッコミどころの除去)、読み手の負荷の管理、視点と語り、演出の抑制、LLM っぽい空句の禁止、冗長の排除を定める。日本語で技術書の章、草稿、記事、解説文を書くとき、または推敲・リライトするときに使用する。

日本語技術文書の文章規範

日本語で技術的な原稿(書籍の章、記事、解説文)を書く・推敲するときは、以下の規範に従う。

整形

@takano32
takano32 / README.md
Created June 28, 2026 15:14 — forked from ZipFile/README.md
Pixiv OAuth Flow

Retrieving Auth Token

  1. Run the command:

    python pixiv_auth.py login

    This will open the browser with Pixiv login page.