<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:knowledge="http://knowledge.livedoor.com/-/spec/1.0/" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">
<channel>
<language>ja-jp</language>
<title>livedoor ナレッジ - GE</title>
<link>http://knowledge.livedoor.com/rss/tag/GE</link>
<pubDate>Mon, 07 Dec 2009 10:50:19 +0900</pubDate>
<lastBuildDate>Mon, 10 Jul 2006 19:56:14 +0900</lastBuildDate>
<generator>http://knowledge.livedoor.com/</generator>
<description>livedoor knowledge - GE</description>
<copyright>Copyright 1996- livedoor Co.,Ltd.</copyright>
<image>
    <title>livedoor knowledge</title>
    <url>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</url>
    <link>http://knowledge.livedoor.com</link>
    <width>43</width>
    <height>43</height>
</image>
<openSearch:totalResults>19</openSearch:totalResults>
<openSearch:startIndex>1</openSearch:startIndex>
<openSearch:itemsPerPage>15</openSearch:itemsPerPage>
<item>
    <title>ibm00001.exe run dialog</title>
    <link>http://knowledge.livedoor.com/9756</link>
    <description>ibm00001.exe run dialog
間違ってタイプされているか、他のオープンプログラムのシステムファイルがみつかりません。
と、起動するたびに表示されてくる、
ヴィルス駆除もできず、どうしたら解決できるのか

regeditもためしてみたが、ＲＵＮにＳｈｅｌｌがない。別にShellはあるeXPLORERはない。

ちなみにわたしは、WINDOWS MEです。</description>
    <pubDate>Mon, 10 Jul 2006 19:56:14 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/9756</guid>
    <author>のぶちゃん</author>
    <category domain="http://knowledge.livedoor.com/category/101008002">ウイルス対策</category>
    <knowledge:feed type="question">
        <knowledge:authorId>9777</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/9777</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>1</knowledge:answers>
        <knowledge:closed label="解決済">Fri, 14 Jul 2006 20:13:46 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>関数をまとめたいです</title>
    <link>http://knowledge.livedoor.com/6698</link>
    <description>関数をまとめたいです
function underline(){
	if(document.all){ //IE
		var str=document.selection.createRange().text;
		if (str != &amp;quot;&amp;quot;) {
			document.selection.createRange().text=&amp;quot;&amp;lt;u&amp;gt;&amp;quot; + str + &amp;quot;&amp;lt;/u&amp;gt;&amp;quot;;
		} else {
			document.form1.CBBE_TEXT.value += &amp;quot;&amp;lt;u&amp;gt;&amp;lt;/u&amp;gt;&amp;quot;
		}
	} else { //Firefox
		var el=document.getElementById(&amp;apos;text&amp;apos;);
		var sPos	=	el.selectionStart;
		var ePos	=	el.selectionEnd;
		var str		=	el.value.substring(sPos, ePos);
		el.value	=	el.value.substring(0, sPos) +
		&amp;quot;&amp;lt;u&amp;gt;&amp;quot; + str + &amp;quot;&amp;lt;/u&amp;gt;&amp;quot; +	el.value.substr(ePos);
	}
}
と
function green(){
	if(document.all){ //IE
		var str=document.selection.createRange().text;
		if (str != &amp;quot;&amp;quot;) {
			document.selection.createRange().text=&amp;quot;&amp;lt;font color=\&amp;quot;#009900\&amp;quot;&amp;gt;&amp;quot; + str + &amp;quot;&amp;lt;/font&amp;gt;&amp;quot;;
		} else {
			document.form1.CBBE_TEXT.value += &amp;quot;&amp;lt;font color=\&amp;quot;#009900\&amp;quot;&amp;gt;&amp;lt;/font&amp;gt;&amp;quot;
		}
	} else { //Firefox
		var el=document.getElementById(&amp;apos;text&amp;apos;);
		var sPos	=	el.selectionStart;
		var ePos	=	el.selectionEnd;
		var str		=	el.value.substring(sPos, ePos);
		el.value	=	el.value.substring(0, sPos) +
		&amp;quot;&amp;lt;font color=\&amp;quot;#009900\&amp;quot;&amp;gt;&amp;quot; + str + &amp;quot;&amp;lt;/font&amp;gt;&amp;quot; +	el.value.substr(ePos);
	}
}
をひとつの関数にまとめることは出来ないでしょうか？
教えてください

