Skip to content

Instantly share code, notes, and snippets.

@zarudama
zarudama / txt
Created July 6, 2022 08:03
google ime key map
status key command
Composition Backspace Backspace
Conversion Backspace Cancel
Precomposition Backspace Revert
Composition Ctrl a MoveCursorToBeginning
Conversion Ctrl a SegmentFocusFirst
Composition Ctrl Backspace Backspace
Conversion Ctrl Backspace Cancel
Precomposition Ctrl Backspace Undo
Composition Ctrl d MoveCursorRight
@zarudama
zarudama / el
Created July 5, 2022 03:02
20220705
;;; init.el --- My init.el -*- lexical-binding: t; -*-
(eval-and-compile
(when (or load-file-name byte-compile-current-file)
(setq user-emacs-directory
(expand-file-name
(file-name-directory (or load-file-name byte-compile-current-file))))))
(eval-and-compile
(customize-set-variable
;;; init.el --- My init.el -*- lexical-binding: t; -*-
(eval-and-compile
(when (or load-file-name byte-compile-current-file)
(setq user-emacs-directory
(expand-file-name
(file-name-directory (or load-file-name byte-compile-current-file))))))
(eval-and-compile
(customize-set-variable
@zarudama
zarudama / e2wm-wfiler.el
Created April 11, 2012 08:29
e2wm-wfiler
(require 'e2wm)
;; 2画面ファイラ化。
(setq dired-dwim-target t)
;;; wfiler / Wfiler column editing perspective
;;;--------------------------------------------------
(defvar e2wm:c-wfiler-recipe
'(- (:upper-size-ratio 0.8)
;; mikio's solution to Simple Math
;; https://4clojure.com/problem/2
4
(ns net.n01se.Tree
(:import (java.awt Point Graphics Frame Color)
(java.awt.geom AffineTransform))
(:gen-class
:extends java.applet.Applet))
;--- recursive fractal drawing framework ---
; define min and max points for the logical stage
(def minpoint (doto (Point.) (.setLocation 0 0)))