<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xml:lang="ja">
	<channel>
		<title>言いたい放題</title>
		<link>http://orera.g.hatena.ne.jp/edvakf/</link>
		<description>言いたい放題</description>
		<dc:creator>edvakf</dc:creator>


		<item>
			<title>[バグレポ]再現した。</title>
			<link>http://orera.g.hatena.ne.jp/edvakf/20100209/1265681477</link>

			<description><![CDATA[
		<div class="section">
			<ul>
				<li><a href="http://twitter.com/miya2000/status/8805738067" target="_blank">http://twitter.com/miya2000/status/8805738067</a></li>
				<li><a href="http://twitter.com/miya2000/status/8805835155" target="_blank">http://twitter.com/miya2000/status/8805835155</a></li>
			</ul>
			<p><a href="http://orera.g.hatena.ne.jp/edvakf/20100207/1265532595" target="_blank">前回のやつ</a>、↑ の方法だと再現しました。</p>
<pre class="syntax-highlight">
javascript:
(<span class="synIdentifier">function</span> func1()<span class="synIdentifier">{</span>

  <span class="synIdentifier">function</span> func2()<span class="synIdentifier">{</span>
    <span class="synStatement">alert</span>(<span class="synStatement">typeof</span> func1);
  <span class="synIdentifier">}</span>

  <span class="synStatement">alert</span>(<span class="synStatement">typeof</span> func1); 
  func2();
<span class="synIdentifier">}</span>)();
</pre>

			<p>以上のブックマークレットを実行すると、<a class="keyword" href="http://orera.g.hatena.ne.jp/keyword/Opera">Opera</a> 10.10 では function function と2回アラートが出るけど、<a class="keyword" href="http://orera.g.hatena.ne.jp/keyword/Opera">Opera</a> 10.50 では function undefined と2回アラートが出るはず。</p>
			<p>(function func1(){...})(); という、いわば特殊な宣言方法 (<ins datetime="2010-02-09T16:36:48+09:00">ECMAScript 上は function expression という</ins>) でのみ起こるみたい。</p>
			<p>(ただし相変わらず oAutoPagerize は動いているのが謎)</p>			<br>

			<p>とりあえず↓にある DSK-279328 への追加情報としてバグレポートを出してみた。</p>
			<ul>
				<li><a href="http://tamo.tdiary.net/20100207.html#p01" target="_blank">いろいろ Opera bug 報告したので - 野良犬日記(2010-02-07)</a></li>
			</ul>
			<ul>
				<li>DSK-279737</li>
			</ul>
			<blockquote>
<pre>
Summary: Additional information on DSK-279328


Steps to reproduce
===================
1. Run the below bookmarklet;

javascript:
(function func1(){
function func2(){
alert(typeof func1);
}
alert(typeof func1);
func2();
})();


Expected result
===============
You should see two alerts, both &#39;function&#39;. (on Opera 10.10 and all other browsers)

Actual result
=============
You see two alerts, the first one is &#39;function&#39;, the second is &#39;undefined&#39;. (only on Opera 10.50)

This only occurs when a function is declared and executed like this &#34;(function func(){...})()&#34; and the body of the function declares another function. Then the scope inside the inner function does not see the name of the outer function.
</pre>

			</blockquote>
		</div>
]]></description>

			<dc:creator>edvakf</dc:creator>

			<pubDate>Tue, 09 Feb 2010 02:11:17 GMT</pubDate>


			<category>バグレポ</category>


		</item>

		<item>
			<title>[バグレポ]10.50でのCanvasの文字化けを報告した</title>
			<link>http://orera.g.hatena.ne.jp/edvakf/20100209/1265686847</link>

			<description><![CDATA[
		<div class="section">
			<ul>
				<li><a href="http://orera.g.hatena.ne.jp/edvakf/20100129/1264775528" target="_blank">Canvas Text APIがちょっと良くなった - 言いたい放題 - チーム俺等</a></li>
			</ul>
			<p>とかで書いた文字化けの件を報告した。</p>			<br>

			<ul>
				<li>DSK-279743</li>
			</ul>
			<blockquote>
<pre>
Summary: Garbling Japanese text on canvas

URL: http://www.html5.jp/canvas/ref/method/sample/fillText.html

Steps to reproduce
===================
1. Navigate to the above URL.
2. See the canvas element and the sample code.

Expected result
===============
What&#39;s drawn on the &#60;canvas&#62; should look like this;
http://www.html5.jp/canvas/ref/method/img/fillText.png

Actual result
=============
Japanese text garbles when using strokeText or setting maxLength property. (fillText is fine)
</pre>

			</blockquote>
		</div>
]]></description>

			<dc:creator>edvakf</dc:creator>

			<pubDate>Tue, 09 Feb 2010 03:40:47 GMT</pubDate>


			<category>バグレポ</category>


		</item>

		<item>
			<title>再現しない</title>
			<link>http://orera.g.hatena.ne.jp/edvakf/20100207/1265532595</link>

			<description><![CDATA[
		<div class="section">
			<ul>
				<li><a href="http://tamo.tdiary.net/20100206.html#p02" target="_blank">oAutoPagerize 1.5.0 と Opera 10.50 (3222)</a></li>
			</ul>
			<blockquote>
			<p>名前空間がどうなってるのか、</p>
			<p>oAutoPagerize が自分の名前を知らない現象になった。</p>
			<p>よくわからないのでグローバルに出すという素人工作。</p>
<pre>
(function oAutoPagerize(...){...})(...);
</pre>

			<p>を</p>
<pre>
var oAutoPagerize = function(...){...};
oAutoPagerize(...);
</pre>

			<p>にした。なんでだろ</p>
			</blockquote>
			<p>↑うちは大丈夫なんだけど、何が起こってるのだろう。</p>			<br>

<pre>
javascript:(function f(){ alert(f) })();
</pre>

			<p>も動くし。<a class="keyword" href="http://orera.g.hatena.ne.jp/keyword/Opera">Opera</a> のバージョンは <a href="http://my.opera.com/desktopteam/blog/2010/02/05/skin-fixes-unite-and-then-some" target="_blank">http://my.opera.com/desktopteam/blog/2010/02/05/skin-fixes-unite-and-then-some</a> で Mac OS X です。</p>
		</div>
]]></description>

			<dc:creator>edvakf</dc:creator>

			<pubDate>Sun, 07 Feb 2010 08:49:55 GMT</pubDate>



		</item>

		<item>
			<title>twitterのログをOperaに保存させてみるテスト</title>
			<link>http://orera.g.hatena.ne.jp/edvakf/20100206/1265411779</link>

			<description><![CDATA[
		<div class="section">
			<ul>
				<li><a href="http://twitter.com/statuses/home_timeline.rss?count=200" target="_blank">http://twitter.com/statuses/home_timeline.rss?count=200</a></li>
			</ul>
			<p>↑で自分のタイムラインが全部取得できるので、<a class="keyword" href="http://orera.g.hatena.ne.jp/keyword/Opera">Opera</a> のフィードリーダーに登録してみた。</p>			<br>

			<p>フィードの From 欄が edvakf with friends とかだったので、"edvakf" でクイック検索したら全部ヒットして、使えねー…と思ってたんだけど、メール機能をオンにしたらフィルター機能が使えるようになった。アドレスとか名前は適当に入れただけだけど。</p>
			<p><a href="http://f.hatena.ne.jp/edvakf/20100206080448" class="hatena-fotolife" target="_blank"><img src="http://f.hatena.ne.jp/images/fotolife/e/edvakf/20100206/20100206080448.png" alt="f:id:edvakf:20100206080448p:image" title="f:id:edvakf:20100206080448p:image" class="hatena-fotolife"></a></p>			<br>

			<p>詳細設定の Notification からメール関係の通知もオフにした。(これがうざいのでいつも <a class="keyword" href="http://orera.g.hatena.ne.jp/keyword/Opera">Opera</a> のフィードリーダーに挑戦してもすぐに諦めてたんだけど、オフにできたんだね)</p>
			<p>しばらく使ってみる。</p>			<br>

			<p>全部読むつもりじゃなくて、後で検索用途に使えたらいいと思ったので。半日使っただけで未読1300件とかになってたので、全部読むなんて無理。<a class="keyword" href="http://orera.g.hatena.ne.jp/keyword/Opera">Opera</a> が耐えられるのか心配。</p>
		</div>
]]></description>

			<dc:creator>edvakf</dc:creator>

			<pubDate>Fri, 05 Feb 2010 23:16:19 GMT</pubDate>



		</item>

		<item>
			<title>GumblarウィルスがOperaを標的に。Operaでマスターパスワードを使ってない人は今すぐ設定すること。</title>
			<link>http://orera.g.hatena.ne.jp/edvakf/20100203/1265202164</link>

			<description><![CDATA[
		<div class="section">
			<p>dgmatil さんの記事で知りました。</p>
			<ul>
				<li><a href="http://dgmatil.blogspot.com/2010/02/gumblaropera.html" target="_blank">dgmatil blog: Gumblar（ガンブラー）、Operaの認証管理も対象に</a></li>
			</ul>
			<blockquote title="FFFTPに加えEmFTP、FileZilla、WinSCP等もすでに標的化 ～ JPCERT/CC、具体ソフト名でGumblar注意喚起：Enterprise：RBB TODAY (ブロードバンド情報サイト) 2010/02/03" cite="http://www.rbbtoday.com/news/20100203/65434.html">
			<p>　また「Internet Explorer 6」および「<a class="keyword" href="http://orera.g.hatena.ne.jp/keyword/Opera">Opera</a> 10.10」では、Webブラウザのアカウント管理機能を用いて保存されている情報をマルウェアが窃取し、外部サーバに送信していることも確認されたという。</p>
			<cite><a href="http://www.rbbtoday.com/news/20100203/65434.html" target="_blank">FFFTPに加えEmFTP、FileZilla、WinSCP等もすでに標的化 ～ JPCERT/CC、具体ソフト名でGumblar注意喚起：Enterprise：RBB TODAY (ブロードバンド情報サイト) 2010/02/03</a></cite></blockquote>			<br>

			<p><a class="keyword" href="http://orera.g.hatena.ne.jp/keyword/Opera">Opera</a> の<a class="keyword" href="http://orera.g.hatena.ne.jp/keyword/%e8%aa%8d%e8%a8%bc%e7%ae%a1%e7%90%86">認証管理</a> (パスワードマネージャー) は、暗号化されてファイルに保存されているのですが、その暗号は実は解読されています。</p>
			<p><a class="keyword" href="http://orera.g.hatena.ne.jp/keyword/Opera">Opera</a> の<a class="keyword" href="http://orera.g.hatena.ne.jp/keyword/%e8%aa%8d%e8%a8%bc%e7%ae%a1%e7%90%86">認証管理</a>を使っている人は、すぐにマスターパスワードを設定しましょう。</p>
			<p>詳細設定→セキュリティ→マスターパスワードの設定から、新しいパスワードを2回入れます。</p>
			<p><a href="http://f.hatena.ne.jp/edvakf/20100203215610" class="hatena-fotolife" target="_blank"><img src="http://f.hatena.ne.jp/images/fotolife/e/edvakf/20100203/20100203215610.png" alt="f:id:edvakf:20100203215610p:image:w600" title="f:id:edvakf:20100203215610p:image:w600" class="hatena-fotolife" width="600"></a></p>
			<p>そして、「パスワードの確認」は毎回とか、5分後とか、60分後とか、<a class="keyword" href="http://orera.g.hatena.ne.jp/keyword/%e3%82%bb%e3%83%83%e3%82%b7%e3%83%a7%e3%83%b3">セッション</a>ごととか、好きなのを選んでください。</p>
			<p>最後に、「保存されたパスワードの保護にマスターパスワードを使用する」にチェックを入れます。</p>			<br>

			<p>これでパスワードファイルの暗号レベルが上がります。こちらは破られているとは聞いたことがないので、たぶん安全だと思います。</p>			<br>

			<h4><ins datetime="2010-02-05T03:33:08+09:00">追記</ins></h4>
			<p>侵入されないための対策もやりましょう。</p>
			<blockquote title="http://twitter.com/t_ashula/status/8591909934" cite="http://twitter.com/t_ashula/status/8591909934">
			<p>ま，マスターパスワード設定する前に，<a href="http://mozilla.jp/firefox/security/plugincheck/" target="_blank">http://mozilla.jp/firefox/security/plugincheck/</a> でプラグインを，<a href="http://technet.microsoft.com/ja-jp/security/cc184923.aspx" target="_blank">http://technet.microsoft.com/ja-jp/security/cc184923.aspx</a> MBSA でアップデートを，<a href="http://secunia.com/vulnerability_scanning/personal/" target="_blank">http://secunia.com/vulnerability_scanning/personal/</a> psi で各種アプリを確認してもバチは当たらないと思うよ</p>
			<cite><a href="http://twitter.com/t_ashula/status/8591909934" target="_blank">http://twitter.com/t_ashula/status/8591909934</a></cite></blockquote>			<br>

			<h4>関連</h4>
			<ul>
				<li><a href="http://d.hatena.ne.jp/edvakf/20080730/1217365661" target="_blank">マスターパスワードとWand解析ソフトについて - by edvakf in hatena</a></li>
			</ul>

		</div>
]]></description>

			<dc:creator>edvakf</dc:creator>

			<pubDate>Wed, 03 Feb 2010 13:02:44 GMT</pubDate>



		</item>

		<item>
			<title>ネタ</title>
			<link>http://orera.g.hatena.ne.jp/edvakf/20100203/1265226057</link>

			<description><![CDATA[
		<div class="section">
			<p>twitter で言ったネタ。</p>
			<p>Gumblar「このソフトウェアは以下のブラウザで動作確認しています: Internet Explorer, <a class="keyword" href="http://orera.g.hatena.ne.jp/keyword/Opera">Opera</a>」</p>
		</div>
]]></description>

			<dc:creator>edvakf</dc:creator>

			<pubDate>Wed, 03 Feb 2010 19:40:57 GMT</pubDate>



		</item>

	</channel>
</rss>
