<?xml version="1.0" encoding="utf-8" ?> 
<rdf:RDF
   xmlns="http://purl.org/rss/1.0/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xml:lang="ja">
  <channel rdf:about="http://nagi2u.blogtribe.org/">
  <title>_Crawl::...</title>
  <link>http://nagi2u.blogtribe.org/</link>
  <description>セキュリティとか。好きな事を気ままに。</description>
  <dc:language>ja-jp</dc:language>
  <items>
  <rdf:Seq>
		<rdf:li rdf:resource="http://nagi2u.blogtribe.org/entry-61a50b8dec86b260cbe83bdd60859f3b.html"/>
		<rdf:li rdf:resource="http://nagi2u.blogtribe.org/entry-3d134fd7a931c06f952519c6a5a78f67.html"/>
		<rdf:li rdf:resource="http://nagi2u.blogtribe.org/entry-921cf4beff2375c51936050a740d70a5.html"/>
		<rdf:li rdf:resource="http://nagi2u.blogtribe.org/entry-f4a9a68018d89b299250551018183b10.html"/>
		<rdf:li rdf:resource="http://nagi2u.blogtribe.org/entry-8578811f7680bfec0fcb89665954b13c.html"/>
		<rdf:li rdf:resource="http://nagi2u.blogtribe.org/entry-0ee688563ac1f5179ab92f4e68c7036b.html"/>
		<rdf:li rdf:resource="http://nagi2u.blogtribe.org/entry-38e2f5587bb13cab25a3b8001254b442.html"/>
		<rdf:li rdf:resource="http://nagi2u.blogtribe.org/entry-4cbeca4a0bf7e02b3b8d5cc4f763b7c3.html"/>
		<rdf:li rdf:resource="http://nagi2u.blogtribe.org/entry-94d3f64bfcfc87d1addef3e6f1913352.html"/>
		<rdf:li rdf:resource="http://nagi2u.blogtribe.org/entry-be187c81a72c7594d1c3896a6964618b.html"/>
   </rdf:Seq>
  </items>
 </channel>
  <item rdf:about="http://nagi2u.blogtribe.org/entry-61a50b8dec86b260cbe83bdd60859f3b.html">
  <title>Firefox vs. Sylera</title>
  <link>http://nagi2u.blogtribe.org/entry-61a50b8dec86b260cbe83bdd60859f3b.html</link>
  <description>今日、久しぶりに Firefox を落としてインストールしてみた。
んー、もっさりx3。
これじゃダメだぁ...。
つかね、マウスジェスチャはデフォでしょ？

Syleraの軽快さや痒いところへの細やかな配慮、これは一度味わってしまうと抜け出せないね。
気掛かりなのは、開発者のいずみ氏本人の情熱が失せたのか、ここ半年以上開発が進んでいないって事。

冗談抜きで、ソースを公開すれば活路を見いだせるんじゃないかと思うんだけど。
信者が暴動を起こす前に、ね。</description>
	<dc:creator>nagi2u</dc:creator>
  <dc:date>2008-09-05T21:42:00+09:00</dc:date> 
 </item>
  <item rdf:about="http://nagi2u.blogtribe.org/entry-3d134fd7a931c06f952519c6a5a78f67.html">
  <title>Syleraの高速化 etc.</title>
  <link>http://nagi2u.blogtribe.org/entry-3d134fd7a931c06f952519c6a5a78f67.html</link>
  <description>弱強度暗号の制限やネットワーク接続の高速化、アクセス解析回避など。


以下の設定ファイルを [user.js] として保存。
↓
[ドライブ名] :\Documents and Settings\ [ユーザ名] \Application Data\sylera\Profiles\default\ [********] .slt 配下に配置。

以上です。
なお、この設定はMozilla系の他ブラウザでも流用可能です。


//弱強度暗号の制限
user_pref("security.enable_ssl2", false);
user_pref("security.ssl2.des_64", false);
user_pref("security.ssl2.rc2_128", false);
user_pref("security.ssl2.rc2_40", false);
user_pref("security.ssl2.rc4_128", false);
user_pref("security.ssl2.rc4_40", false);
user_pref("security.ssl3.dhe_dss_des_sha", false);
user_pref("security.ssl3.dhe_rsa_des_sha", false);
user_pref("security.ssl3.rsa_1024_des_cbc_sha", false);
user_pref("security.ssl3.rsa_1024_rc4_56_sha", false);
user_pref("security.ssl3.rsa_des_sha", false);
user_pref("security.ssl3.rsa_fips_des_sha", false);
user_pref("security.ssl3.rsa_rc2_40_md5", false);
user_pref("security.ssl3.rsa_rc4_40_md5", false);
//以下、イーバンク対応
user_pref("security.ssl3.rsa_rc4_128_md5", true);
user_pref("security.ssl3.rsa_rc4_128_sha", true);

