<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>simple singularities &#187; programming</title>
	<atom:link href="http://fri13th.com/blog/archives/category/programming/feed" rel="self" type="application/rss+xml" />
	<link>http://fri13th.com/blog</link>
	<description>presented by lazy fri13th since 2006</description>
	<lastBuildDate>Mon, 26 Apr 2010 09:09:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>simple and clean mssql full-backup script</title>
		<link>http://fri13th.com/blog/archives/393</link>
		<comments>http://fri13th.com/blog/archives/393#comments</comments>
		<pubDate>Sat, 24 Apr 2010 10:27:10 +0000</pubDate>
		<dc:creator>fri13th</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[mssql]]></category>
		<category><![CDATA[restore]]></category>

		<guid isPermaLink="false">http://fri13th.com/blog/?p=393</guid>
		<description><![CDATA[open the sql query and execute this code for backup

BACKUP DATABASE dbname TO DISK='C:\dbbackup\backupfile.bak'

and load it from another server!


USE master
GO
DROP DATABASE dbname
GO
RESTORE DATABASE dbname FROM DISK='C:\dbbackup\backupfile.bak'

very simple, isn&#8217;t it? also there are many and many other backup options worth for check.

there are some critical bug(?) in cygwin. if you upload some files using cygwin&#8217;s ssh [...]]]></description>
			<content:encoded><![CDATA[<p>open the sql query and execute this code for backup</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;">BACKUP <span style="color: #993333; font-weight: bold;">DATABASE</span> dbname <span style="color: #993333; font-weight: bold;">TO</span> DISK<span style="color: #66cc66;">=</span><span style="color: #ff0000;">'C:<span style="color: #000099; font-weight: bold;">\d</span>bbackup<span style="color: #000099; font-weight: bold;">\b</span>ackupfile.bak'</span></pre></div></div>

<p>and load it from another server!</p>
<p></p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">USE</span> master
GO
<span style="color: #993333; font-weight: bold;">DROP</span> <span style="color: #993333; font-weight: bold;">DATABASE</span> dbname
GO
RESTORE <span style="color: #993333; font-weight: bold;">DATABASE</span> dbname <span style="color: #993333; font-weight: bold;">FROM</span> DISK<span style="color: #66cc66;">=</span><span style="color: #ff0000;">'C:<span style="color: #000099; font-weight: bold;">\d</span>bbackup<span style="color: #000099; font-weight: bold;">\b</span>ackupfile.bak'</span></pre></div></div>

<p>very simple, isn&#8217;t it? also there are many and many other backup options worth for check.</p>
<p>
there are some critical bug(?) in cygwin. if you upload some files using cygwin&#8217;s ssh protocol, the files&#8217;s permission are -rwx&#8212;&#8212; by default, it causes operation system error. so you have to change the permission to -rwxrwxrwx. not only db backup file, even just a plain asp file can&#8217;t be opened. so don&#8217;t miss it. </p>
]]></content:encoded>
			<wfw:commentRss>http://fri13th.com/blog/archives/393/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>struts 2 &#8217;s no result problem</title>
		<link>http://fri13th.com/blog/archives/389</link>
		<comments>http://fri13th.com/blog/archives/389#comments</comments>
		<pubDate>Thu, 08 Apr 2010 12:47:34 +0000</pubDate>
		<dc:creator>fri13th</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[struts]]></category>

		<guid isPermaLink="false">http://fri13th.com/blog/?p=389</guid>
		<description><![CDATA[i stucked on some mysterious error today. i made some xml config in struts.xml, it&#8217;s very simple one and there&#8217;s nothing wrong as far as i knew


&#60;action name=&#34;someurl&#34; class=&#34;someAction&#34; method=&#34;list&#34; &#62;
	&#60;result&#62;/WEB-INF/pages/someurl.jsp&#60;/result&#62;
&#60;/action&#62;

and i got this error

Could not find action or result
No result defined for action com.fri13th.SomeAction and result input

of course i checked and checked all the [...]]]></description>
			<content:encoded><![CDATA[<p>i stucked on some mysterious error today. i made some xml config in struts.xml, it&#8217;s very simple one and there&#8217;s nothing wrong as far as i knew</p>
<p></p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;action</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;someurl&quot;</span> <span style="color: #000066;">class</span>=<span style="color: #ff0000;">&quot;someAction&quot;</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">&quot;list&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;</span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;result<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>/WEB-INF/pages/someurl.jsp<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/result<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/action<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>and i got this error</p>
<pre>
Could not find action or result
No result defined for action com.fri13th.SomeAction and result input
</pre>
<p>of course i checked and checked all the parameters again. there was no mistake at all.. so why it didn&#8217;t work?</p>
<p>then i make another class and check again. it works fine. so what the difference was? the only difference was annotated validation in front of class definition. i deleted some validation code and it worked fine..</p>
<p>i&#8217;m too tired today, must go to bed early than usual..</p>
]]></content:encoded>
			<wfw:commentRss>http://fri13th.com/blog/archives/389/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ie6 overflow and scroll bar bug</title>
		<link>http://fri13th.com/blog/archives/383</link>
		<comments>http://fri13th.com/blog/archives/383#comments</comments>
		<pubDate>Thu, 19 Nov 2009 09:32:05 +0000</pubDate>
		<dc:creator>fri13th</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[overflow]]></category>
		<category><![CDATA[scrollbar]]></category>

		<guid isPermaLink="false">http://fri13th.com/blog/?p=383</guid>
		<description><![CDATA[if some content i.e. image is bigger than contents pane i.e. div, ie6 doesn&#8217;t show it right. it just cut and show only half of image. wtf..

so i find the solution, or maybe this is also ie6&#8217;s bug?
just add this to the css properties of the cropped image.

position:relative;

and this doesn&#8217;t solve the whole problem.
the scroll [...]]]></description>
			<content:encoded><![CDATA[<p>if some content i.e. image is bigger than contents pane i.e. div, ie6 doesn&#8217;t show it right. it just cut and show only half of image. wtf..</p>
<p>
so i find the solution, or maybe this is also ie6&#8217;s bug?</p>
<p>just add this to the css properties of the cropped image.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span></pre></div></div>

<p>and this doesn&#8217;t solve the whole problem.</p>
<p>the scroll bar is set to show div&#8217;s width and and no scrollbar for image..</p>
<p>
so i add this line</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span>
zoom<span style="color: #00AA00;">:</span><span style="color: #cc66cc;">1</span><span style="color: #00AA00;">;</span></pre></div></div>

<p>and problem solved.. you can check the final result from my another gourmet and photo blog <a href="http://fri13th.com/ep">here</></p>
]]></content:encoded>
			<wfw:commentRss>http://fri13th.com/blog/archives/383/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft PowerShell 2.0 RC with Ruby &amp; vi</title>
		<link>http://fri13th.com/blog/archives/373</link>
		<comments>http://fri13th.com/blog/archives/373#comments</comments>
		<pubDate>Sat, 17 Oct 2009 07:23:10 +0000</pubDate>
		<dc:creator>fri13th</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[VI]]></category>

		<guid isPermaLink="false">http://fri13th.com/blog/?p=373</guid>
		<description><![CDATA[i didn&#8217;t notice that PowerShell which is bundled in Windows7, can also be installed in WIndows XP SP3. and i googled and knew RC version is available now. so why not give a try?

you can download the rc version here
https://connect.microsoft.com/windowsmanagement/Downloads
after install, you need to permit script execution

Set-ExecutionPolicy RemoteSigned

and install ruby and vi, which vendor you [...]]]></description>
			<content:encoded><![CDATA[<p>i didn&#8217;t notice that PowerShell which is bundled in Windows7, can also be installed in WIndows XP SP3. and i googled and knew RC version is available now. so why not give a try?</p>
<p>
you can download the rc version here<br />
<a href="https://connect.microsoft.com/windowsmanagement/Downloads">https://connect.microsoft.com/windowsmanagement/Downloads</a></p>
<p>after install, you need to permit script execution</p>

<div class="wp_syntax"><div class="code"><pre class="dos" style="font-family:monospace;">Set-ExecutionPolicy RemoteSigned</pre></div></div>

<p>and install ruby and vi, which vendor you like <img src='http://fri13th.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> <br />
i prefer this ruby distribution<br />
<a href="http://rubyinstaller.org/">http://rubyinstaller.org/</a></p>
<p>vi has many variation, so i can&#8217;t choose one. anyway gvim might be a good idea..<br />
<a href="http://www.vim.org/download.php#pc">http://www.vim.org/download.php#pc</a></p>
<p>and you need to setup the vi path.</p>
<p>modify or create below file</p>

<div class="wp_syntax"><div class="code"><pre class="dos" style="font-family:monospace;"><span style="color: #33cc33;">%</span><span style="color: #448888;">userprofile</span><span style="color: #33cc33;">%</span>¥My Documents¥WindowsPowerShell¥Microsoft.PowerShell_profile.ps1</pre></div></div>

<p>and add this line</p>
<pre>
Set-Alias vi 'path/to/vi.exe'
</pre>
<p>that&#8217;s all! you can do many convenient script jobs in Windows XP!</p>
]]></content:encoded>
			<wfw:commentRss>http://fri13th.com/blog/archives/373/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>unalz in mac</title>
		<link>http://fri13th.com/blog/archives/371</link>
		<comments>http://fri13th.com/blog/archives/371#comments</comments>
		<pubDate>Thu, 17 Sep 2009 03:03:04 +0000</pubDate>
		<dc:creator>fri13th</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[macports]]></category>

		<guid isPermaLink="false">http://fri13th.com/blog/?p=371</guid>
		<description><![CDATA[alzip format alz is the most wierd compression format, widely spread in korea. it&#8217;s some kind of disaster, why i have to use alz? only one thing good is it can split big files into pieces.

i usually use winrar in windows, but for alz format i have to install another one, like panzip. it&#8217;s the [...]]]></description>
			<content:encoded><![CDATA[<p>alzip format alz is the most wierd compression format, widely spread in korea. it&#8217;s some kind of disaster, why i have to use alz? only one thing good is it can split big files into pieces.</p>
<p>
i usually use winrar in windows, but for alz format i have to install another one, like panzip. it&#8217;s the most thing i don&#8217;t like, so.. i found some good solution</p>
<p>
download unalz from this link<br />
<br />
<a href="http://www.kippler.com/win/unalz/">http://www.kippler.com/win/unalz/</a></p>
<p>
the usage is very simple</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">make</span> posix
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">mv</span> unalz <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin</pre></div></div>

<p>actually unalz is included in port, but not compiled well in my snow leopard</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> port <span style="color: #c20cb9; font-weight: bold;">install</span> unalz</pre></div></div>

<p>will show some error, please someone fix this issue <img src='http://fri13th.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://fri13th.com/blog/archives/371/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IETester</title>
		<link>http://fri13th.com/blog/archives/346</link>
		<comments>http://fri13th.com/blog/archives/346#comments</comments>
		<pubDate>Thu, 19 Feb 2009 00:30:36 +0000</pubDate>
		<dc:creator>fri13th</dc:creator>
				<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://fri13th.com/blog/archives/346</guid>
		<description><![CDATA[it was very painful to install new virtual machine for just testing site in ie6. so IETester is really good for me.
http://www.my-debugbar.com/wiki/IETester/HomePage
i eventually ignore ie 5.5. but not ie6.. i wish windows 7 will be spreaded. really ie6 sucks.
]]></description>
			<content:encoded><![CDATA[<p>it was very painful to install new virtual machine for just testing site in ie6. so IETester is really good for me.</p>
<p>http://www.my-debugbar.com/wiki/IETester/HomePage</p>
<p>i eventually ignore ie 5.5. but not ie6.. i wish windows 7 will be spreaded. really ie6 sucks.</p>
]]></content:encoded>
			<wfw:commentRss>http://fri13th.com/blog/archives/346/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>use resource bundle outside of Action in struts 2</title>
		<link>http://fri13th.com/blog/archives/339</link>
		<comments>http://fri13th.com/blog/archives/339#comments</comments>
		<pubDate>Sat, 17 Jan 2009 06:17:30 +0000</pubDate>
		<dc:creator>fri13th</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[action]]></category>
		<category><![CDATA[struts]]></category>

		<guid isPermaLink="false">http://fri13th.com/blog/archives/339</guid>
		<description><![CDATA[i have to generate some logs in struts 2 framework. i know the action classes include resource bundle feature by just using getText() method. but i can&#8217;t find how i use resource bundle outside of Action classes. just google it and get no reasult.
i didn&#8217;t give up and download xwork2.0.7. (yes, xwork!) struts2.0.x source doesn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>i have to generate some logs in struts 2 framework. i know the action classes include resource bundle feature by just using getText() method. but i can&#8217;t find how i use resource bundle outside of Action classes. just google it and get no reasult.</p>
<p>i didn&#8217;t give up and download xwork2.0.7. (yes, xwork!) struts2.0.x source doesn&#8217;t contain old xwork code. and finally found some classes about that. DefaultTextProvider and LocalizedTextUtil. DefaultTextProvider is just a wrapper of LocalizedTextUtil.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="java" style="font-family:monospace;">TextProvider textProvider <span style="color: #339933;">=</span> DefaultTextProvider.<span style="color: #006633;">INSTANCE</span><span style="color: #339933;">;</span>
log.<span style="color: #006633;">info</span><span style="color: #009900;">&#40;</span>textProvider.<span style="color: #006633;">getText</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;some.property&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>i have to use Locale.US for logging. so&#8230;</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="java" style="font-family:monospace;">LocalizedTextUtil.<span style="color: #006633;">findDefaultText</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;some.property&quot;</span>, <span style="color: #003399;">Locale</span>.<span style="color: #006633;">US</span><span style="color: #009900;">&#41;</span></pre></td></tr></table></div>

<p>struts 2 has many good features but lacks of manual.. anyway, we can do what we want. if you don&#8217;t care about reading sources.. good luck to you</p>
]]></content:encoded>
			<wfw:commentRss>http://fri13th.com/blog/archives/339/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>jQuery &amp; script.aculo.us conflict problem</title>
		<link>http://fri13th.com/blog/archives/335</link>
		<comments>http://fri13th.com/blog/archives/335#comments</comments>
		<pubDate>Wed, 10 Dec 2008 12:41:05 +0000</pubDate>
		<dc:creator>fri13th</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://fri13th.com/blog/archives/335</guid>
		<description><![CDATA[in jQuery&#8217;s official site, they say jQuery has no conflict with major library.. yeah, that may be right.. i believed it and implement in my prototype and script.aculo.us environment.
when i test class selector jQuery(&#8220;.myClass&#8221;), it doesn&#8217;t simply work, id selector works fine..
jQuery.noConflict() has useless in this case.. and i tested my code and there was [...]]]></description>
			<content:encoded><![CDATA[<p>in jQuery&#8217;s official site, they say jQuery has no conflict with major library.. yeah, that may be right.. i believed it and implement in my prototype and script.aculo.us environment.</p>
<p>when i test class selector jQuery(&#8220;.myClass&#8221;), it doesn&#8217;t simply work, id selector works fine..<br />
jQuery.noConflict() has useless in this case.. and i tested my code and there was no error at all..</p>
<p>so i disabled script.aculo.us after few hour&#8217;s labor, it works like a charm..<br />
the program was only 10 or so minutes to finish, but i spent full afternoon for this issue.. </p>
<p>it&#8217;s very curious.. because of jQuery&#8217;s nature, it isn&#8217;t easy at all to make a conflict like this..<br />
but there is one in reality..</p>
<p>i couldn&#8217;t find about conflict reporting in jQuery.. so be careful to select and combine<br />
javascript libraries.</p>
]]></content:encoded>
			<wfw:commentRss>http://fri13th.com/blog/archives/335/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mac, leopard, java 6, eclipse, intellij idea</title>
		<link>http://fri13th.com/blog/archives/327</link>
		<comments>http://fri13th.com/blog/archives/327#comments</comments>
		<pubDate>Fri, 31 Oct 2008 05:38:59 +0000</pubDate>
		<dc:creator>fri13th</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[intellij idea]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[leopard]]></category>

		<guid isPermaLink="false">http://fri13th.com/blog/?p=327</guid>
		<description><![CDATA[yesterday, i updated my mac and found 64 bit java 6 was included in this update.
it wasn&#8217;t default so i change the setting manually below /System/Library/&#8230;
and suddenly intelllij idea didn&#8217;t work.. and i found intellij use 1.5 by default.
and change it to 1.6 may not work right..
so i tried eclipse 3.4. but there was no [...]]]></description>
			<content:encoded><![CDATA[<p>yesterday, i updated my mac and found 64 bit java 6 was included in this update.<br />
it wasn&#8217;t default so i change the setting manually below /System/Library/&#8230;</p>
<p>and suddenly intelllij idea didn&#8217;t work.. and i found intellij use 1.5 by default.<br />
and change it to 1.6 may not work right..</p>
<p>so i tried eclipse 3.4. but there was no 64bit java support eclipse for mac.</p>
<p>a bit frustrating.. so i reverted the change..<br />
maybe i have to wait the next os, snow leopard, when the java 6 becomes default.</p>
<p>anyway, i made another java 6 directory and set JAVA_HOME there..<br />
it works.. and intellij idea rus smoothly by using system default setting..<br />
that&#8217;s enough to me..</p>
]]></content:encoded>
			<wfw:commentRss>http://fri13th.com/blog/archives/327/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jquery problem: click event not fired in ff3, ubuntu</title>
		<link>http://fri13th.com/blog/archives/311</link>
		<comments>http://fri13th.com/blog/archives/311#comments</comments>
		<pubDate>Thu, 11 Sep 2008 03:26:35 +0000</pubDate>
		<dc:creator>fri13th</dc:creator>
				<category><![CDATA[firefox]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://fri13th.com/blog/?p=311</guid>
		<description><![CDATA[i turned off cookie and test as if ff is mobile browser.
and at the same mode, i develop some web page.
then jquery&#8217;s click event doesn&#8217;t work. i don&#8217;t know why it does..
so i turned on cookie and my js program works fine.
and that&#8217;s all.. there are too many mysteries in the browser.
]]></description>
			<content:encoded><![CDATA[<p>i turned off cookie and test as if ff is mobile browser.<br />
and at the same mode, i develop some web page.</p>
<p>then jquery&#8217;s click event doesn&#8217;t work. i don&#8217;t know why it does..<br />
so i turned on cookie and my js program works fine.<br />
and that&#8217;s all.. there are too many mysteries in the browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://fri13th.com/blog/archives/311/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
