Panther日記
過去の遺産ということで。
散乱してるけど。
BuckNumber
2008年6月4日(水) gnuplotで近似曲線
あまり使う機会がなかったけど、プロットをとりあえず滑らかに表示する。
plot 'file' smooth csplines
省略型
p 'file' s c
2008年6月11日(水) lenny覚え書き
apt-get install xserver-xorg-core
だけだとstartxが無いので、
apt-get install xinit xterm
を加える。
昔はxserver-xorg-coreだけで全部入ってた気がするんだけどなあ
2008年6月12日(木) lennyの時計合わせ
lennyにntpdateがなかった。
ntpdもないので、openntpdを入れる。
sudo apt-get install openntpd
/etc/openntpd/ntpd.confに使用するサーバを書き込む。
sudo /usr/sbin/ntpd -d -f /etc/openntpd/ntpd.conf
で時計合わせ。
2008年6月19日(木) texで多段組み
documentclassのオプションにtwocolumnと入れると、すべて二段組みになってしまう。
該当箇所だけ二段組みする場合、プリアンブルに
\usepackage{multicol}
二段組みする場所で
\begin{multicols}{2}
内容
\end{multicols}
とする。
figureが使えないので、図を貼る時は、プリアンブルに
\usepackage{graphicx}
\makeatletter
\newcommand{\figcaption}[1]{\def\@captype{figure}\caption{#1}}
\makeatother
図を入れるところで、
\begin{minipage}{0.45\textwidth}
\includegraphics[width=\textwidth]{がぞうふぁいる}
\figcaption{きゃぷしょん}
\end{minipage}
等とする。
2008年6月20日(金) Firefoxでpdf
MacのFirefoxはintelになってからpdfをブラウザ上で表示できなかった。
Firefox3では、
firefox-mac-pdfというアドオンがあります。
2008年6月27日(金) iPhone/iPod touchの振り分け
.htaccessで振り分け。
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} iPhone [NC,OR]
RewriteCond %{HTTP_USER_AGENT} iPod [NC]
RewriteRule ^(.*)$ http://mole.rc.kyushu-u.ac.jp/~ykarino/i/ [R,L]
みたいにして、ユーザーエージェントにiPhone、iPodの文字があると/i/のページに送るようにする。
ちなみに今のユーザーエージェントは
Mozilla/5.0 (iPhone; U; CPU like Mac OS X; en) AppleWebKit/420+ (KHTML, like Gecko) Version/3.0 Mobile/1A543a Safari/419.3
Mozilla/5.0 (iPod; U; CPU like Mac OS X; ja-jp) AppleWebKit/420.1 (KHTML, like Gecko) Version/3.0 Mobile/3A110a Safari/419.3
らしい。
実機がないのでUser Agent Switcherでテスト。