//ネットワーク接続の高速化
user_pref("network.http.pipelining", true);
user_pref("network.http.pipelining.firstrequest", true);
user_pref("network.http.proxy.pipelining", true);
user_pref("network.http.pipelining.maxrequests", 8);
user_pref("network.http.max-connections", 8);
user_pref("network.http.max-connections-per-server", 8);
user_pref("network.http.max-persistent-connections-per-proxy", 8);
user_pref("network.http.max-persistent-connections-per-server", 8);


//スクロール関係
user_pref("mousewheel.withnokey.sysnumlines", false);
user_pref("mousewheel.withnokey.numlines", 6);
user_pref("general.smoothScroll", false);

//リファラ送信
user_pref("network.http.sendRefererHeader", 0);

//画像非表示時にAlt属性を表示
user_pref("browser.display.force_inline_alttext", true);

//右クリック禁止を回避
user_pref("nglayout.events.dipatchLeftClickOnly", true);

//アクセス解析除け(不要な場合はコメントアウトする)
user_pref("capability.policy.default.Window.navigator", "noAccess");
user_pref("capability.policy.default.Location.hash.set", "noAccess");
user_pref("capability.policy.default.Screen.availHeight", "noAccess");
user_pref("capability.policy.default.Screen.availWidth", "noAccess");
user_pref("capability.policy.default.Screen.colorDepth", "noAccess");
user_pref("capability.policy.default.Screen.height", "noAccess");
user_pref("capability.policy.default.Screen.width", "noAccess");
user_pref("capability.policy.default.Screen.pixelDepth", "noAccess");
</description>
	<dc:creator>nagi2u</dc:creator>
  <dc:date>2008-09-03T22:33:00+09:00</dc:date> 
 </item>
  <item rdf:about="http://nagi2u.blogtribe.org/entry-921cf4beff2375c51936050a740d70a5.html">
  <title>Syleraのタブ周り</title>
  <link>http://nagi2u.blogtribe.org/entry-921cf4beff2375c51936050a740d70a5.html</link>
  <description>Sylera使いの方は非常に少ないと思いますけど、私の設定を公開します。
改変はご自由にどうぞ。


以下の設定ファイルを [guicolor.user] として保存。
↓
[ドライブ名] :\Documents and Settings\ [ユーザ名] \Application Data\sylera\Profiles\default\ [********] .slt\sylrskin\default 配下に配置。


以上です。



#ActiveText   = 255, 255, 255
#ActiveBG     = 200, 50, 50
#ActiveBorder = 0, 0, 0
#MouseDownBG  = 200, 200, 200
#DeactiveText = 255, 255, 255
#DeactiveBG   = 100, 100, 100
</description>
	<dc:creator>nagi2u</dc:creator>
  <dc:date>2008-09-03T22:20:00+09:00</dc:date> 
 </item>
  <item rdf:about="http://nagi2u.blogtribe.org/entry-f4a9a68018d89b299250551018183b10.html">
  <title>Win2K の高速化 etc.</title>
  <link>http://nagi2u.blogtribe.org/entry-f4a9a68018d89b299250551018183b10.html</link>
  <description>数年前から私が使っている Windows2000 用のレジストリデータを公開。

今さら 2k かよ、といった煽りは禁止の方向で。

なお、レジ弄りについては当の本人が既に飽きていますのであしからず。

XPやVistaへの適用はなさらないほうが吉。
"At your own risk"


Windows Registry Editor Version 5.00


[HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\Copy To]
""="{C2FBB630-2971-11D1-A18C-00C04FD75D13}"

[HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\Move To]
""="{C2FBB631-2971-11D1-A18C-00C04FD75D13}"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management]
"DisablePagingExecutive"=dword:1
"IoPageLockLimit"=dword:200000
"LargeSystemCache"=dword:0

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E96A-E325-11CE-BFC1-08002BE10318}\0000]
"EnableUDMA66"=dword:1

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E96A-E325-11CE-BFC1-08002BE10318}\0001]
"MasterDeviceTimingMode"=dword:10010

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl]
"AutoReboot"=dword:1

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\PriorityControl]
"Win32PrioritySeparation"=dword:10
"IRQ8Priority"=dword:2

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Update]
"UpdateMode"=dword:0

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Executive]
"AdditionalCriticalWorkerThreads"=dword:5
"AdditionalDelayedWorkerThreads"=dword:3

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\AFD\Parameters]
"DefaultReceiveWindow"=dword:0000ffff
"DefaultSendWindow"=dword:0000ffff

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters]
"AutoShareWks"=dword:0

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Cdrom]
"AutoRun"=dword:0

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system]
"SynchronousMachineGroupPolicy"=dword:0
"SynchronousUserGroupPolicy"=dword:0

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer]
"Max Cached Icons"="1024"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa]
"restrictanonymous"=dword:2

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\NoLMHash]
""=""

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer]
"DesktopProcess"=dword:1
"Max Cached Icons"="1024"
"link"=hex:00,00,00,00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoRecentDocsHistory"=dword:1
"NoNetHood"=dword:1
"NoInstrumentation"=dword:1
"NoDesktop"=dword:1

[HKEY_CURRENT_USER\Control Panel\Desktop]
"HungAppTimeout"="4000"
"WaitToKillAppTimeout"="4000"
"AutoEndTasks"="1"
"MenuShowDelay"="100"

[HKEY_USERS\.DEFAULT\Control Panel\colors]
"Background"="00 00 00"

[HKEY_USERS\.DEFAULT\Control Panel\Input Method]
"Show Status"="0"
</description>
	<dc:creator>nagi2u</dc:creator>
  <dc:date>2008-09-03T21:50:00+09:00</dc:date> 
 </item>
  <item rdf:about="http://nagi2u.blogtribe.org/entry-8578811f7680bfec0fcb89665954b13c.html">
  <title>チンパン遁走</title>
  <link>http://nagi2u.blogtribe.org/entry-8578811f7680bfec0fcb89665954b13c.html</link>
  <description>チンパンと揶揄され、皆様から親しまれていた福田首相が今夜、ついに辞意を表明しました。



で、問題は誰が後釜かってことなんだけど、過去に「売国奴.jp」だっけか？
そんな感じのドメインからの転送対象になっていた谷のつく人とか、怪しげな連中を利するような事態に陥らないよう願っております。

ここはひとつ、日韓海底 トンネルは要らないけど、ローゼン閣下に立ち上がって欲しいなw



