実家で親の蔵書を整理していく中で、程度のよさそうなものをいくつかピックアップして、中古で買うぜって人がいればとっておきますよー、というリストです
すでに結構な量を処理していますが、残っているものの分野はおおむね、
- 数学、物理、その他自然科学
- 組み込み開発 (PIC,ラズパイ,ARM,電子工作など……。CQ出版社率高め)
あたりです
| gaps: | |
| inner_gap: 1 | |
| outer_gap: 0 | |
| general: | |
| # Whether to show floating windows as always on top. | |
| show_floating_on_top: false | |
| bar: | |
| height: "25px" |
| #!/bin/bash | |
| # cf. https://www.skyarch.net/blog/?p=7423 | |
| ip2dec() { | |
| local IFS=. | |
| local C=($1) | |
| printf "%s\n" $(( (${C[0]} << 24) | (${C[1]} << 16) | (${C[2]} << 8) | ${C[3]} )) | |
| } | |
| mask2dec() { |
| ; bug.n - tiling window management | |
| ; @version 9.0.0 | |
| ;; Status bar | |
| ;Config_showBar=1 | |
| ;Config_horizontalBarPos=left | |
| ;Config_verticalBarPos=top | |
| ;Config_barWidth=100% | |
| ;Config_singleRowBar=1 | |
| ;Config_spaciousBar=0 |
| adb shell settings put global tether_dun_required 0 | |
| adb shell pm hide com.android.contacts | |
| adb shell pm hide com.android.dialer | |
| adb shell pm hide com.nttdocomo.android.accountauthenticator | |
| adb shell pm hide com.nttdocomo.android.apnsw | |
| adb shell pm hide com.nttdocomo.android.applicationmanager | |
| adb shell pm hide com.nttdocomo.android.atf | |
| adb shell pm hide com.nttdocomo.android.bugreport | |
| adb shell pm hide com.nttdocomo.android.cloudset |
| (require 'ob) | |
| (require 'ob-eval) | |
| (defvar org-babel-default-header-args:blockdiag | |
| '((:results . "file") (:exports . "results")) | |
| "Default arguments to use when evaluating a blockdiag source block.") | |
| (defun org-babel-expand-body:blockdiag (body params) | |
| "Expand BODY according to PARAMS, return the expanded body." | |
| (let ((vars (mapcar #'cdr (org-babel--get-vars params)))) |
| #!/bin/sh | |
| #TARGET=`uname -m` | |
| INSTDIR=/c/apps/W32TeX | |
| mkdir -p $INSTDIR/tmp | |
| cd $INSTDIR/tmp | |
| while read ARC | |
| do |
| (require 'e2wm) | |
| ;; 2画面ファイラ化。 | |
| (setq dired-dwim-target t) | |
| ;;; wfiler / Wfiler column editing perspective | |
| ;;;-------------------------------------------------- | |
| (defvar e2wm:c-wfiler-recipe | |
| '(- (:upper-size-ratio 0.8) |