</description>
    <pubDate>Mon, 15 May 2006 18:57:07 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/6698</guid>
    <author>ciao</author>
    <category domain="http://knowledge.livedoor.com/category/101006005">JavaScript</category>
    <knowledge:feed type="question">
        <knowledge:authorId>6679</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/6679</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>1</knowledge:answers>
        <knowledge:closed label="解決済">Mon, 05 Jun 2006 16:30:30 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>関数化の方法を教えてください</title>
    <link>http://knowledge.livedoor.com/6692</link>
    <description>関数化の方法を教えてください
function bold(){
if(document.all){ //IE
var str=document.selection.createRange().text;
if (str != &amp;quot;&amp;quot;) {
document.selection.createRange().text=&amp;quot;&amp;lt;b&amp;gt;&amp;quot; + str + &amp;quot;&amp;lt;/b&amp;gt;&amp;quot;;
} else {
document.form1.CBBE_TEXT.value += &amp;quot;&amp;lt;b&amp;gt;&amp;lt;/b&amp;gt;&amp;quot;
}
} else { //Firefox
var el=document.getElementById(&amp;apos;text&amp;apos;);
var sPos = el.selectionStart;
var ePos = el.selectionEnd;
var str = el.value.substring(sPos, ePos);
el.value = el.value.substring(0, sPos) +
&amp;quot;&amp;lt;b&amp;gt;&amp;quot; + str + &amp;quot;&amp;lt;/b&amp;gt;&amp;quot; + el.value.substr(ePos);
}
}

function italic(){
if(document.all){ //IE
var str=document.selection.createRange().text;
if (str != &amp;quot;&amp;quot;) {
document.selection.createRange().text=&amp;quot;&amp;lt;i&amp;gt;&amp;quot; + str + &amp;quot;&amp;lt;/i&amp;gt;&amp;quot;;
} else {
document.form1.CBBE_TEXT.value += &amp;quot;&amp;lt;i&amp;gt;&amp;lt;/i&amp;gt;&amp;quot;
}
} else { //Firefox
var el=document.getElementById(&amp;apos;text&amp;apos;);
var sPos = el.selectionStart;
var ePos = el.selectionEnd;
var str = el.value.substring(sPos, ePos);
el.value = el.value.substring(0, sPos) +
&amp;quot;&amp;lt;i&amp;gt;&amp;quot; + str + &amp;quot;&amp;lt;/i&amp;gt;&amp;quot; + el.value.substr(ePos);
}
}
を
&amp;lt;input type=&amp;quot;button&amp;quot; value=&amp;quot;太字&amp;quot; onclick=&amp;quot;bold()&amp;quot;&amp;gt;
&amp;lt;input type=&amp;quot;button&amp;quot; value=&amp;quot;斜字&amp;quot; onclick=&amp;quot;italic()&amp;quot;&amp;gt;
で制御しています。
上の2つの関数をまとめて1種類の関数化できませんか？</description>
    <pubDate>Mon, 15 May 2006 17:29:52 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/6692</guid>
    <author>ciao</author>
    <category domain="http://knowledge.livedoor.com/category/101006005">JavaScript</category>
    <knowledge:feed type="question">
        <knowledge:authorId>6679</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/6679</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>1</knowledge:answers>
        <knowledge:closed label="解決済">Mon, 15 May 2006 18:53:49 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>誰のサインかわかりませんか？ http://page4.auctions.yahoo.co.jp/jp/auction/d61599855</title>
    <link>http://knowledge.livedoor.com/5631</link>
    <description>誰のサインかわかりませんか？