いや、冗談抜きで。
</description>
	<dc:creator>nagi2u</dc:creator>
  <dc:date>2008-09-01T22:55:00+09:00</dc:date> 
 </item>
  <item rdf:about="http://nagi2u.blogtribe.org/entry-0ee688563ac1f5179ab92f4e68c7036b.html">
  <title>NJK Record [Crimson Glory]</title>
  <link>http://nagi2u.blogtribe.org/entry-0ee688563ac1f5179ab92f4e68c7036b.html</link>
  <description>ここ数日、さゆり嬢関連でここに辿り着いている方が多いようなので、既出承知で彼女が全ボーカルを担当している同人アルバムを紹介。

 [[http://project.dojin.com/njk/rec/rec.htm]]

01・PLAY〜Introduction〜　[*]
02・Concierge of Dream　[*]
03・Little Lady　[*]
04・Imitation No.xxx 〜Introduction〜　
05・Imitation　[*]
06・Last Dance Again　[*]
07・Crimson 〜Introduction〜
08・Crimson Glory　[*]
09・Sweets Time Midnight　[*]
10・No Continue　[*]


オクでの高値はほぼ確定なので、在庫切れになる前に入手しておくべきだと思う。
ちなみに、過去にリリースされた彼女絡みの同人CDは、軒並み高値維持で手を出す気になれない。
欲しいけどねー、転売厨を喜ばせたくないので。


にこみみを使えば、とりあえず40曲くらいなら入手できる。
でもねー、気にいったらやっぱ買いましょ。
同人CDは安いからお買い得だよ。
</description>
	<dc:creator>nagi2u</dc:creator>
  <dc:date>2008-09-01T22:20:00+09:00</dc:date> 
 </item>
  <item rdf:about="http://nagi2u.blogtribe.org/entry-38e2f5587bb13cab25a3b8001254b442.html">
  <title>健康ヲタクの戯言</title>
  <link>http://nagi2u.blogtribe.org/entry-38e2f5587bb13cab25a3b8001254b442.html</link>
  <description>環境ホルモン (外因性内分泌攪乱化学物質) 関連の調べ物をしてると、この国がいかに企業寄りで国民の健康を蔑ろにしているかがよーく分かる。
有機塩素系化合物の閾値は非常に甘く、付随する可塑剤の危険性についての広報も殆どなされていない現実。
対策の進んだヨーロッパ諸国と比較すると、じつに情けない。

CO2問題と平行して実施すべき重要課題を回避し続ける事は、長期的に見れば国益を大きく損ねると思うんだよね。
政治屋も役人屋も売国にばかり向かわず、少しは国家の為に働け。
いや、冗談抜きで。</description>
	<dc:creator>nagi2u</dc:creator>
  <dc:date>2008-08-25T22:11:00+09:00</dc:date> 
 </item>
  <item rdf:about="http://nagi2u.blogtribe.org/entry-4cbeca4a0bf7e02b3b8d5cc4f763b7c3.html">
  <title>nicomimi - にこみみ -</title>
  <link>http://nagi2u.blogtribe.org/entry-4cbeca4a0bf7e02b3b8d5cc4f763b7c3.html</link>
  <description>ニコ動で知った謎のボーカリスト、安保さゆり (3L、あんぽりん、悠 杏李、Unknown-Poly) さんの参加したアルバムについて調べているうちに、もせ欲しさでこんなサイトを知りました。



いやー、これは便利すぎ。
色々落としてますます気に入ったので、アマゾンでぽちっとな。


Secret Garden　-anporin*s-



2008.8.25　追記

ついでですので、動画丸ごと落とせるサイトを紹介。

・Vid-DL
・KeepVid
・zoomeダウンローダ

これだけあれば、とりあえず足りるでしょ。</description>
	<dc:creator>nagi2u</dc:creator>
  <dc:date>2008-08-24T00:08:00+09:00</dc:date> 
 </item>
  <item rdf:about="http://nagi2u.blogtribe.org/entry-94d3f64bfcfc87d1addef3e6f1913352.html">
  <title>業者乙、と言わせて戴きますわ</title>
  <link>http://nagi2u.blogtribe.org/entry-94d3f64bfcfc87d1addef3e6f1913352.html</link>
  <description>皮膚炎関連の情報を調べていると、いるねーw
アトピービジネスやらの業者、乙。

経皮毒についての誤った情報を悪意を以てばらまいて、高価な石鹸商品を売りさばいたり。
ま、私はコールドプロセスの石鹸好きですけどね。
あくまでも好みの話。

ネットの普及で情報の価値が下落したかに思えた時期もあったけど、それもリテラシー次第でどうにでも化けるからなぁ。
検索ノイズ増加の背景、何をか況わんやである。</description>
	<dc:creator>nagi2u</dc:creator>
  <dc:date>2008-08-21T23:33:00+09:00</dc:date> 
 </item>
  <item rdf:about="http://nagi2u.blogtribe.org/entry-be187c81a72c7594d1c3896a6964618b.html">
  <title>ロクシタンのシアバター</title>
  <link>http://nagi2u.blogtribe.org/entry-be187c81a72c7594d1c3896a6964618b.html</link>
  <description>知人から譲り受けたロクシタンのピュアシアバター。
管理状態が悪かったのか元からなのか定かではないけど、とにかく独特のかほりがする。
いやー、これは顔に使えないでしょ。


で、いろいろと調べてみたら、やっぱ管理状態が悪く酸化していたようです。
未精製カリテ(シア)バターはそれなりに香るそうですけど、精製済のロクシタン製品は匂わないとの事。
ロクシタンファンの方、購入は信用できる店舗でどうぞ。
あと、頻繁に蓋を開閉しないよう、使用量に応じた製品を購入するよろし。



以下、参照サイト。

・シアバター (Wikipedia)
・the　Making of 佐々木薫ハーブ紀行 (シアバターレシピ)
・マリに行こう！　アフリカだいちー音・人・おどる 「貧困者（？）サミット」


ちなみに、ロクシタンよりもよさげなカリテバターのサプライヤも見つけています。
秘密ですけど。
・http://keinz.co.jp/hanbaishea.html
・http://africakobo.com/default.aspx
・http://www.herbsachet.com/but_sheabuttervg.htm



2008.8.23　追記

管理状態の良い物を入手したので感想をば。
ほのかなバタ臭さというのかなぁ、上半身への利用は控えたほうが良いかも。
角質化したカカト辺りのケアにでも使うのが吉。</description>
	<dc:creator>nagi2u</dc:creator>
  <dc:date>2008-08-05T23:35:00+09:00</dc:date> 
 </item>
</rdf:RDF>