私設資料室のメモ
メモ
私設資料室のトップへ
ここは資料収集のための覚書用ページです
最新の記事から20件の記事を表示しています。
123: sh: 2010年3月10日(水) 1時56分54秒
!/bin/bash
foo=test
function quit {
exit
}
function hello {
echo Hello!
}
echo $foo
hello
quit
echo $foo
122: teltel: 2010年3月8日(月) 1時29分59秒
xinetd がubuntuには入ってない。
121: windows でwait: 2010年3月5日(金) 22時13分58秒
120: awk複数ファイルオープンのサンプル: 2010年3月5日(金) 20時52分46秒
BEGIN {
FS ="\t";
title_filename = "";
text_filename = "";
count = 0;
ID = 1;
}
{
if ((substr($0,1,2) == "[[") && (substr($0,length($0)-1,2) == "]]")) {
count++;
title_filename = count"-title.txt";
printf("%s\n", $0) > title_filename;
close(title_filename);
if (count > 0) {
close(text_filename);
}
text_filename = ID"-"count"-text.txt";
}
else {
if (text_filename !="") {
printf("%s\n", $0) > text_filename;
}
}
}
119: 精霊ナッ信仰: 2010年3月5日(金) 19時37分11秒
118: bit: 2010年3月5日(金) 18時36分13秒
#include <stdio.h>
int
main(int argc, char **argv)
{
int a;
int b;
a = 1;
b = a << 1;
b = a << 4;
printf("a=%d:b=%d\n", a, b);
b = b >> 4;
printf("a=%d:b=%d\n", a, b);
return 0;
}
117: こんなの: 2010年3月5日(金) 5時43分36秒
116: IE キャッシュ取得: 2010年3月4日(木) 21時20分17秒
115: ruby OAuth: 2010年3月3日(水) 15時26分43秒
114: 英語: 2010年3月3日(水) 4時22分5秒
113: online-em: 2010年3月3日(水) 0時11分43秒
112: 64bitawk: 2010年2月26日(金) 3時55分18秒
EGIN {
d1 = 786554;
d2 = 328;
printf("%d%07d\n", d1, d2);
d1 = 786554;
d2 = 544321;
printf("%d%07d\n", d1, d2);
}
111: wiki2txt: 2010年2月11日(木) 2時15分34秒
110: ¥¥¥: 2010年2月9日(火) 19時40分2秒
5C A5問題をどうするか・・・
109: event vs tree: 2010年2月4日(木) 18時33分50秒
108: escape: 2010年2月3日(水) 6時7分34秒
char = unescaped /
escape (
%x22 / ; " quotation mark U+0022(二重引用符)
%x5C / ; \ reverse solidus U+005C(バックスラッシュ)
%x2F / ; / solidus U+002F(スラッシュ)
%x62 / ; b backspace U+0008(バックスペース)
%x66 / ; f form feed U+000C(改ページ)
%x6E / ; n line feed U+000A(改行)
%x72 / ; r carriage return U+000D(復帰)
%x74 / ; t tab U+0009(タブ)
%x75 4HEXDIG ) ; uXXXX U+XXXX(16進法表記)
107: automake: 2010年1月22日(金) 11時40分28秒
106: sphinx: 2010年1月22日(金) 11時34分28秒
105: utf-8: 2010年1月20日(水) 20時36分40秒
chcp 65001
104: utf-8: 2010年1月20日(水) 20時26分9秒
reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Console\TrueTypeFont" /v "000" /t "REG_SZ" /d "MS UI Gothic"
前の20件の記事へ
私設資料室のトップへ
TKENSAKU top へ