http://page4.auctions.yahoo.co.jp/jp/auction/d61599855
</description>
    <pubDate>Sun, 30 Apr 2006 00:27:07 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/5631</guid>
    <author>ハナハ</author>
    <category domain="http://knowledge.livedoor.com/category/111009">歴史</category>
    <knowledge:feed type="question">
        <knowledge:authorId>5539</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/5539</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>2</knowledge:answers>
        <knowledge:closed label="解決済">Sun, 30 Apr 2006 01:14:09 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>コメント欄にこんなものがきました･･･ちょっとキレ気味なので怖いのですが初心者なので何なのかわかりません。</title>
    <link>http://knowledge.livedoor.com/5602</link>
    <description>コメント欄にこんなものがきました･･･ちょっとキレ気味なので怖いのですが初心者なので何なのかわかりません。
1. Posted by 状況確認？    2006年04月29日 13:28
 　 
危険！　　　　DANGER 　　危険！
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿

緊急連絡です！なんどもお知らせしているはずです。
見ていない方、または届いていない方は、現在のブログ状況の
確認をおこなってください。至急、更新をよろしくお願いいた
します。
　
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿

　　　　　　　 ご確認ＵＲＬ（更新用）
　　　
　　　　　　 http://jjoj8klllssspiou-jjk.dyndns.biz　

　　　　　　　　　　　　　　見れない方
（↑のをコピーして、アドレスの方に貼り付けてください　

</description>
    <pubDate>Sat, 29 Apr 2006 13:37:32 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/5602</guid>
    <author>じゅん</author>
    <category domain="http://knowledge.livedoor.com/category/114002">livedoorブログ</category>
    <knowledge:feed type="question">
        <knowledge:authorId>5429</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/5429</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>8</knowledge:answers>
        <knowledge:closed label="お蔵入り">Tue, 30 May 2006 06:10:02 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>ブログの謎のコメントについて質問です</title>
    <link>http://knowledge.livedoor.com/5555</link>
    <description>ブログの謎のコメントについて質問です
私のブログのコメントに以下のようなものが多数投稿されるのですが、無視してよいのですよね？？


2. Posted by 状況確認？    2006年04月28日 20:52
 　 
危険！　　　　DANGER 　　危険！
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿

緊急連絡です！なんどもお知らせしているはずです。
見ていない方、または届いていない方は、現在のブログ状況の
確認をおこなってください。至急、更新をよろしくお願いいた
します。
　
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿

　　　　　　　 ご確認ＵＲＬ（更新用）
　　　
　　　　　　 http://kapukonvssnk.is-a-geek.net　　

　　　　　　　　　　　　　　見れない方
（↑のをコピーして、アドレスの方に貼り付けてください　

</description>
    <pubDate>Sat, 29 Apr 2006 01:06:12 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/5555</guid>
    <author>ぷりんす</author>
    <category domain="http://knowledge.livedoor.com/category/101012001">ブログ</category>
    <knowledge:feed type="question">
        <knowledge:authorId>5471</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/5471</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>2</knowledge:answers>
        <knowledge:closed label="解決済">Sun, 30 Apr 2006 02:49:07 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>　お尋ねがあります。　数日来より　下記の様な〔コメント〕が　頻繁に入って来ます。　これは〔何〕？</title>
    <link>http://knowledge.livedoor.com/5490</link>
    <description>　お尋ねがあります。　数日来より　下記の様な〔コメント〕が　頻繁に入って来ます。　これは〔何〕？
　お尋ねがあります。　数日来より　下記の様な〔コメント〕が　頻繁に入って来ます。　これは〔何〕？
なんでしょうか、お教えくだされば有難いのですが、
　宜しく御願い致します。
   　- - - - - - - - - - -    - - - - - - - - - - -

投稿者　　　　　〔状況確認？〕
メ－ルアドレス　aakiika@hotmail.co.jp
　ＵＲＬ　　　　http://skilyuritesss.is-a-geek.net
ＩＰアドレス　　　〔61.44.85.147〕　　　　　　　　　

≪内容≫
　 
       危険！　　　　DANGER     　　危険！
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿

緊急連絡です！なんどもお知らせしているはずです。
見ていない方、または届いていない方は、現在のブログ状況の
確認をおこなってください。至急、更新をよろしくお願いいた
します。
　
＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿

　　　　　　　 ご確認ＵＲＬ（更新用）
　　　
　　　　　　  http://skilyuritesss.is-a-geek.net

