Apply new theme.
This commit is contained in:
parent
2f71f13ce7
commit
abeb8c9894
|
@ -2,3 +2,5 @@ public
|
|||
*.swp
|
||||
static/ogp/*.webp
|
||||
assets/font/*.ttf
|
||||
.hugo_build.lock
|
||||
resources
|
||||
|
|
|
@ -1,34 +1,263 @@
|
|||
baseURL = "https://blog.kazu634.com/"
|
||||
title = "His greatness lies in his sense of responsibility"
|
||||
DefaultContentLanguage = "ja"
|
||||
languageCode = "ja"
|
||||
theme = "angels-ladder"
|
||||
HasCJKLanguage = true
|
||||
# [en, zh-cn, fr, ...] determines default content language
|
||||
defaultContentLanguage = "en"
|
||||
# language code
|
||||
languageCode = "jp"
|
||||
title = "His greatness lies in his sense of responsibilities."
|
||||
|
||||
# Change the default theme to be use when building the site with Hugo
|
||||
theme = "LoveIt"
|
||||
|
||||
# Author config
|
||||
[author]
|
||||
name = "kazu634"
|
||||
email = "simoom634@yahoo.co.jp"
|
||||
link = ""
|
||||
|
||||
[params]
|
||||
subtitle = "named after the quotation from Wind, Sand, and Stars by Saint Exupery."
|
||||
facebook = "https://www.facebook.com/kazu634"
|
||||
twitter = "https://twitter.com/MusashiKazuhiro"
|
||||
github = "https://github.com/kazu634"
|
||||
profile = "/images/profile.png"
|
||||
analytics = "UA-57665492-1"
|
||||
copyright = "Written by Kazuhiro MUSASHI"
|
||||
author = "kazu634"
|
||||
# LoveIt theme version
|
||||
version = "0.2.X"
|
||||
# site description
|
||||
description = "@kazu634のブログです"
|
||||
# site keywords
|
||||
keywords = ["Blog", "Hugo", "Tech"]
|
||||
# site default theme ("light", "dark", "auto")
|
||||
defaultTheme = "auto"
|
||||
# LoveIt NEW | 0.2.0 date format
|
||||
dateFormat = "2006-01-02"
|
||||
|
||||
description = "the blog written by @MusashiKazuhiro"
|
||||
title = "His greatness lies in his sense of responsibility"
|
||||
images = ["/images/profile.png"]
|
||||
[params.page.seo]
|
||||
# image URL
|
||||
images = []
|
||||
# Publisher info
|
||||
[params.page.seo.publisher]
|
||||
name = "kazu634"
|
||||
logoUrl = ""
|
||||
|
||||
[taxonomies]
|
||||
category = "categories"
|
||||
series = "series"
|
||||
tag = "tags"
|
||||
# Header config
|
||||
[params.header]
|
||||
# desktop header mode ("fixed", "normal", "auto")
|
||||
desktopMode = "fixed"
|
||||
# mobile header mode ("fixed", "normal", "auto")
|
||||
mobileMode = "auto"
|
||||
|
||||
# LoveIt NEW | 0.2.0 Header title config
|
||||
[params.header.title]
|
||||
# title name
|
||||
name = "His greatness lies in his sense of responsibilities"
|
||||
# you can add extra information before the name (HTML format is supported), such as icons
|
||||
pre = ""
|
||||
# you can add extra information after the name (HTML format is supported), such as icons
|
||||
post = ""
|
||||
# LoveIt NEW | 0.2.5 whether to use typeit animation for title name
|
||||
typeit = false
|
||||
|
||||
[params.footer]
|
||||
enable = true
|
||||
# LoveIt NEW | 0.2.0 Custom content (HTML format is supported)
|
||||
custom = ''
|
||||
# LoveIt NEW | 0.2.0 whether to show Hugo and theme info
|
||||
hugo = true
|
||||
# LoveIt NEW | 0.2.0 whether to show copyright info
|
||||
copyright = true
|
||||
# LoveIt NEW | 0.2.0 whether to show the author
|
||||
author = true
|
||||
# Site creation time
|
||||
since = 2005
|
||||
|
||||
# LoveIt NEW | 0.2.0 Section (all posts) page config
|
||||
[params.section]
|
||||
# special amount of posts in each section page
|
||||
paginate = 15
|
||||
# date format (month and day)
|
||||
dateFormat = "01-02"
|
||||
# amount of RSS pages
|
||||
rss = 10
|
||||
|
||||
# LoveIt NEW | 0.2.0 List (category or tag) page config
|
||||
[params.list]
|
||||
# special amount of posts in each list page
|
||||
paginate = 15
|
||||
# date format (month and day)
|
||||
dateFormat = "01-02"
|
||||
# amount of RSS pages
|
||||
rss = 10
|
||||
|
||||
# Home page config
|
||||
[params.home]
|
||||
# LoveIt NEW | 0.2.0 amount of RSS pages
|
||||
rss = 10
|
||||
# Home page profile
|
||||
[params.home.profile]
|
||||
enable = true
|
||||
# URL of avatar shown in home page
|
||||
avatarURL = "/images/profile.png"
|
||||
# LoveIt CHANGED | 0.2.7 title shown in home page (HTML format is supported)
|
||||
title = "Kazuhiro MUSASHI"
|
||||
# subtitle shown in home page
|
||||
subtitle = "ITエンジニアです。本当は手を動かしたいけど、いまはプレセールスやっています。"
|
||||
# whether to use typeit animation for subtitle
|
||||
typeit = true
|
||||
# whether to show social links
|
||||
social = true
|
||||
# LoveIt NEW | 0.2.0 disclaimer (HTML format is supported)
|
||||
disclaimer = "Opinions are my own."
|
||||
# Home page posts
|
||||
[params.home.posts]
|
||||
enable = true
|
||||
# special amount of posts in each home posts page
|
||||
paginate = 5
|
||||
# LoveIt DELETED | 0.2.0 replaced with hiddenFromHomePage in params.page
|
||||
# default behavior when you don't set "hiddenFromHomePage" in front matter
|
||||
defaultHiddenFromHomePage = false
|
||||
|
||||
# Social config about the author
|
||||
[params.social]
|
||||
Gitea = "https://gitea.kazu634.com/kazu634"
|
||||
Twitter = "MusashiKazuhiro"
|
||||
Facebook = "kazu634"
|
||||
Linkedin = "一弘-武蔵-b90bba54"
|
||||
Flickr = "42332031@N02"
|
||||
RSS = true # LoveIt NEW | 0.2.0
|
||||
|
||||
# LoveIt CHANGED | 0.2.0 Page config
|
||||
[params.page]
|
||||
# LoveIt NEW | 0.2.0 whether to hide a page from home page
|
||||
hiddenFromHomePage = false
|
||||
# LoveIt NEW | 0.2.0 whether to hide a page from search results
|
||||
hiddenFromSearch = false
|
||||
# LoveIt NEW | 0.2.0 whether to enable twemoji
|
||||
twemoji = true
|
||||
# whether to enable lightgallery
|
||||
lightgallery = true
|
||||
# LoveIt NEW | 0.2.0 whether to enable the ruby extended syntax
|
||||
ruby = true
|
||||
# LoveIt NEW | 0.2.0 whether to enable the fraction extended syntax
|
||||
fraction = true
|
||||
# LoveIt NEW | 0.2.0 whether to enable the fontawesome extended syntax
|
||||
fontawesome = true
|
||||
# whether to show link to Raw Markdown content of the content
|
||||
linkToMarkdown = true
|
||||
# LoveIt NEW | 0.2.4 whether to show the full text content in RSS
|
||||
rssFullText = false
|
||||
# LoveIt NEW | 0.2.0 Table of the contents config
|
||||
|
||||
[params.page.toc]
|
||||
# whether to enable the table of the contents
|
||||
enable = true
|
||||
# LoveIt NEW | 0.2.9 whether to keep the static table of the contents in front of the post
|
||||
keepStatic = false
|
||||
# whether to make the table of the contents in the sidebar automatically collapsed
|
||||
auto = true
|
||||
|
||||
# LoveIt CHANGED | 0.2.0 KaTeX mathematical formulas
|
||||
[params.page.math]
|
||||
enable = true
|
||||
# default block delimiter is $$ ... $$ and \\[ ... \\]
|
||||
blockLeftDelimiter = ""
|
||||
blockRightDelimiter = ""
|
||||
# default inline delimiter is $ ... $ and \\( ... \\)
|
||||
inlineLeftDelimiter = ""
|
||||
inlineRightDelimiter = ""
|
||||
# KaTeX extension copy_tex
|
||||
copyTex = true
|
||||
# KaTeX extension mhchem
|
||||
mhchem = true
|
||||
# LoveIt NEW | 0.2.0 Code config
|
||||
|
||||
[params.page.code]
|
||||
# whether to show the copy button of the code block
|
||||
copy = true
|
||||
# the maximum number of lines of displayed code by default
|
||||
maxShownLines = 10
|
||||
|
||||
# LoveIt NEW | 0.2.0 Mapbox GL JS config
|
||||
[params.page.mapbox]
|
||||
# access token of Mapbox GL JS
|
||||
accessToken = ""
|
||||
# style for the light theme
|
||||
lightStyle = "mapbox://styles/mapbox/light-v9"
|
||||
# style for the dark theme
|
||||
darkStyle = "mapbox://styles/mapbox/dark-v9"
|
||||
# whether to add NavigationControl
|
||||
navigation = true
|
||||
# whether to add GeolocateControl
|
||||
geolocate = true
|
||||
# whether to add ScaleControl
|
||||
scale = true
|
||||
# whether to add FullscreenControl
|
||||
fullscreen = true
|
||||
|
||||
# LoveIt CHANGED | 0.2.0 social share links in post page
|
||||
[params.page.share]
|
||||
enable = true
|
||||
Twitter = true
|
||||
Facebook = true
|
||||
Line = true
|
||||
Pocket = true
|
||||
|
||||
# LoveIt NEW | 0.2.0 Analytics config
|
||||
[params.analytics]
|
||||
enable = true
|
||||
# Google Analytics
|
||||
[params.analytics.google]
|
||||
id = "UA-57665492-1"
|
||||
# whether to anonymize IP
|
||||
anonymizeIP = true
|
||||
|
||||
[menu]
|
||||
[[menu.main]]
|
||||
identifier = "posts"
|
||||
# you can add extra information before the name (HTML format is supported), such as icons
|
||||
pre = ""
|
||||
# you can add extra information after the name (HTML format is supported), such as icons
|
||||
post = ""
|
||||
name = "Posts"
|
||||
url = "/posts/"
|
||||
# title will be shown when you hover on this menu link
|
||||
title = ""
|
||||
weight = 1
|
||||
[[menu.main]]
|
||||
identifier = "tags"
|
||||
pre = ""
|
||||
post = ""
|
||||
name = "Tags"
|
||||
url = "/tags/"
|
||||
title = ""
|
||||
weight = 2
|
||||
[[menu.main]]
|
||||
identifier = "categories"
|
||||
pre = ""
|
||||
post = ""
|
||||
name = "Categories"
|
||||
url = "/categories/"
|
||||
title = ""
|
||||
weight = 3
|
||||
|
||||
[markup]
|
||||
# Syntax Highlighting (https://gohugo.io/content-management/syntax-highlighting)
|
||||
[markup.highlight]
|
||||
codeFences = true
|
||||
guessSyntax = true
|
||||
style = "monokai"
|
||||
|
||||
lineNos = true
|
||||
lineNumbersInTable = true
|
||||
# false is a necessary configuration (https://github.com/dillonzq/LoveIt/issues/158)
|
||||
noClasses = false
|
||||
# Goldmark is from Hugo 0.60 the default library used for Markdown
|
||||
[markup.goldmark]
|
||||
[markup.goldmark.extensions]
|
||||
definitionList = true
|
||||
footnote = true
|
||||
linkify = true
|
||||
strikethrough = true
|
||||
table = true
|
||||
taskList = true
|
||||
typographer = true
|
||||
[markup.goldmark.renderer]
|
||||
unsafe= true
|
||||
# whether to use HTML tags directly in the document
|
||||
unsafe = true
|
||||
# Table Of Contents settings
|
||||
[markup.tableOfContents]
|
||||
startLevel = 2
|
||||
endLevel = 6
|
||||
|
|
|
@ -24,11 +24,6 @@ HasCJKLanguage = true
|
|||
tag = "tags"
|
||||
|
||||
[markup]
|
||||
[markup.highlight]
|
||||
codeFences = true
|
||||
guessSyntax = true
|
||||
style = "monokai"
|
||||
|
||||
[markup.goldmark]
|
||||
[markup.goldmark.renderer]
|
||||
unsafe= true
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
---
|
||||
title: Labs Page
|
||||
date: 2019-04-08T15:04:05Z
|
||||
publishdate: 2019-04-08T15:04:05Z
|
||||
---
|
||||
|
||||
まとまった分量の技術的な文章を置くために設置してみました。主に`Javascript`や`CSS`を使った実験ができればいいなと思っています
|
||||
|
||||
|
|
@ -1,399 +0,0 @@
|
|||
---
|
||||
title: Ubuntu インストールの自動化
|
||||
author: kazu634
|
||||
date: 2011-01-02T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Labs
|
||||
- Linux
|
||||
tags:
|
||||
- ubuntu
|
||||
- preseed
|
||||
|
||||
---
|
||||
<div class="section">
|
||||
<p>
|
||||
<a href="http://d.hatena.ne.jp/asin/B004EBH770" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://d.hatena.ne.jp/asin/B004EBH770', 'Software Design');">Software Design</a> で紹介されていたOS構築自動化を試してみました。なお、 <a href="http://d.hatena.ne.jp/asin/B004EBH770" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://d.hatena.ne.jp/asin/B004EBH770', 'Software Design');">Software Design</a> では、 Red Hat Linux の Kickstart の紹介がメインでしたが、ここでは Ubuntu (というかDebian 系)の Preseed の使い方を眺めてみます。ちなみに対象は Ubuntu Server 10.04 です。
|
||||
</p>
|
||||
|
||||
<h4>
|
||||
OS 構築の自動化
|
||||
</h4>
|
||||
|
||||
<p>
|
||||
Ubuntu をインストールする際は、言語・キーボードの設定、ネットワークの設定、パーティーションの設定、インストールするパッケージの設定などを行います。
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<center>
|
||||
</center>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<a href="http://f.hatena.ne.jp/sirocco634/20110102195155" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://f.hatena.ne.jp/sirocco634/20110102195155', '');" class="hatena-fotolife" target="_blank"><img src="http://cdn-ak.f.st-hatena.com/images/fotolife/s/sirocco634/20110102/20110102195155.png" alt="f:id:sirocco634:20110102195155p:image" title="f:id:sirocco634:20110102195155p:image" class="hatena-fotolife" /></a>
|
||||
</p></p>
|
||||
|
||||
<p>
|
||||
それに対して Preseed を用いた場合、各種設定ファイルを事前に準備することで、対話的な応答を自動応答で済ませることができます。
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<center>
|
||||
</center>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<a href="http://f.hatena.ne.jp/sirocco634/20110102195156" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://f.hatena.ne.jp/sirocco634/20110102195156', '');" class="hatena-fotolife" target="_blank"><img src="http://cdn-ak.f.st-hatena.com/images/fotolife/s/sirocco634/20110102/20110102195156.png" alt="f:id:sirocco634:20110102195156p:image" title="f:id:sirocco634:20110102195156p:image" class="hatena-fotolife" /></a>
|
||||
</p></p>
|
||||
|
||||
<p>
|
||||
さらにインストール終了後に、任意のスクリプトを実行することができます。これを行うことで、設定ファイルを書き換えることも可能♪
|
||||
</p>
|
||||
|
||||
<h4>
|
||||
設定ファイル
|
||||
</h4>
|
||||
|
||||
<p>
|
||||
設定ファイルは以下のようになります。ちなみに以下の設定ファイルは
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
タイムゾーンは「Asia/Tokyo」
|
||||
</li>
|
||||
<li>
|
||||
NTP の設定を行う
|
||||
</li>
|
||||
<li>
|
||||
パーティションは「LVM」で、ガイドに任せて出来る限り LVM として使用する
|
||||
</li>
|
||||
<li>
|
||||
作成するユーザーは「kazu634」、パスワードは「simoom634」
|
||||
</li>
|
||||
<li>
|
||||
SSHサーバを導入する
|
||||
</li>
|
||||
<li>
|
||||
Git, SQLite3 を導入する
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<pre class="syntax-highlight">
|
||||
<span class="synComment">#### Contents of the preconfiguration file (for )</span>
|
||||
<span class="synComment">### Mirror settings</span>
|
||||
<span class="synComment"># If you select ftp, the mirror/country string does not need to be set.</span>
|
||||
<span class="synComment">#d-i mirror/protocol string ftp</span>
|
||||
d-i mirror/country string manual
|
||||
d-i mirror/http/hostname string jp.archive.ubuntu.com
|
||||
d-i mirror/http/directory string /ubuntu/
|
||||
d-i mirror/http/proxy string
|
||||
<span class="synComment"># Alternatively: by default, the installer uses CC.archive.ubuntu.com where</span>
|
||||
<span class="synComment"># CC is the ISO-3166-2 code for the selected country. You can preseed this</span>
|
||||
<span class="synComment"># so that it does so without asking.</span>
|
||||
<span class="synComment">#d-i mirror/http/mirror select CC.archive.ubuntu.com</span>
|
||||
<span class="synComment"># Suite to install.</span>
|
||||
<span class="synComment">#d-i mirror/suite string </span>
|
||||
<span class="synComment"># Suite to use for loading installer components (optional).</span>
|
||||
<span class="synComment">#d-i mirror/udeb/suite string </span>
|
||||
<span class="synComment"># Components to use for loading installer components (optional).</span>
|
||||
<span class="synComment">#d-i mirror/udeb/components multiselect main, restricted</span>
|
||||
<span class="synComment">### Clock and time zone setup</span>
|
||||
<span class="synComment"># Controls whether or not the hardware clock is set to UTC.</span>
|
||||
d-i clock-setup/utc boolean true
|
||||
<span class="synComment"># You may set this to any valid setting for $TZ; see the contents of</span>
|
||||
<span class="synComment"># /usr/share/zoneinfo/ for valid values.</span>
|
||||
d-i time/zone string Asia/Tokyo
|
||||
<span class="synComment"># Controls whether to use NTP to set the clock during the install</span>
|
||||
d-i clock-setup/ntp boolean true
|
||||
<span class="synComment"># NTP server to use. The default is almost always fine here.</span>
|
||||
d-i clock-setup/ntp-server string ntp.ubuntu.com
|
||||
<span class="synComment">### Partitioning</span>
|
||||
<span class="synComment"># If the system has free space you can choose to only partition that space.</span>
|
||||
<span class="synComment"># Alternatives: custom, some_device, some_device_crypto, some_device_lvm.</span>
|
||||
<span class="synComment">#d-i partman-auto/init_automatically_partition select biggest_free</span>
|
||||
<span class="synComment"># Alternatively, you can specify a disk to partition. The device name must</span>
|
||||
<span class="synComment"># be given in traditional non-devfs format.</span>
|
||||
<span class="synComment"># Note: A disk must be specified, unless the system has only one disk.</span>
|
||||
<span class="synComment"># For example, to use the first SCSI/SATA hard disk:</span>
|
||||
d-i partman-auto/disk string /dev/sda
|
||||
<span class="synComment"># In addition, you'll need to specify the method to use.</span>
|
||||
<span class="synComment"># The presently available methods are: "regular", "lvm" and "crypto"</span>
|
||||
d-i partman-auto/method string lvm
|
||||
<span class="synComment"># If one of the disks that are going to be automatically partitioned</span>
|
||||
<span class="synComment"># contains an old LVM configuration, the user will normally receive a</span>
|
||||
<span class="synComment"># warning. This can be preseeded away...</span>
|
||||
d-i partman-lvm/device_remove_lvm boolean true
|
||||
<span class="synComment"># The same applies to pre-existing software RAID array:</span>
|
||||
d-i partman-md/device_remove_md boolean true
|
||||
<span class="synComment"># And the same goes for the confirmation to write the lvm partitions.</span>
|
||||
d-i partman-lvm/confirm boolean true
|
||||
<span class="synComment"># For LVM partitioning, you can select how much of the volume group to use</span>
|
||||
<span class="synComment"># for logical volumes.</span>
|
||||
d-i partman-auto-lvm/guided_size string max
|
||||
<span class="synComment">#d-i partman-auto-lvm/guided_size string 10GB</span>
|
||||
<span class="synComment">#d-i partman-auto-lvm/guided_size string 50%</span>
|
||||
<span class="synComment"># You can choose one of the three predefined partitioning recipes:</span>
|
||||
<span class="synComment"># - atomic: all files in one partition</span>
|
||||
<span class="synComment"># - home: separate /home partition</span>
|
||||
<span class="synComment"># - multi: separate /home, /usr, /var, and /tmp partitions</span>
|
||||
d-i partman-auto/choose_recipe select atomic
|
||||
<span class="synComment"># Or provide a recipe of your own...</span>
|
||||
<span class="synComment"># The recipe format is documented in the file devel/partman-auto-recipe.txt.</span>
|
||||
<span class="synComment"># If you have a way to get a recipe file into the d-i environment, you can</span>
|
||||
<span class="synComment"># just point at it.</span>
|
||||
<span class="synComment">#d-i partman-auto/expert_recipe_file string /hd-media/recipe</span>
|
||||
<span class="synComment"># If not, you can put an entire recipe into the preconfiguration file in one</span>
|
||||
<span class="synComment"># (logical) line. This example creates a small /boot partition, suitable</span>
|
||||
<span class="synComment"># swap, and uses the rest of the space for the root partition:</span>
|
||||
<span class="synComment">#d-i partman-auto/expert_recipe string \</span>
|
||||
<span class="synComment"># boot-root :: \</span>
|
||||
<span class="synComment"># 40 50 100 ext3 \</span>
|
||||
<span class="synComment"># $primary{ } $bootable{ } \</span>
|
||||
<span class="synComment"># method{ format } format{ } \</span>
|
||||
<span class="synComment"># use_filesystem{ } filesystem{ ext3 } \</span>
|
||||
<span class="synComment"># mountpoint{ /boot } \</span>
|
||||
<span class="synComment"># . \</span>
|
||||
<span class="synComment"># 500 10000 1000000000 ext3 \</span>
|
||||
<span class="synComment"># method{ format } format{ } \</span>
|
||||
<span class="synComment"># use_filesystem{ } filesystem{ ext3 } \</span>
|
||||
<span class="synComment"># mountpoint{ / } \</span>
|
||||
<span class="synComment"># . \</span>
|
||||
<span class="synComment"># 64 512 300% linux-swap \</span>
|
||||
<span class="synComment"># method{ swap } format{ } \</span>
|
||||
<span class="synComment"># .</span>
|
||||
<span class="synComment"># If you just want to change the default filesystem from ext3 to something</span>
|
||||
<span class="synComment"># else, you can do that without providing a full recipe.</span>
|
||||
<span class="synComment">#d-i partman/default_filesystem string ext4</span>
|
||||
<span class="synComment"># This makes partman automatically partition without confirmation, provided</span>
|
||||
<span class="synComment"># that you told it what to do using one of the methods above.</span>
|
||||
d-i partman/confirm_write_new_label boolean true
|
||||
d-i partman/choose_partition select finish
|
||||
d-i partman/confirm boolean true
|
||||
d-i partman/confirm_nooverwrite boolean true
|
||||
<span class="synComment">### Controlling how partitions are mounted</span>
|
||||
<span class="synComment"># The default is to mount by UUID, but you can also choose "traditional" to</span>
|
||||
<span class="synComment"># use traditional device names, or "label" to try filesystem labels before</span>
|
||||
<span class="synComment"># falling back to UUIDs.</span>
|
||||
<span class="synComment">#d-i partman/mount_style select uuid</span>
|
||||
<span class="synComment">### Base system installation</span>
|
||||
<span class="synComment"># The kernel image (meta) package to be installed; "none" can be used if no</span>
|
||||
<span class="synComment"># kernel is to be installed.</span>
|
||||
d-i base-installer/kernel/image string linux-server
|
||||
<span class="synComment">### Account setup</span>
|
||||
<span class="synComment"># Skip creation of a root account (normal user account will be able to</span>
|
||||
<span class="synComment"># use sudo). The default is false; preseed this to true if you want to set</span>
|
||||
<span class="synComment"># a root password.</span>
|
||||
<span class="synComment">#d-i passwd/root-login boolean false</span>
|
||||
<span class="synComment"># Alternatively, to skip creation of a normal user account.</span>
|
||||
<span class="synComment">#d-i passwd/make-user boolean false</span>
|
||||
<span class="synComment"># Root password, either in clear text</span>
|
||||
<span class="synComment">#d-i passwd/root-password password r00tme</span>
|
||||
<span class="synComment">#d-i passwd/root-password-again password r00tme</span>
|
||||
<span class="synComment"># or encrypted using an MD5 hash.</span>
|
||||
<span class="synComment">#d-i passwd/root-password-crypted password [MD5 hash]</span>
|
||||
<span class="synComment"># To create a normal user account.</span>
|
||||
d-i passwd/user-fullname string Kazuhiro MUSASHI
|
||||
d-i passwd/username string kazu634
|
||||
<span class="synComment"># Normal user's password, either in clear text</span>
|
||||
d-i passwd/user-password password simoom634
|
||||
d-i passwd/user-password-again password simoom634
|
||||
<span class="synComment"># or encrypted using an MD5 hash.</span>
|
||||
<span class="synComment">#d-i passwd/user-password-crypted password [MD5 hash]</span>
|
||||
<span class="synComment"># Create the first user with the specified UID instead of the default.</span>
|
||||
<span class="synComment">#d-i passwd/user-uid string 1010</span>
|
||||
<span class="synComment"># The installer will warn about weak passwords. If you are sure you know</span>
|
||||
<span class="synComment"># what you're doing and want to override it, uncomment this.</span>
|
||||
d-i user-setup/allow-password-weak boolean true
|
||||
<span class="synComment"># The user account will be added to some standard initial groups. To</span>
|
||||
<span class="synComment"># override that, use this.</span>
|
||||
<span class="synComment">#d-i passwd/user-default-groups string audio cdrom video</span>
|
||||
<span class="synComment"># Set to true if you want to encrypt the first user's home directory.</span>
|
||||
d-i user-setup/encrypt-home boolean false
|
||||
<span class="synComment">### Apt setup</span>
|
||||
<span class="synComment"># You can choose to install restricted and universe software, or to install</span>
|
||||
<span class="synComment"># software from the backports repository.</span>
|
||||
<span class="synComment">#d-i apt-setup/restricted boolean true</span>
|
||||
<span class="synComment">#d-i apt-setup/universe boolean true</span>
|
||||
<span class="synComment">#d-i apt-setup/backports boolean true</span>
|
||||
<span class="synComment"># Uncomment this if you don't want to use a network mirror.</span>
|
||||
<span class="synComment">#d-i apt-setup/use_mirror boolean false</span>
|
||||
<span class="synComment"># Select which update services to use; define the mirrors to be used.</span>
|
||||
<span class="synComment"># Values shown below are the normal defaults.</span>
|
||||
<span class="synComment">#d-i apt-setup/services-select multiselect security</span>
|
||||
<span class="synComment">#d-i apt-setup/security_host string security.ubuntu.com</span>
|
||||
<span class="synComment">#d-i apt-setup/security_path string /ubuntu</span>
|
||||
<span class="synComment"># Additional repositories, local[0-9] available</span>
|
||||
<span class="synComment">#d-i apt-setup/local0/repository string \</span>
|
||||
<span class="synComment"># http://local.server/ubuntu main</span>
|
||||
<span class="synComment">#d-i apt-setup/local0/comment string local server</span>
|
||||
<span class="synComment"># Enable deb-src lines</span>
|
||||
<span class="synComment">#d-i apt-setup/local0/source boolean true</span>
|
||||
<span class="synComment"># URL to the public key of the local repository; you must provide a key or</span>
|
||||
<span class="synComment"># apt will complain about the unauthenticated repository and so the</span>
|
||||
<span class="synComment"># sources.list line will be left commented out</span>
|
||||
<span class="synComment">#d-i apt-setup/local0/key string http://local.server/key</span>
|
||||
<span class="synComment"># By default the installer requires that repositories be authenticated</span>
|
||||
<span class="synComment"># using a known gpg key. This setting can be used to disable that</span>
|
||||
<span class="synComment"># authentication. Warning: Insecure, not recommended.</span>
|
||||
<span class="synComment">#d-i debian-installer/allow_unauthenticated string true</span>
|
||||
<span class="synComment">### Package selection</span>
|
||||
tasksel tasksel/first multiselect standard, OpenSSH server
|
||||
<span class="synComment">#tasksel tasksel/first multiselect lamp-server, print-server</span>
|
||||
<span class="synComment">#tasksel tasksel/first multiselect kubuntu-desktop</span>
|
||||
<span class="synComment"># Individual additional packages to install</span>
|
||||
d-i pkgsel/include string build-essential, git-core, unzip, pkg-config, sqlite3, libsqlite3-dev
|
||||
<span class="synComment"># Whether to upgrade packages after debootstrap.</span>
|
||||
<span class="synComment"># Allowed values: none, safe-upgrade, full-upgrade</span>
|
||||
d-i pkgsel/upgrade select safe-upgrade
|
||||
<span class="synComment"># Language pack selection</span>
|
||||
d-i pkgsel/language-packs multiselect
|
||||
<span class="synComment"># Policy for applying updates. May be "none" (no automatic updates),</span>
|
||||
<span class="synComment"># "unattended-upgrades" (install security updates automatically), or</span>
|
||||
<span class="synComment"># "landscape" (manage system with Landscape).</span>
|
||||
d-i pkgsel/update-policy select none
|
||||
<span class="synComment"># Some versions of the installer can report back on what software you have</span>
|
||||
<span class="synComment"># installed, and what software you use. The default is not to report back,</span>
|
||||
<span class="synComment"># but sending reports helps the project determine what software is most</span>
|
||||
<span class="synComment"># popular and include it on CDs.</span>
|
||||
<span class="synComment">#popularity-contest popularity-contest/participate boolean false</span>
|
||||
<span class="synComment"># By default, the system's locate database will be updated after the</span>
|
||||
<span class="synComment"># installer has finished installing most packages. This may take a while, so</span>
|
||||
<span class="synComment"># if you don't want it, you can set this to "false" to turn it off.</span>
|
||||
d-i pkgsel/updatedb boolean false
|
||||
<span class="synComment">### Boot loader installation</span>
|
||||
<span class="synComment"># Grub is the default boot loader (for x86). If you want lilo installed</span>
|
||||
<span class="synComment"># instead, uncomment this:</span>
|
||||
<span class="synComment">#d-i grub-installer/skip boolean true</span>
|
||||
<span class="synComment"># To also skip installing lilo, and install no bootloader, uncomment this</span>
|
||||
<span class="synComment"># too:</span>
|
||||
<span class="synComment">#d-i lilo-installer/skip boolean true</span>
|
||||
<span class="synComment"># This is fairly safe to set, it makes grub install automatically to the MBR</span>
|
||||
<span class="synComment"># if no other operating system is detected on the machine.</span>
|
||||
d-i grub-installer/only_debian boolean true
|
||||
<span class="synComment"># This one makes grub-installer install to the MBR if it also finds some other</span>
|
||||
<span class="synComment"># OS, which is less safe as it might not be able to boot that other OS.</span>
|
||||
d-i grub-installer/with_other_os boolean true
|
||||
<span class="synComment"># Alternatively, if you want to install to a location other than the mbr,</span>
|
||||
<span class="synComment"># uncomment and edit these lines:</span>
|
||||
<span class="synComment">#d-i grub-installer/only_debian boolean false</span>
|
||||
<span class="synComment">#d-i grub-installer/with_other_os boolean false</span>
|
||||
<span class="synComment">#d-i grub-installer/bootdev string (hd0,0)</span>
|
||||
<span class="synComment"># To install grub to multiple disks:</span>
|
||||
<span class="synComment">#d-i grub-installer/bootdev string (hd0,0) (hd1,0) (hd2,0)</span>
|
||||
<span class="synComment"># Optional password for grub, either in clear text</span>
|
||||
<span class="synComment">#d-i grub-installer/password password r00tme</span>
|
||||
<span class="synComment">#d-i grub-installer/password-again password r00tme</span>
|
||||
<span class="synComment"># or encrypted using an MD5 hash, see grub-md5-crypt(8).</span>
|
||||
<span class="synComment">#d-i grub-installer/password-crypted password [MD5 hash]</span>
|
||||
<span class="synComment">### Finishing up the installation</span>
|
||||
<span class="synComment"># During installations from serial console, the regular virtual consoles</span>
|
||||
<span class="synComment"># (VT1-VT6) are normally disabled in /etc/inittab. Uncomment the next</span>
|
||||
<span class="synComment"># line to prevent this.</span>
|
||||
<span class="synComment">#d-i finish-install/keep-consoles boolean true</span>
|
||||
<span class="synComment"># Avoid that last message about the install being complete.</span>
|
||||
d-i finish-install/reboot_in_progress note
|
||||
<span class="synComment"># This will prevent the installer from ejecting the CD during the reboot,</span>
|
||||
<span class="synComment"># which is useful in some situations.</span>
|
||||
<span class="synComment">#d-i cdrom-detect/eject boolean false</span>
|
||||
<span class="synComment"># This is how to make the installer shutdown when finished, but not</span>
|
||||
<span class="synComment"># reboot into the installed system.</span>
|
||||
<span class="synComment">#d-i debian-installer/exit/halt boolean true</span>
|
||||
<span class="synComment"># This will power off the machine instead of just halting it.</span>
|
||||
<span class="synComment">#d-i debian-installer/exit/poweroff boolean true</span>
|
||||
<span class="synComment">### X configuration</span>
|
||||
<span class="synComment"># X can detect the right driver for some cards, but if you're preseeding,</span>
|
||||
<span class="synComment"># you override whatever it chooses. Still, vesa will work most places.</span>
|
||||
<span class="synComment">#xserver-xorg xserver-xorg/config/device/driver select vesa</span>
|
||||
<span class="synComment"># A caveat with mouse autodetection is that if it fails, X will retry it</span>
|
||||
<span class="synComment"># over and over. So if it's preseeded to be done, there is a possibility of</span>
|
||||
<span class="synComment"># an infinite loop if the mouse is not autodetected.</span>
|
||||
<span class="synComment">#xserver-xorg xserver-xorg/autodetect_mouse boolean true</span>
|
||||
<span class="synComment"># Monitor autodetection is recommended.</span>
|
||||
<span class="synComment"># xserver-xorg xserver-xorg/autodetect_monitor boolean true</span>
|
||||
<span class="synComment"># Uncomment if you have an LCD display.</span>
|
||||
<span class="synComment">#xserver-xorg xserver-xorg/config/monitor/lcd boolean true</span>
|
||||
<span class="synComment"># X has three configuration paths for the monitor. Here's how to preseed</span>
|
||||
<span class="synComment"># the "medium" path, which is always available. The "simple" path may not</span>
|
||||
<span class="synComment"># be available, and the "advanced" path asks too many questions.</span>
|
||||
<span class="synComment"># xserver-xorg xserver-xorg/config/monitor/selection-method \</span>
|
||||
<span class="synComment"># select medium</span>
|
||||
<span class="synComment"># xserver-xorg xserver-xorg/config/monitor/mode-list \</span>
|
||||
<span class="synComment"># select 1024x768 @ 60 Hz</span>
|
||||
<span class="synComment">### Preseeding other packages</span>
|
||||
<span class="synComment"># Depending on what software you choose to install, or if things go wrong</span>
|
||||
<span class="synComment"># during the installation process, it's possible that other questions may</span>
|
||||
<span class="synComment"># be asked. You can preseed those too, of course. To get a list of every</span>
|
||||
<span class="synComment"># possible question that could be asked during an install, do an</span>
|
||||
<span class="synComment"># installation, and then run these commands:</span>
|
||||
<span class="synComment"># debconf-get-selections --installer > file</span>
|
||||
<span class="synComment"># debconf-get-selections >> file</span>
|
||||
<span class="synComment">#### Advanced options</span>
|
||||
<span class="synComment">### Running custom commands during the installation</span>
|
||||
<span class="synComment"># d-i preseeding is inherently not secure. Nothing in the installer checks</span>
|
||||
<span class="synComment"># for attempts at buffer overflows or other exploits of the values of a</span>
|
||||
<span class="synComment"># preconfiguration file like this one. Only use preconfiguration files from</span>
|
||||
<span class="synComment"># trusted locations! To drive that home, and because it's generally useful,</span>
|
||||
<span class="synComment"># here's a way to run any shell command you'd like inside the installer,</span>
|
||||
<span class="synComment"># automatically.</span>
|
||||
<span class="synComment"># This first command is run as early as possible, just after</span>
|
||||
<span class="synComment"># preseeding is read.</span>
|
||||
<span class="synComment">#d-i preseed/early_command string anna-install some-udeb</span>
|
||||
<span class="synComment"># This command is run immediately before the partitioner starts. It may be</span>
|
||||
<span class="synComment"># useful to apply dynamic partitioner preseeding that depends on the state</span>
|
||||
<span class="synComment"># of the disks (which may not be visible when preseed/early_command runs).</span>
|
||||
<span class="synComment">#d-i partman/early_command string debconf-set partman-auto/disk "$(list-devices disk | head -n1)"</span>
|
||||
<span class="synComment"># This command is run just before the install finishes, but when there is</span>
|
||||
<span class="synComment"># still a usable /target directory. You can chroot to /target and use it</span>
|
||||
<span class="synComment"># directly, or use the apt-install and in-target commands to easily install</span>
|
||||
<span class="synComment"># packages and run commands in the target system.</span>
|
||||
d-i preseed/late_command string wget http://www3232u.sakura.ne.jp/preseed/preseed.sh -O /target/tmp/preseed.sh; in-target chmod +x /tmp/preseed.sh; in-target /tmp/preseed.sh
|
||||
</pre>
|
||||
|
||||
<h4>
|
||||
インストーラーに設定ファイルを指定する
|
||||
</h4>
|
||||
|
||||
<p>
|
||||
下の画面で F6 キーを押して、
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<center>
|
||||
</center>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<a href="http://f.hatena.ne.jp/sirocco634/20110102175435" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://f.hatena.ne.jp/sirocco634/20110102175435', '');" class="hatena-fotolife" target="_blank"><img src="http://cdn-ak.f.st-hatena.com/images/fotolife/s/sirocco634/20110102/20110102175435.jpg" alt="f:id:sirocco634:20110102175435j:image" title="f:id:sirocco634:20110102175435j:image" class="hatena-fotolife" /></a>
|
||||
</p></p>
|
||||
|
||||
<blockquote>
|
||||
<p>
|
||||
FILE=…
|
||||
</p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
の部分を
|
||||
</p>
|
||||
|
||||
<blockquote>
|
||||
<p>
|
||||
url=http://設定ファイルの在り処
|
||||
</p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
に書き換えます。例えば:
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<center>
|
||||
</center>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<a href="http://f.hatena.ne.jp/sirocco634/20110102175434" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://f.hatena.ne.jp/sirocco634/20110102175434', '');" class="hatena-fotolife" target="_blank"><img src="http://cdn-ak.f.st-hatena.com/images/fotolife/s/sirocco634/20110102/20110102175434.jpg" alt="f:id:sirocco634:20110102175434j:image" title="f:id:sirocco634:20110102175434j:image" class="hatena-fotolife" /></a>
|
||||
</p></p>
|
||||
</div>
|
|
@ -1,21 +0,0 @@
|
|||
---
|
||||
title: 『容疑者 室井慎次』
|
||||
author: kazu634
|
||||
date: 2005-09-22T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Misc
|
||||
tags:
|
||||
- movie
|
||||
|
||||
---
|
||||
<div class="section">
|
||||
<p>
|
||||
読んでいる人の価値観を相対化するのが小説の条件と保坂和志は考えている、と下のエントリーで書いた。そのように書いているうちに、最近観た<a href="http://www.odoru-legend.com/suspect/" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://www.odoru-legend.com/suspect/', '『容疑者 室井慎次』');" target="_blank">『容疑者 室井慎次』</a>でも見ている人の価値観を相対化するような描写が行われていたことに気づいた。
|
||||
</p></p>
|
||||
|
||||
<p>
|
||||
『踊る~』シリーズでは、わくさんと青島刑事といった世代間の交流や、男性と女性といった異なる立場にある人々がどのように感じているのかということを扱った作品であるとも捉えることができる。今回の『室井慎次』でも、田中麗奈演じる新米弁護士と室井さんという世代も性別も異なる二人の価値観というものが同時に提示されていた。<a href="http://www.odoru-legend.com/suspect/" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://www.odoru-legend.com/suspect/', '「室井さんの過去」');" target="_blank">「室井さんの過去」</a>(注意:まだ映画を観ていない人は見ない方がいいです!)の捉え方も、二人の間では異なっていた。同じ事態を目の前にしていても捉え方は異なる、という当たり前のことが当たり前のように提示されているというのは注目すべきことなのではないだろうか。エンターテイメント作品だ何だと言われているけれど、「様々な価値観がこの世の中にはあり、世界は複雑なのだ」ということを多くの人に提示しているということだけを見ても、『踊る~』シリーズはもっと評価されてしかるべきではないだろうか。
|
||||
</p>
|
||||
</div>
|
|
@ -1,117 +0,0 @@
|
|||
---
|
||||
title: 単騎、千里を走る
|
||||
author: kazu634
|
||||
date: 2006-02-07T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Misc
|
||||
tags:
|
||||
- movie
|
||||
---
|
||||
<div class="section">
|
||||
<p>
|
||||
<a href="http://www.tanki-senri.com/" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://www.tanki-senri.com/', '');" target="_blank"><img class="pict" src="https://images-na.ssl-images-amazon.com/images/I/51ZGX3XT0EL.jpg" alt="tanki_senri" width="160" height="177" align="left" border="0" /></a>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
もう二日ぐらい前になりますが、<a href="http://www.tanki-senri.com/" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://www.tanki-senri.com/', '『単騎、千里を走る。』');" target="blank">『単騎、千里を走る。』</a>を観てきました。高倉健主演・<a href="http://ja.wikipedia.org/wiki/%E3%83%81%E3%83%A3%E3%83%B3%E3%83%BB%E3%82%A4%E3%83%BC%E3%83%A2%E3%82%A6" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://ja.wikipedia.org/wiki/%E3%83%81%E3%83%A3%E3%83%B3%E3%83%BB%E3%82%A4%E3%83%BC%E3%83%A2%E3%82%A6', 'チャン・イーモウ');" target="blank">チャン・イーモウ</a>監督作品です。いや、とてもよかったです。
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<small>続きはネタバレ含みそうなので、↓をクリック♪</small>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
||||
</p>
|
||||
|
||||
<p>
|
||||
高倉健演じる主人公が、死に瀕した息子の代わりに中国に向かうというのが大雑把なあらすじ。息子は中国仮面舞踊の研究者で、「単騎、千里を走る」という関羽を扱った芝居をまた観に行くという約束をしていた。だが、息子は末期の肝臓ガンに冒されていた。高倉健演じる父は、息子とここ10年ぐらい疎遠になっていたが、息子との仲を修復したいと考え、中国へ赴く。だが、「単騎、千里を走る」を演じられる役者は犯罪を犯し、牢屋に入っていた。何としても「単騎、千里を走る」をビデオに収め、息子に見せたいと考えた主人公は、様々な人々を動かして、ついに「単騎、千里を走る」の撮影に成功する…というのが、ストーリーの基本ラインになるのかな。
|
||||
</p>
|
||||
|
||||
<p>
|
||||
印象的だったのは、
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
「単騎、千里を走る」を撮影した時点では息子が死んでおり、撮影する意味をなくしていたのだが、主人公は自分のために動いてくれた様々な人の気持ちに答えるために、周囲の人に息子の死を悟らせないようにし、「単騎、千里を走る」を演じるように頼む場面
|
||||
</li>
|
||||
<li>
|
||||
「単騎、千里を走る」の関羽役を演じる役者の息子もまた父親との仲がうまくいっておらず、高倉健演じる主人公が自分の息子とダブらせて関わっていこうとしていき、心を開いてもらう場面
|
||||
</li>
|
||||
<li>
|
||||
時間的に自分の息子が死んだのは、役者の息子と心のふれあいが果たされた頃だということがさりげなく観客に提示される部分
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
こうした主人公を高倉健が渋く演じているわけです。
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
||||
</p>
|
||||
|
||||
<p>
|
||||
この映画を観て強く興味を引きつけられたのは、<a href="http://ja.wikipedia.org/wiki/%E3%83%81%E3%83%A3%E3%83%B3%E3%83%BB%E3%82%A4%E3%83%BC%E3%83%A2%E3%82%A6" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://ja.wikipedia.org/wiki/%E3%83%81%E3%83%A3%E3%83%B3%E3%83%BB%E3%82%A4%E3%83%BC%E3%83%A2%E3%82%A6', 'チャン・イーモウ');" target="blank">チャン・イーモウ</a>監督の映画の作り方でした。自分が専門とする<a href="http://ja.wikipedia.org/wiki/%E3%82%B3%E3%83%B3%E3%83%A9%E3%83%83%E3%83%89" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://ja.wikipedia.org/wiki/%E3%82%B3%E3%83%B3%E3%83%A9%E3%83%83%E3%83%89', 'コンラッド');" target="blank">コンラッド</a>との類似した点がとてもあるように感じました。例えば、
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
コンラッドはポーランド人でありながら、後年イギリスに帰化し、作家としての名声を獲得する。この映画でも、主人公は全く何が話されているのかわからない中国に飛び込み、人々を動かして目的を果たす。
|
||||
</li>
|
||||
<li>
|
||||
コンラッドの作品は一人称の語り手が、自分の主観を前面に押し出して物語を語る。この映画も、高倉健演じる主人公の主観を通した物語が語られている<small>と考えていいと思う</small>。
|
||||
</li>
|
||||
<li>
|
||||
コンラッドの有名作である『闇の奥』・『ロード・ジム』は枠物語<sup>【注1】</sup>である。<a href="http://ja.wikipedia.org/wiki/%E3%83%81%E3%83%A3%E3%83%B3%E3%83%BB%E3%82%A4%E3%83%BC%E3%83%A2%E3%82%A6" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://ja.wikipedia.org/wiki/%E3%83%81%E3%83%A3%E3%83%B3%E3%83%BB%E3%82%A4%E3%83%BC%E3%83%A2%E3%82%A6', 'チャン・イーモウ');" target="blank">チャン・イーモウ</a>も<a href="http://en.wikipedia.org/wiki/Hero_%28film%29" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://en.wikipedia.org/wiki/Hero_%28film%29', '『HERO』');" target="blank">『HERO』</a>で枠物語を映画に移植していると捉えることができる。
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
というところが、自分の専門と重なって面白いと感じました。
|
||||
</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<div class="amazlet-box" style="margin-bottom: 0px;">
|
||||
<div class="amazlet-image" style="float: left; margin: 0px 12px 1px 0px;">
|
||||
<a href="https://www.amazon.co.jp/exec/obidos/ASIN/B000ELGLBW/simsnes-22/ref=nosim/" onclick="__gaTracker('send', 'event', 'outbound-article', 'https://www.amazon.co.jp/exec/obidos/ASIN/B000ELGLBW/simsnes-22/ref=nosim/', '');" target="_blank" name="amazletlink"><img style="border: none;" src="https://images-na.ssl-images-amazon.com/images/I/51ZGX3XT0EL._SL160_.jpg" alt="単騎、千里を走る。 [DVD]" /></a>
|
||||
</div>
|
||||
|
||||
<div class="amazlet-info" style="line-height: 120%; margin-bottom: 10px;">
|
||||
<div class="amazlet-name" style="margin-bottom: 10px; line-height: 120%;">
|
||||
<p>
|
||||
<a href="https://www.amazon.co.jp/exec/obidos/ASIN/B000ELGLBW/simsnes-22/ref=nosim/" onclick="__gaTracker('send', 'event', 'outbound-article', 'https://www.amazon.co.jp/exec/obidos/ASIN/B000ELGLBW/simsnes-22/ref=nosim/', '単騎、千里を走る。 [DVD]');" target="_blank" name="amazletlink">単騎、千里を走る。 [DVD]</a>
|
||||
</p>
|
||||
|
||||
<div class="amazlet-powered-date" style="font-size: 80%; margin-top: 5px; line-height: 120%;">
|
||||
posted with <a href="http://www.amazlet.com/" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://www.amazlet.com/', 'amazlet');" title="amazlet" target="_blank">amazlet</a> at 14.11.23
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="amazlet-detail">
|
||||
東宝 (2006-09-22)<br /> 売り上げランキング: 1,197
|
||||
</div>
|
||||
|
||||
<div class="amazlet-sub-info" style="float: left;">
|
||||
<div class="amazlet-link" style="margin-top: 5px;">
|
||||
<a href="https://www.amazon.co.jp/exec/obidos/ASIN/B000ELGLBW/simsnes-22/ref=nosim/" onclick="__gaTracker('send', 'event', 'outbound-article', 'https://www.amazon.co.jp/exec/obidos/ASIN/B000ELGLBW/simsnes-22/ref=nosim/', 'Amazon.co.jpで詳細を見る');" target="_blank" name="amazletlink">Amazon.co.jpで詳細を見る</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="amazlet-footer" style="clear: left;">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr />
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
注1 – 一つの物語の中に複数の物語を含む小説形式。複数の話者が次々と語る短編の集成として全編が構成されるものをさすが,話者が交替しない《千夜一夜物語》なども枠物語と呼ばれる。西洋では,この形式はルネサンス期の文学に多くみられ,口承文芸から文字文芸への移行や,俗語の散文による小説の成立を示唆するものとして文学史上注目される。その典型的なものはボッカッチョの《デカメロン》で,ペストを避けて郊外の別荘に落ちあった10人の男女が交替で司会役をつとめ,残りの9人が順次物語るという形式のもとに,教訓譚,ロマンス,滑稽譚,艶笑譚等々,多様な短編が集められている。チョーサーの《カンタベリー物語》,マルグリット・ド・ナバールの《エプタメロン》もその好例である。また,ストラパローラの《愛しき夜毎》やバジーレの《お話のお話》はこの形式によって,後世に貴重な民話の集大成をもたらした。近代にもゲーテをはじめ,ケラー,ホフマン,スティーブンソンらの作品に,この形式をとったものがあるが,代表作《カルメン》がそうであるように,とくにメリメはこれを得意とした。枠物語の形式は西欧文学にのみみられるものではなく,物語文学を持つ諸民族の文学に共通に存在するといえよう。日本でも中世の説話や御伽草子などにこの形式がみられるが,たとえば室町期の小説《三人法師》は3人の高野聖のそれぞれの発心譚によって全体が構成される,枠物語のすぐれた小品である。
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
|
@ -1,93 +0,0 @@
|
|||
---
|
||||
title: Gaucheで外部コマンドを実行する
|
||||
date: 2011-09-19T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Labs
|
||||
- Program
|
||||
tags:
|
||||
- gauche
|
||||
- lisp
|
||||
|
||||
---
|
||||
<div class="section">
|
||||
<p>
|
||||
Gaucheで外部コマンドを実行しようとしたのですが、うまく行かなかったのでとりあえずダンプしておきます。
|
||||
</p>
|
||||
|
||||
<h4>
|
||||
やりたいこと
|
||||
</h4>
|
||||
|
||||
<p>
|
||||
外部コマンドをGaucheから実行したい!
|
||||
</p>
|
||||
|
||||
<h4>
|
||||
ここまではわかった
|
||||
</h4>
|
||||
|
||||
<p>
|
||||
Gaucheで外部コマンドを実行する場合は、どうやら run-process というものがあるらしいので、このコマンドを使えばよさそう
|
||||
</p>
|
||||
|
||||
<h4>
|
||||
うまく行かなかったこと
|
||||
</h4>
|
||||
|
||||
<p>
|
||||
次のようなコマンドを実行したかったけれど、実行に失敗した:
|
||||
</p>
|
||||
|
||||
<pre class="syntax-highlight">
|
||||
% virt-<span class="synStatement">install</span> <span class="synSpecial">--name</span> dev1 <span class="synSpecial">--ram</span> <span class="synConstant">512</span> <span class="synSpecial">--disk</span> <span class="synIdentifier">path</span>=<span class="synIdentifier">dev1.img,size</span>=<span class="synConstant">10</span> <span class="synSpecial">--vcpus</span> <span class="synConstant">1</span> <span class="synSpecial">--network</span> <span class="synIdentifier">bridge</span>=<span class="synIdentifier">br0,model</span>=virtio <span class="synSpecial">--graphic</span> <span class="synIdentifier">vnc,listen</span>=<span class="synConstant"></span>.<span class="synConstant"></span>.<span class="synConstant"></span>.<span class="synConstant"></span> <span class="synSpecial">--pxe</span>
|
||||
</pre>
|
||||
|
||||
<p>
|
||||
とりあえず REPL から実行してみます:
|
||||
</p>
|
||||
|
||||
<pre class="syntax-highlight">
|
||||
gosh<span class="synStatement">></span> <span class="synStatement">(</span>use gauche.process<span class="synStatement">)</span>
|
||||
<span class="synComment">#<undef></span>
|
||||
gosh<span class="synStatement">></span> <span class="synStatement">(</span>run-process <span class="synStatement">'</span><span class="synConstant">(virt-install --name dev1 --ram 512 --disk path=dev1.img,size=10 --vcpus 1 --network bridge=br0,model=virtio --graphic vnc,listen=0.0.0.0 --pxe))</span>
|
||||
<span class="synConstant">#<process 1148 "virt-install" active></span>
|
||||
<span class="synConstant">gosh> ERROR Unknown argument </span><span class="synStatement">'</span>,<span class="synIdentifier">size</span>=<span class="synConstant">10</span><span class="synStatement">'</span>
|
||||
</pre>
|
||||
|
||||
<p>
|
||||
なんか上手くいかない。マニュアルにはこんな記述が。。。:
|
||||
</p>
|
||||
|
||||
<blockquote title="404 Not Found" cite="http://practical-scheme.net/gauche/man/gauche-refj_92.html">
|
||||
<p>
|
||||
cmd/argsの各要素は、x->stringで文字列に変換されます。
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<cite><a href="http://practical-scheme.net/gauche/man/gauche-refj_92.html" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://practical-scheme.net/gauche/man/gauche-refj_92.html', 'Gauche ユーザリファレンス: 9.16 gauche.mop.singleton – シングルトン');" target="_blank">Gauche ユーザリファレンス: 9.16 gauche.mop.singleton – シングルトン</a></cite>
|
||||
</p>
|
||||
</blockquote>
|
||||
|
||||
<p>
|
||||
というわけで実験:
|
||||
</p>
|
||||
|
||||
<pre class="syntax-highlight">
|
||||
gosh<span class="synStatement">></span> <span class="synStatement">(</span>x-<span class="synStatement">></span>string <span class="synStatement">'</span><span class="synConstant">(virt-install --name dev1 --ram 512 --disk path=dev1.img,size=10 --vcpus 1 --network bridge=br0,model=virtio --graphic vnc,listen=0.0.0.0 --pxe))</span>
|
||||
<span class="synConstant">"(virt-install --name dev1 --ram 512 --disk path=dev1.img ,size=10 --vcpus 1 --network bridge=br0 ,model=virtio --graphic vnc ,listen=0.0.0.0 --pxe)"</span>
|
||||
</pre>
|
||||
|
||||
<p>
|
||||
あっ、なんか「,」のところにスペースが入っている。。。原因はこれか。
|
||||
</p>
|
||||
|
||||
<h4>
|
||||
さてさて
|
||||
</h4>
|
||||
|
||||
<p>
|
||||
解決策はどうすればいいのだろうか。。。
|
||||
</p>
|
||||
</div>
|
|
@ -1,9 +1,7 @@
|
|||
---
|
||||
title: おとなのひとにいってほしかった24のこと
|
||||
author: kazu634
|
||||
date: 2005-08-25T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
author: kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -0,0 +1,12 @@
|
|||
+++
|
||||
title = "『容疑者 室井慎次』"
|
||||
date = 2005-09-22T15:04:05Z
|
||||
description = ""
|
||||
categories = ["Misc"]
|
||||
author = "kazu634"
|
||||
tags = ["movie"]
|
||||
+++
|
||||
|
||||
読んでいる人の価値観を相対化するのが小説の条件と保坂和志は考えている、と下のエントリーで書いた。そのように書いているうちに、最近観た<a href="http://www.odoru-legend.com/suspect/" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://www.odoru-legend.com/suspect/', '『容疑者 室井慎次』');" target="_blank">『容疑者 室井慎次』</a>でも見ている人の価値観を相対化するような描写が行われていたことに気づいた。
|
||||
|
||||
『踊る~』シリーズでは、わくさんと青島刑事といった世代間の交流や、男性と女性といった異なる立場にある人々がどのように感じているのかということを扱った作品であるとも捉えることができる。今回の『室井慎次』でも、田中麗奈演じる新米弁護士と室井さんという世代も性別も異なる二人の価値観というものが同時に提示されていた。<a href="http://www.odoru-legend.com/suspect/" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://www.odoru-legend.com/suspect/', '「室井さんの過去」');" target="_blank">「室井さんの過去」</a>(注意:まだ映画を観ていない人は見ない方がいいです!)の捉え方も、二人の間では異なっていた。同じ事態を目の前にしていても捉え方は異なる、という当たり前のことが当たり前のように提示されているというのは注目すべきことなのではないだろうか。エンターテイメント作品だ何だと言われているけれど、「様々な価値観がこの世の中にはあり、世界は複雑なのだ」ということを多くの人に提示しているということだけを見ても、『踊る~』シリーズはもっと評価されてしかるべきではないだろうか。
|
|
@ -1,14 +1,11 @@
|
|||
---
|
||||
title: 『踊る大捜査線に学ぶ組織論入門』
|
||||
author: kazu634
|
||||
date: 2005-11-23T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
author: kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
||||
- book
|
||||
|
||||
---
|
||||
<div class="section">
|
||||
<p>
|
|
@ -0,0 +1,63 @@
|
|||
+++
|
||||
title = "単騎、千里を走る"
|
||||
date = 2006-02-07T15:04:05Z
|
||||
description = ""
|
||||
categories = ["Misc"]
|
||||
author = "kazu634"
|
||||
tags = ["movie"]
|
||||
+++
|
||||
|
||||
<a href="http://www.tanki-senri.com/" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://www.tanki-senri.com/', '');" target="_blank"><img class="pict" src="https://images-na.ssl-images-amazon.com/images/I/51ZGX3XT0EL.jpg" alt="tanki_senri" width="160" height="177" align="left" border="0" /></a>
|
||||
|
||||
もう二日ぐらい前になりますが、<a href="http://www.tanki-senri.com/" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://www.tanki-senri.com/', '『単騎、千里を走る。』');" target="blank">『単騎、千里を走る。』</a>を観てきました。高倉健主演・<a href="http://ja.wikipedia.org/wiki/%E3%83%81%E3%83%A3%E3%83%B3%E3%83%BB%E3%82%A4%E3%83%BC%E3%83%A2%E3%82%A6" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://ja.wikipedia.org/wiki/%E3%83%81%E3%83%A3%E3%83%B3%E3%83%BB%E3%82%A4%E3%83%BC%E3%83%A2%E3%82%A6', 'チャン・イーモウ');" target="blank">チャン・イーモウ</a>監督作品です。いや、とてもよかったです。
|
||||
|
||||
高倉健演じる主人公が、死に瀕した息子の代わりに中国に向かうというのが大雑把なあらすじ。息子は中国仮面舞踊の研究者で、「単騎、千里を走る」という関羽を扱った芝居をまた観に行くという約束をしていた。だが、息子は末期の肝臓ガンに冒されていた。高倉健演じる父は、息子とここ10年ぐらい疎遠になっていたが、息子との仲を修復したいと考え、中国へ赴く。だが、「単騎、千里を走る」を演じられる役者は犯罪を犯し、牢屋に入っていた。何としても「単騎、千里を走る」をビデオに収め、息子に見せたいと考えた主人公は、様々な人々を動かして、ついに「単騎、千里を走る」の撮影に成功する…というのが、ストーリーの基本ラインになるのかな。
|
||||
|
||||
印象的だったのは、
|
||||
|
||||
-「単騎、千里を走る」を撮影した時点では息子が死んでおり、撮影する意味をなくしていたのだが、主人公は自分のために動いてくれた様々な人の気持ちに答えるために、周囲の人に息子の死を悟らせないようにし、「単騎、千里を走る」を演じるように頼む場面
|
||||
- 「単騎、千里を走る」の関羽役を演じる役者の息子もまた父親との仲がうまくいっておらず、高倉健演じる主人公が自分の息子とダブらせて関わっていこうとしていき、心を開いてもらう場面
|
||||
- 時間的に自分の息子が死んだのは、役者の息子と心のふれあいが果たされた頃だということがさりげなく観客に提示される部分
|
||||
|
||||
こうした主人公を高倉健が渋く演じているわけです。
|
||||
|
||||
|
||||
この映画を観て強く興味を引きつけられたのは、<a href="http://ja.wikipedia.org/wiki/%E3%83%81%E3%83%A3%E3%83%B3%E3%83%BB%E3%82%A4%E3%83%BC%E3%83%A2%E3%82%A6" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://ja.wikipedia.org/wiki/%E3%83%81%E3%83%A3%E3%83%B3%E3%83%BB%E3%82%A4%E3%83%BC%E3%83%A2%E3%82%A6', 'チャン・イーモウ');" target="blank">チャン・イーモウ</a>監督の映画の作り方でした。自分が専門とする<a href="http://ja.wikipedia.org/wiki/%E3%82%B3%E3%83%B3%E3%83%A9%E3%83%83%E3%83%89" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://ja.wikipedia.org/wiki/%E3%82%B3%E3%83%B3%E3%83%A9%E3%83%83%E3%83%89', 'コンラッド');" target="blank">コンラッド</a>との類似した点がとてもあるように感じました。例えば、
|
||||
|
||||
- コンラッドはポーランド人でありながら、後年イギリスに帰化し、作家としての名声を獲得する。この映画でも、主人公は全く何が話されているのかわからない中国に飛び込み、人々を動かして目的を果たす。
|
||||
- コンラッドの作品は一人称の語り手が、自分の主観を前面に押し出して物語を語る。この映画も、高倉健演じる主人公の主観を通した物語が語られている<small>と考えていいと思う</small>。
|
||||
- コンラッドの有名作である『闇の奥』・『ロード・ジム』は枠物語<sup>【注1】</sup>である。<a href="http://ja.wikipedia.org/wiki/%E3%83%81%E3%83%A3%E3%83%B3%E3%83%BB%E3%82%A4%E3%83%BC%E3%83%A2%E3%82%A6" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://ja.wikipedia.org/wiki/%E3%83%81%E3%83%A3%E3%83%B3%E3%83%BB%E3%82%A4%E3%83%BC%E3%83%A2%E3%82%A6', 'チャン・イーモウ');" target="blank">チャン・イーモウ</a>も<a href="http://en.wikipedia.org/wiki/Hero_%28film%29" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://en.wikipedia.org/wiki/Hero_%28film%29', '『HERO』');" target="blank">『HERO』</a>で枠物語を映画に移植していると捉えることができる。
|
||||
|
||||
というところが、自分の専門と重なって面白いと感じました。
|
||||
|
||||
<hr />
|
||||
<div class="amazlet-box" style="margin-bottom: 0px;">
|
||||
<div class="amazlet-image" style="float: left; margin: 0px 12px 1px 0px;">
|
||||
<a href="https://www.amazon.co.jp/exec/obidos/ASIN/B000ELGLBW/simsnes-22/ref=nosim/" onclick="__gaTracker('send', 'event', 'outbound-article', 'https://www.amazon.co.jp/exec/obidos/ASIN/B000ELGLBW/simsnes-22/ref=nosim/', '');" target="_blank" name="amazletlink"><img style="border: none;" src="https://images-na.ssl-images-amazon.com/images/I/51ZGX3XT0EL._SL160_.jpg" alt="単騎、千里を走る。 [DVD]" /></a>
|
||||
</div>
|
||||
|
||||
<div class="amazlet-info" style="line-height: 120%; margin-bottom: 10px;">
|
||||
<div class="amazlet-name" style="margin-bottom: 10px; line-height: 120%;">
|
||||
<p>
|
||||
<a href="https://www.amazon.co.jp/exec/obidos/ASIN/B000ELGLBW/simsnes-22/ref=nosim/" onclick="__gaTracker('send', 'event', 'outbound-article', 'https://www.amazon.co.jp/exec/obidos/ASIN/B000ELGLBW/simsnes-22/ref=nosim/', '単騎、千里を走る。 [DVD]');" target="_blank" name="amazletlink">単騎、千里を走る。 [DVD]</a>
|
||||
</p>
|
||||
|
||||
<div class="amazlet-powered-date" style="font-size: 80%; margin-top: 5px; line-height: 120%;">
|
||||
posted with <a href="http://www.amazlet.com/" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://www.amazlet.com/', 'amazlet');" title="amazlet" target="_blank">amazlet</a> at 14.11.23
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="amazlet-detail">
|
||||
東宝 (2006-09-22)<br /> 売り上げランキング: 1,197
|
||||
</div>
|
||||
|
||||
<div class="amazlet-sub-info" style="float: left;">
|
||||
<div class="amazlet-link" style="margin-top: 5px;">
|
||||
<a href="https://www.amazon.co.jp/exec/obidos/ASIN/B000ELGLBW/simsnes-22/ref=nosim/" onclick="__gaTracker('send', 'event', 'outbound-article', 'https://www.amazon.co.jp/exec/obidos/ASIN/B000ELGLBW/simsnes-22/ref=nosim/', 'Amazon.co.jpで詳細を見る');" target="_blank" name="amazletlink">Amazon.co.jpで詳細を見る</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="amazlet-footer" style="clear: left;">
|
||||
</div>
|
||||
</div>
|
|
@ -1,14 +1,11 @@
|
|||
---
|
||||
title: ”The Hardest Lessons for Startups to Learn”で気になった部分
|
||||
author: kazu634
|
||||
date: 2006-05-06T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
author: kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
||||
- book
|
||||
|
||||
---
|
||||
<div class="section">
|
||||
<p>
|
|
@ -1,13 +1,11 @@
|
|||
---
|
||||
title: ミュージカル・big
|
||||
date: 2006-09-03T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
author: kazu634
|
||||
categories:
|
||||
- Misc
|
||||
tags:
|
||||
- musical
|
||||
|
||||
---
|
||||
<div class="section">
|
||||
<p>
|
|
@ -1,14 +1,11 @@
|
|||
---
|
||||
title: 敗者とは負けるのが悪いことだと思っている人である
|
||||
author: kazu634
|
||||
date: 2006-12-10T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
author: kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
||||
- book
|
||||
|
||||
---
|
||||
<div class="section">
|
||||
<p>
|
|
@ -1,15 +1,12 @@
|
|||
---
|
||||
title: これが高倉健という男である
|
||||
author: kazu634
|
||||
date: 2007-01-20T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
author: kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
||||
- book
|
||||
- 高倉健
|
||||
|
||||
---
|
||||
<div class="section">
|
||||
<p>
|
|
@ -2,13 +2,10 @@
|
|||
title: ローマ人の物語 1より
|
||||
author: kazu634
|
||||
date: 2007-02-11T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
||||
- book
|
||||
|
||||
---
|
||||
<div class="section">
|
||||
<p>
|
|
@ -2,13 +2,10 @@
|
|||
title: 『ローマ人の物語 2』
|
||||
author: kazu634
|
||||
date: 2007-02-12T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
||||
- book
|
||||
|
||||
---
|
||||
<div class="section">
|
||||
<p>
|
|
@ -1,9 +1,7 @@
|
|||
---
|
||||
title: UNIX Philosophyメモ
|
||||
author: kazu634
|
||||
date: 2007-08-12T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
author: kazu634
|
||||
categories:
|
||||
- Labs
|
||||
- Misc
|
|
@ -2,8 +2,6 @@
|
|||
title: 疲れたなら、休めばよい。道を間違えたなら、戻ればよい。
|
||||
author: kazu634
|
||||
date: 2007-09-09T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,13 +2,10 @@
|
|||
title: 「こんなもんでいい」と思いながらつくられた物は、それを手にする人の存在を否定する
|
||||
author: kazu634
|
||||
date: 2007-10-26T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
||||
- book
|
||||
|
||||
---
|
||||
<div class="section">
|
||||
<p>
|
|
@ -2,13 +2,10 @@
|
|||
title: 「時代の変わり目」を意識していちばん気をつけなければならないのは、優等生たちだ。
|
||||
author: kazu634
|
||||
date: 2007-11-11T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
||||
- book
|
||||
|
||||
---
|
||||
<div class="section">
|
||||
<p>
|
|
@ -1,14 +1,12 @@
|
|||
---
|
||||
title: 2007年度東北英文学会@山形
|
||||
date: 2007-11-19T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
author: kazu634
|
||||
categories:
|
||||
- Misc
|
||||
tags:
|
||||
- yamagata
|
||||
- english literature
|
||||
|
||||
---
|
||||
<div class="section">
|
||||
<p>
|
|
@ -2,8 +2,6 @@
|
|||
title: 『弓と禅』
|
||||
author: kazu634
|
||||
date: 2007-11-23T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,13 +2,10 @@
|
|||
title: 自分の哲学をもたないといけない。政治的な意見、人生で訴えるべき主義、人生の情熱と目標。
|
||||
author: kazu634
|
||||
date: 2007-11-24T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
||||
- book
|
||||
|
||||
---
|
||||
<div class="section">
|
||||
<p>
|
|
@ -2,8 +2,6 @@
|
|||
title: Sexyな問いに触れられないのは残念かもしれない
|
||||
author: kazu634
|
||||
date: 2007-11-25T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,13 +2,10 @@
|
|||
title: 自分も強度のあるメッセージを発信したい
|
||||
author: kazu634
|
||||
date: 2007-11-28T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
||||
- book
|
||||
|
||||
---
|
||||
<div class="section">
|
||||
<p>
|
|
@ -2,13 +2,10 @@
|
|||
title: ルールを学ぶのはルール違反をするためだ!
|
||||
author: kazu634
|
||||
date: 2007-12-06T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
||||
- book
|
||||
|
||||
---
|
||||
<div class="section">
|
||||
<p>
|
|
@ -2,13 +2,10 @@
|
|||
title: 『非属の才能 (光文社新書)』で気になった部分
|
||||
author: kazu634
|
||||
date: 2007-12-24T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
||||
- book
|
||||
|
||||
---
|
||||
<div class="section">
|
||||
<p>
|
|
@ -2,13 +2,10 @@
|
|||
title: 道具に振り回されずに
|
||||
author: kazu634
|
||||
date: 2007-12-24T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
||||
- book
|
||||
|
||||
---
|
||||
<div class="section">
|
||||
<p>
|
|
@ -2,8 +2,6 @@
|
|||
title: ここら辺、同感
|
||||
author: kazu634
|
||||
date: 2007-12-29T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,13 +2,10 @@
|
|||
title: 研究者としての資質
|
||||
author: kazu634
|
||||
date: 2007-12-31T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
||||
- book
|
||||
|
||||
---
|
||||
<div class="section">
|
||||
<p>
|
|
@ -2,8 +2,6 @@
|
|||
title: 『ガルシアへの手紙』
|
||||
author: kazu634
|
||||
date: 2008-01-13T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 就職する理由
|
||||
author: kazu634
|
||||
date: 2008-01-14T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: これも強烈だな
|
||||
author: kazu634
|
||||
date: 2008-01-14T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 我々は変化の激しい世界に生きている?
|
||||
author: kazu634
|
||||
date: 2008-01-20T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 前提を常に疑え!
|
||||
author: kazu634
|
||||
date: 2008-01-21T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: なんか凄い納得した
|
||||
author: kazu634
|
||||
date: 2008-01-22T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 『数学でつまずくのはなぜか (講談社現代新書)』
|
||||
author: kazu634
|
||||
date: 2008-01-26T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -1,13 +1,11 @@
|
|||
---
|
||||
title: 映画・『シルク』
|
||||
date: 2008-01-28T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
author: kazu634
|
||||
categories:
|
||||
- Misc
|
||||
tags:
|
||||
- movie
|
||||
|
||||
---
|
||||
<div class="section">
|
||||
<p>
|
|
@ -2,8 +2,6 @@
|
|||
title: 基本を知らなければ痛い目に遭う!
|
||||
author: kazu634
|
||||
date: 2008-02-10T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: こいつは最恐のアドバイスだ
|
||||
author: kazu634
|
||||
date: 2008-02-16T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 土台をきちんと築いていこう!
|
||||
author: kazu634
|
||||
date: 2008-02-18T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 'Paul Graham: Six Principles for Making New Things'
|
||||
author: kazu634
|
||||
date: 2008-02-25T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 気になった文章
|
||||
author: kazu634
|
||||
date: 2008-03-12T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 気になった文章
|
||||
author: kazu634
|
||||
date: 2008-03-12T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -1,8 +1,7 @@
|
|||
---
|
||||
title: サン・テグジュペリが撃墜されていたことが確認される
|
||||
date: 2008-03-17T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
author: kazu634
|
||||
categories:
|
||||
- Misc
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 現実はこうなのだろう…こんな努力も必要。でも良いものを作っていきたいな
|
||||
author: kazu634
|
||||
date: 2008-03-20T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: コモディティにはなるな
|
||||
author: kazu634
|
||||
date: 2008-04-16T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: その人が何をやっているのかをきちんと見ること
|
||||
author: kazu634
|
||||
date: 2008-04-16T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 本気で怒る人、本気で喜ぶ人
|
||||
author: kazu634
|
||||
date: 2008-04-25T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: Jobsの言葉
|
||||
author: kazu634
|
||||
date: 2008-04-26T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 『宮大工の人育て (祥伝社新書 104)』
|
||||
author: kazu634
|
||||
date: 2008-04-30T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 気になった文章
|
||||
author: kazu634
|
||||
date: 2008-05-16T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 他人の視線を意識する
|
||||
author: kazu634
|
||||
date: 2008-05-24T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 汗をかく人
|
||||
author: kazu634
|
||||
date: 2008-05-31T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 人は誰でも
|
||||
author: kazu634
|
||||
date: 2008-06-11T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 謙虚さとか
|
||||
author: kazu634
|
||||
date: 2008-06-14T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: やるべきことはやれるときにやる
|
||||
author: kazu634
|
||||
date: 2008-06-20T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -1,13 +1,11 @@
|
|||
---
|
||||
title: 「絵の力 – 延長された顔」のサマリー
|
||||
date: 2008-06-22T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
author: kazu634
|
||||
categories:
|
||||
- Misc
|
||||
tags:
|
||||
- seminar
|
||||
|
||||
---
|
||||
<div class="section">
|
||||
<p>
|
|
@ -2,8 +2,6 @@
|
|||
title: インフラ認定されちゃうと…
|
||||
author: kazu634
|
||||
date: 2008-07-05T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: The Last Lectureを読んで気になった部分(暫定的)
|
||||
author: kazu634
|
||||
date: 2008-07-13T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: The Last Lectureで気になった部分
|
||||
author: kazu634
|
||||
date: 2008-07-29T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -1,13 +1,11 @@
|
|||
---
|
||||
title: 『夜と星と風の物語』@Theatre1010を観てきた
|
||||
date: 2008-08-02T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
author: kazu634
|
||||
categories:
|
||||
- Misc
|
||||
tags:
|
||||
- movie
|
||||
|
||||
---
|
||||
<div class="section">
|
||||
<p>
|
|
@ -2,8 +2,6 @@
|
|||
title: 『数学ガール フェルマーの最終定理 (数学ガールシリーズ 2)』で気になった部分
|
||||
author: kazu634
|
||||
date: 2008-08-09T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 『BEST SOFTWARE WRITING』を読んで気になった部分
|
||||
author: kazu634
|
||||
date: 2008-08-28T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 学びについて
|
||||
author: kazu634
|
||||
date: 2008-09-15T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 『下流志向──学ばない子どもたち、働かない若者たち』で気になった部分
|
||||
author: kazu634
|
||||
date: 2008-09-15T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 気になった文章
|
||||
author: kazu634
|
||||
date: 2008-09-21T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 根性だけは負けません
|
||||
author: kazu634
|
||||
date: 2008-09-25T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: Pressure is a fuel!
|
||||
author: kazu634
|
||||
date: 2008-09-28T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: Working smart involves identifying the things you need to do …
|
||||
author: kazu634
|
||||
date: 2008-09-28T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 気になった言葉
|
||||
author: kazu634
|
||||
date: 2008-10-06T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 「証拠」の時代
|
||||
author: kazu634
|
||||
date: 2008-10-12T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: '『Sports Graphic Number (スポーツ・グラフィック ナンバー) 2008年 10/30号 [雑誌]』で気になった部分'
|
||||
author: kazu634
|
||||
date: 2008-10-26T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 『下流志向──学ばない子どもたち、働かない若者たち』で気になった部分
|
||||
author: kazu634
|
||||
date: 2008-10-26T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 気になったところ
|
||||
author: kazu634
|
||||
date: 2008-11-01T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: '『Sports Graphic Number (スポーツ・グラフィック ナンバー) 2008年 11/13号 [雑誌]』で気になった部分'
|
||||
author: kazu634
|
||||
date: 2008-11-08T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 「暇人\(^o^)/速報 年齢を重ねてわかったこと」から気になった部分
|
||||
author: kazu634
|
||||
date: 2008-11-20T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: '『Sports Graphic Number (スポーツ・グラフィック ナンバー) 2008年 12/11号 [雑誌]』で気になった部分'
|
||||
author: kazu634
|
||||
date: 2008-11-29T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: どんだけアカポスって恐ろしいんだ…
|
||||
author: kazu634
|
||||
date: 2008-11-29T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 専門家のあり方
|
||||
author: kazu634
|
||||
date: 2008-12-01T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 『やる気のスイッチ! (Sanctuary books)』で気になった部分
|
||||
author: kazu634
|
||||
date: 2008-12-01T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 気になった部分
|
||||
author: kazu634
|
||||
date: 2008-12-05T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: あるアドバイスが効力を発揮するには適切な段階というものがあるんだよ
|
||||
author: kazu634
|
||||
date: 2008-12-05T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: The best in the world simplify complex subjects!
|
||||
author: kazu634
|
||||
date: 2008-12-07T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: ノートにうまくまとめることができる人は、頭の中も理路整然と整理されている
|
||||
author: kazu634
|
||||
date: 2008-12-11T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: エンジニアリングができる人はエンジニアの気持ちにしかなれない
|
||||
author: kazu634
|
||||
date: 2008-12-11T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 失敗しないで成功したやつなんているの?
|
||||
author: kazu634
|
||||
date: 2008-12-13T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: ちょっとしたものに将来の可能性を感じるのも、子供の特徴だ。
|
||||
author: kazu634
|
||||
date: 2008-12-13T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: Education is about opening doors for people and showing them rooms that that would otherwise be hidden.
|
||||
author: kazu634
|
||||
date: 2008-12-13T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: Stop acting as if life is a rehersal.
|
||||
author: kazu634
|
||||
date: 2008-12-13T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 綺麗な答え
|
||||
author: kazu634
|
||||
date: 2008-12-14T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 'BRUTUS (ブルータス) 2009年 1/15号 [雑誌]で気になった部分'
|
||||
author: kazu634
|
||||
date: 2008-12-20T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 'Sports Graphic Number (スポーツ・グラフィック ナンバー) 2008年 12/25号 [雑誌]で気になった部分'
|
||||
author: kazu634
|
||||
date: 2008-12-20T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -1,13 +1,11 @@
|
|||
---
|
||||
title: ロードバイク、買っちゃいました
|
||||
date: 2009-01-04T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
author: kazu634
|
||||
categories:
|
||||
- Misc
|
||||
tags:
|
||||
- cycling
|
||||
|
||||
---
|
||||
<div class="section">
|
||||
<p>
|
|
@ -2,8 +2,6 @@
|
|||
title: 『はたらきたい。』
|
||||
author: kazu634
|
||||
date: 2009-02-07T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: '『Sports Graphic Number (スポーツ・グラフィック ナンバー) 2009年 2/19号 [雑誌]』よりオシムのインタビュー記事'
|
||||
author: kazu634
|
||||
date: 2009-02-11T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: Successful people aren’t people who conquered fear, they’re people who faced fear.
|
||||
author: kazu634
|
||||
date: 2009-02-14T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
|
@ -2,8 +2,6 @@
|
|||
title: 『選び抜く力 (角川oneテーマ21)』
|
||||
author: kazu634
|
||||
date: 2009-03-21T15:04:05Z
|
||||
author:
|
||||
- kazu634
|
||||
categories:
|
||||
- Quotes
|
||||
tags:
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue