1. Emacs settings

    Here is my .emacs.

    (custom-set-variables
      ;; custom-set-variables was added by Custom.
      ;; If you edit it by hand, you could mess it up, so be careful.
      ;; Your init file should contain only one such instance.
      ;; If there is more than one, they won't work right.
     '(case-fold-search t)
     '(current-language-environment "Japanese")
     '(default-input-method "japanese-egg-anthy")
     '(face-font-family-alternatives …
    more »
  2. Initial settings of Git

    Git setup

    Git needs initial setup. I type:

    $ git config --global user.name "NIIBE Yutaka"
    $ git config --global user.email "gniibe@fsij.org"
    
    more »
  3. GnuPG settings

    For new machine, here is my GnuPG settings.

    .gnupg/gpg.conf

    I create .gnupg/gpg.conf file with the following content.

    use-agent
    personal-digest-preferences SHA256
    cert-digest-algo SHA256
    default-preference-list SHA512 SHA384 SHA256 AES256 AES192 AES CAST5 ZLIB BZIP2 ZIP Uncompressed
    
    default-key 0x4ca7babe
    

    Let gpg-agent manage SSH key

    I deactivate seahose-agent. Also, I …

    more »
  4. Installing More Packages

    I install more packages to do the work for my sites.

    packages to maintain www.gniibe.org

    I install following packages to maintain www.gniibe.org.

    • python-cherrypy3 This is application engine as wll as HTTP server.
    • mini-httpd gitweb package (or web application) requires 'httpd'. python-cherrypy3 doesn't provides 'httpd' with unknown …
    more »