Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@sonota88
sonota88 / align_regexp.html
Created December 3, 2022 05:24
HTML + JavaScript で Emacs の align-regexp
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>align-regexp</title>
<style>
* {
font-family: Firge, monospace;
}
@sonota88
sonota88 / Json.bas
Last active November 5, 2020 00:19
vm2gol-v2-libreoffice-basic
rem -*- mode: basic -*-
Option Explicit
rem --------------------------------
function parse_json(json)
dim parse_result
parse_result = _parse_json(json)
parse_json = parse_result(0)
@sonota88
sonota88 / README.md
Created June 18, 2020 11:52
bhatena-hcalendar.user.js
@sonota88
sonota88 / README.md
Last active December 28, 2019 05:05
LibreOffice Drawのodgファイルから図形の情報を抜き出して使うサンプル
@sonota88
sonota88 / 1.adoc
Last active March 23, 2023 22:37
asciidoc test
ああああ \
いいいい
ああああ いいいい
— うううう
#!/usr/bin/env ruby
# coding: utf-8
require "pp"
CS_JAR_PATH = "checkstyle-8.12-all.jar"
CS_CONFIG_PATH = "google_checks.xml"
class DiffRange
def initialize(from, len)
@sonota88
sonota88 / erb_context.rb
Created February 8, 2016 11:45
erb context
class ErbContext
def initialize params
@params = params
end
def method_missing name, *args
if @params.has_key? name
@params[name]
else
raise "unknown key (#{name})"
MANUAL_INDEX
http://www.aozora.gr.jp/KOSAKU/MANU_IND.html
旧マニュアル?
青空文庫・外字注記辞書
http://www.aozora.gr.jp/gaiji_chuki/
外字注記辞書のPDF
実 → 實
7 . 說 ※[#「言+兌」]→[包摂適用 説 ] 15
@sonota88
sonota88 / windows7_ntemacs.el
Last active February 12, 2017 14:10
Windows7+NTEmacs 2015/04
; ################################
; HOME
C:\Users\{user}
; ################################
; %HOME%/.emacs
(add-to-list 'load-path (expand-file-name "~/emacs_d"))
(load (expand-file-name "~/emacs_d/__emacs.el"))
; ################################
@sonota88
sonota88 / readme.md
Last active August 29, 2015 14:05
選択範囲を外部プログラムで加工するサクラエディタ用JScriptマクロの雛形