　　　　　　　　　　　　　　見れない方
（↑のをコピーして、アドレスの方に貼り付けてください
　＝＝＝＝　＝＝＝＝　＝＝＝＝　＝＝＝＝
　　　　　　と云った内容です。</description>
    <pubDate>Fri, 28 Apr 2006 00:23:31 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/5490</guid>
    <author>のたまう</author>
    <category domain="http://knowledge.livedoor.com/category/101007009">ブログ</category>
    <knowledge:feed type="question">
        <knowledge:authorId>5013</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/5013</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>2</knowledge:answers>
        <knowledge:closed label="解決済">Fri, 28 Apr 2006 01:15:39 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>スクリプト（？）を入力したいのですが どうすればいいのですか？</title>
    <link>http://knowledge.livedoor.com/3889</link>
    <description>スクリプト（？）を入力したいのですが
どうすればいいのですか？
&amp;lt;script language=&amp;quot;JavaScript&amp;quot; src=&amp;quot;http://otoframe.sonymusic.co.jp/of/js/0603/06031012C9E4-C0A1-11DA-B2EE-FD742FED1BB7.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
というスクリプト（？）をホームページに入れたいのですがどうすればいいのですか？</description>
    <pubDate>Fri, 31 Mar 2006 20:08:33 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/3889</guid>
    <author>凱</author>
    <category domain="http://knowledge.livedoor.com/category/113">悩み</category>
    <knowledge:feed type="question">
        <knowledge:authorId>3544</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/3544</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>1</knowledge:answers>
        <knowledge:closed label="お蔵入り">Mon, 01 May 2006 06:10:07 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>大阪府は朝鮮人(外国籍教員)ばかり雇って何する気なんでしょう？</title>
    <link>http://knowledge.livedoor.com/3783</link>
    <description>大阪府は朝鮮人(外国籍教員)ばかり雇って何する気なんでしょう？
ネタもとの記事
http://mindan.org/shinbun/news_bk_view.php?page=1&amp;amp;subpage=1941&amp;amp;corner=2

で、大阪府が雇った奴らがしている事↓↓↓
http://www.geocities.jp/example1jp/001korea.jpg
そもそも、朝鮮人(外国籍)が何で日本での教員になのでしょう？明らかに大問題だと思う。

</description>
    <pubDate>Thu, 30 Mar 2006 10:57:54 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/3783</guid>
    <author>STRANGER</author>
    <category domain="http://knowledge.livedoor.com/category/109001007">近畿</category>
    <knowledge:feed type="question">
        <knowledge:authorId>32</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/32</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>4</knowledge:answers>
        <knowledge:closed label="お蔵入り">Sun, 30 Apr 2006 06:10:01 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>point系列のアウトレットの場所を教えてください。</title>
    <link>http://knowledge.livedoor.com/3530</link>
    <description>point系列のアウトレットの場所を教えてください。
HARE,rage blueなどの店があるpointのアウトレットがどこにあるか教えてください。特に東京にあるかどうかが知りたいです。</description>
    <pubDate>Sun, 26 Mar 2006 17:46:43 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/3530</guid>
    <author></author>
    <category domain="http://knowledge.livedoor.com/category/105007005">メンズファッション</category>
    <knowledge:feed type="question">
        <knowledge:authorId>3235</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/3235</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>0</knowledge:answers>
        <knowledge:closed label="お蔵入り">Wed, 26 Apr 2006 06:10:03 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>これってやりすぎ？ここまでする必要があるの？</title>
    <link>http://knowledge.livedoor.com/3383</link>
    <description>これってやりすぎ？ここまでする必要があるの？
http://answers.yahoo.com/_ylc=X3oDMTEycW5hc3E3BF9TAzI3MTYxNDkEc2VjA2ZwLXNyY2hib3gEc2xrA2xpbms-/

この話題について見ていないのであえて聞きます。
Livedoorさん、ここまでパクル必要があるの？
こういうのって何も問題ないの？


既出でしたらすみません。



</description>
    <pubDate>Fri, 24 Mar 2006 14:41:17 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/3383</guid>
    <author>chiebukuro_sukikosan_</author>
    <category domain="http://knowledge.livedoor.com/category/114003">livedoorナレッジ</category>
    <knowledge:feed type="question">
        <knowledge:authorId>477</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/477</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>3</knowledge:answers>
        <knowledge:closed label="解決済">Fri, 31 Mar 2006 17:41:44 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>左右のサイドバーを広げたい</title>
    <link>http://knowledge.livedoor.com/3095</link>
    <description>左右のサイドバーを広げたい
http://wiki.livedoor.jp/everydaydesign/d/FrontPage
↑のサイトを見て本文の幅は広がったんですけど、サイドバーの幅の広げ方がわかりません
どうやればいいのでしょうか？
ちなみにデザインはＬipuid piano　です
自分のブログはhttp://blog.livedoor.jp/puhro1/?blog_id=1491380です
回答お願いしますｍ（＿　＿）ｍ</description>
    <pubDate>Mon, 20 Mar 2006 17:11:06 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/3095</guid>
    <author>puhro</author>
    <category domain="http://knowledge.livedoor.com/category/114002">livedoorブログ</category>
    <knowledge:feed type="question">
        <knowledge:authorId>2997</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/2997</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>3</knowledge:answers>
        <knowledge:closed label="解決済">Wed, 22 Mar 2006 15:46:44 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>MacOSでおすすめのウイルス対策ソフトを教えてください。</title>
    <link>http://knowledge.livedoor.com/2791</link>
    <description>MacOSでおすすめのウイルス対策ソフトを教えてください。
OSはMac OS X v10.4 Tigerです。
特に予算等はありませんが、1万円以下又はフリーだと嬉しいです。</description>
    <pubDate>Wed, 15 Mar 2006 17:10:42 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/2791</guid>
    <author>　</author>
    <category domain="http://knowledge.livedoor.com/category/101008002">ウイルス対策</category>
    <knowledge:feed type="question">
        <knowledge:authorId>762</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/762</knowledge:authorLink>
        <knowledge:authorIcon>http://image.profile.livedoor.jp/icon/g7zs_60.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://image.profile.livedoor.jp/icon/g7zs_60.gif</knowledge:authorThumbnail>
        <knowledge:answers>3</knowledge:answers>
        <knowledge:closed label="解決済">Thu, 16 Mar 2006 20:01:34 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>荒川静香の金メダル獲得が決まった瞬間に変なオッサンが現れましたが誰でしょうか？</title>
    <link>http://knowledge.livedoor.com/2229</link>
    <description>荒川静香の金メダル獲得が決まった瞬間に変なオッサンが現れましたが誰でしょうか？
以下の画像の人物は誰でしょうか？

http://www.geocities.jp/example1jp/stranger.jpg

明らかに荒川静香は嫌がって、逃げる体制に入っていました。
変質者でしょうか？</description>
    <pubDate>Wed, 08 Mar 2006 16:41:07 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/2229</guid>
    <author>STRANGER</author>
    <category domain="http://knowledge.livedoor.com/category/110001003">その他</category>
    <knowledge:feed type="question">
        <knowledge:authorId>32</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/32</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>3</knowledge:answers>
        <knowledge:closed label="お蔵入り">Sat, 08 Apr 2006 06:10:01 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>Flash Getの駆除方法教えて下さい</title>
    <link>http://knowledge.livedoor.com/2203</link>
    <description>Flash Getの駆除方法教えて下さい
パソコン歴２年にして「トロイの木馬』をインストールする羽目となりました。只今の所どうやら「アドオンの管理」で（無効）とはなってますが駆除する方法が解りません。ご教示戴きたく存じます。</description>
    <pubDate>Wed, 08 Mar 2006 11:41:38 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/2203</guid>
    <author>ﾍﾞﾚｰ3</author>
    <category domain="http://knowledge.livedoor.com/category/101">コンピューター＆インターネット</category>
    <knowledge:feed type="question">
        <knowledge:authorId>2268</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/2268</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>3</knowledge:answers>
        <knowledge:closed label="解決済">Fri, 07 Apr 2006 05:26:45 +0900</knowledge:closed>
    </knowledge:feed>
</item>
</channel>
</rss>
