<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8671218418139168652</id><updated>2024-08-30T23:47:12.343+09:00</updated><category term="iPhone"/><category term="iPad"/><category term="iPhone アプリ"/><category term="twitter"/><category term="Digital Native"/><category term="apple"/><category term="google"/><category term="iPhoneアプリ開発"/><category term="重要だと思われる記事"/><category term="Android"/><category term="Mac"/><category term="iPad動画"/><category term="iPhone 4"/><category term="電子書籍"/><category term="Blogger Tips"/><category term="SNS"/><category term="3D"/><category term="Amazon"/><category term="Safari Extensions"/><category term="tech"/><category term="wimax"/><title type='text'>Manson&#39;s Theory</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default?redirect=false'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default?start-index=26&amp;max-results=25&amp;redirect=false'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>100</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-6179318100137136638</id><published>2014-11-05T21:29:00.000+09:00</published><updated>2014-11-05T21:29:28.731+09:00</updated><title type='text'>ブログ移行しました。</title><content type='html'>こちらに移行しています。&lt;br /&gt;
&lt;a href=&quot;http://yuichi-dev.blogspot.jp/&quot;&gt;http://yuichi-dev.blogspot.jp/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Thank you for watching</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/6179318100137136638/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2014/11/blog-post.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/6179318100137136638'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/6179318100137136638'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2014/11/blog-post.html' title='ブログ移行しました。'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-5095042805203339465</id><published>2011-11-15T23:53:00.002+09:00</published><updated>2011-11-15T23:53:40.487+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="iPhoneアプリ開発"/><title type='text'>Getting started with the SplitViewController on the iPad</title><content type='html'>&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; height=&quot;315&quot; src=&quot;http://www.youtube.com/embed/0v0heuqperQ&quot; width=&quot;420&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
O&#39;ReillyのElisabeth RobsonさんによるiPad,splitViewcontroller&lt;br /&gt;
を使った簡単なRSSアプリのちゅーとりある&lt;br /&gt;
&lt;br /&gt;
■要約&lt;br /&gt;
・ArticlesクラスにXMLフィードの解析、記事のカウントなど&lt;br /&gt;
・MasterViewControllerクラスにArticleクラスでとってきた記事タイトルをtableに表示&lt;br /&gt;
・DetailViewControllerクラスにwebViewに選択した記事の表示&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
※MasterViewController.mでMasterViewControllerからDetailViewControllerに&lt;br /&gt;
アクセスできるようにインスタンス変数、プロパティを用意し、実装で下記を&lt;br /&gt;
わすれずに&lt;br /&gt;
&lt;br /&gt;
&lt;pre class=&quot;brush: c++;&quot;&gt;- (void)viewDidLoad
{
　[super viewDidLoad];

    self.detailViewController = 
    (DetailViewController *)
    [[self.splitViewController.viewControllers lastObject] topViewController];
    
    /*splitViewControllerはmasterとdetailプロパティをもち、
     lastObjectはふたつめのdetailを取得,topViewController
     （現在表示中の画面）プロパティを参照することでdetailViewControllerに
     masterはdetailにアクセスできる状態になる
     */
}
&lt;/pre&gt;&lt;br /&gt;
このようなチュートリアルがyoutubeで見れるなんて本当にありがたいです。&lt;br /&gt;
Thanks a lot!!</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/5095042805203339465/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2011/11/getting-started-with.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/5095042805203339465'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/5095042805203339465'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2011/11/getting-started-with.html' title='Getting started with the SplitViewController on the iPad'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/0v0heuqperQ/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-8496625377348480260</id><published>2011-02-25T00:04:00.001+09:00</published><updated>2011-02-25T00:06:12.913+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="iPhoneアプリ開発"/><title type='text'>Tips for Xcode 1.0 リリースのお知らせ</title><content type='html'>&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiaUK_q_qvZJhRF7Sb3hLWPY6q7SZhQ-WtvAwlZPZP05atQar3pX0rlhI7pFNanqhX-_CVId8RqCOQtyQ2HJtqXa2oKXiEBgEVUUdhlxYV0iEb0q84zmABxuH25-XyaVjdYgJC05w_8hFSN/s1600/Default.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;200&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiaUK_q_qvZJhRF7Sb3hLWPY6q7SZhQ-WtvAwlZPZP05atQar3pX0rlhI7pFNanqhX-_CVId8RqCOQtyQ2HJtqXa2oKXiEBgEVUUdhlxYV0iEb0q84zmABxuH25-XyaVjdYgJC05w_8hFSN/s200/Default.png&quot; width=&quot;137&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhltURRDvecPBFONHkxpToF7QxRRYPpv_xuXNfvVWJ7oOYCx4cj8jHf3Xw5FWIgoLu5XkGpRHeYm7ij8hHYiy9530gkba5Y8IVOFuq2bHBagpDKWp5Mwrn-xkL1TbPNubnKvBiaHs2eYQTD/s1600/TipsForXcode1.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;200&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhltURRDvecPBFONHkxpToF7QxRRYPpv_xuXNfvVWJ7oOYCx4cj8jHf3Xw5FWIgoLu5XkGpRHeYm7ij8hHYiy9530gkba5Y8IVOFuq2bHBagpDKWp5Mwrn-xkL1TbPNubnKvBiaHs2eYQTD/s200/TipsForXcode1.png&quot; width=&quot;136&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgwxA1xUYYqancbBqkG2Xw0nOxJ_0tgg5uhLUo-11tgbpTMV8lhONefAaHXpcMPYmBNq1qvKwzFe7RBghFLYGQAkNJvg1YewWZME9Wn9xorda8sZq2pAt48HE2vIFcQuPw_0tf2kmbJVJlA/s1600/TipsForXcode.png&quot; imageanchor=&quot;1&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;200&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgwxA1xUYYqancbBqkG2Xw0nOxJ_0tgg5uhLUo-11tgbpTMV8lhONefAaHXpcMPYmBNq1qvKwzFe7RBghFLYGQAkNJvg1YewWZME9Wn9xorda8sZq2pAt48HE2vIFcQuPw_0tf2kmbJVJlA/s200/TipsForXcode.png&quot; width=&quot;137&quot; /&gt;&lt;/a&gt; &lt;br /&gt;
&lt;br /&gt;
ついにAppストアに初アプリが掲載されました。&lt;br /&gt;
XcodeのTipsを集めたリファレンスアプリです。&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;&quot;&gt;リンクはこちら↓&lt;/div&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;&quot;&gt;&lt;a href=&quot;http://bit.ly/eHtXif&quot;&gt;http://bit.ly/eHtXif&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
以下Description&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Tips for Xcode is xcode reference for iPhone.&lt;br /&gt;
It would be greatly appreciated if it could be useful for all iOS App Developers.&lt;br /&gt;
No internet connection is needed.&lt;br /&gt;
&lt;br /&gt;
now adjusted for 3.2.5 Xcode&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Contact:&lt;br /&gt;
&lt;a href=&quot;http://bit.ly/gK61VX&quot;&gt;@mansony_jp&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/8496625377348480260/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2011/02/tips-for-xcode-10.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/8496625377348480260'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/8496625377348480260'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2011/02/tips-for-xcode-10.html' title='Tips for Xcode 1.0 リリースのお知らせ'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiaUK_q_qvZJhRF7Sb3hLWPY6q7SZhQ-WtvAwlZPZP05atQar3pX0rlhI7pFNanqhX-_CVId8RqCOQtyQ2HJtqXa2oKXiEBgEVUUdhlxYV0iEb0q84zmABxuH25-XyaVjdYgJC05w_8hFSN/s72-c/Default.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-9095761541429053163</id><published>2011-02-01T00:29:00.001+09:00</published><updated>2011-02-01T00:32:51.248+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Blogger Tips"/><title type='text'>BloggerでSexyBookmark導入</title><content type='html'>&lt;a href=&quot;http://www.cahayabiru.com/2009/04/add-sexy-social-bookmark-to-your.html&quot;&gt;Sexy Social Bookmark&lt;/a&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiK4I-pZ13PScsU33I9uNVrVBn99Wnp9onBnOHlxtBhBmk1wqKOMMRaoVq0dbTEJJtgz_MrJmlpYA-HX0o2_cI-h8GQ14li1g4rBl1vJ_gVDPAjwAhRP5cTZC2qEQZ3uBI0opMGdbbgtCot/s1600/Screen+shot+2011-01-30+at+23.05.51.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiK4I-pZ13PScsU33I9uNVrVBn99Wnp9onBnOHlxtBhBmk1wqKOMMRaoVq0dbTEJJtgz_MrJmlpYA-HX0o2_cI-h8GQ14li1g4rBl1vJ_gVDPAjwAhRP5cTZC2qEQZ3uBI0opMGdbbgtCot/s1600/Screen+shot+2011-01-30+at+23.05.51.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;ソーシャル系のサービスを使っている海外の人なら知っている有名なアイコンたち。&lt;br /&gt;
deliciousは廃止されるので、かなりの今更感は否めませんが、、&lt;br /&gt;
あとAddThisとかぶりますが動きがいいのでよしとしましょう。&lt;br /&gt;
digg,technorati,reddit,designfloatあたりは使ったことありません。&lt;br /&gt;
とにかく動きがセクシーでいいです。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
今回はBloggerでの導入方法を書いていきます。&lt;br /&gt;
&lt;br /&gt;
＊参考にしたリンク&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://www.cahayabiru.com/2009/04/add-sexy-social-bookmark-to-your.html&quot;&gt;Sexy Social Bookmark&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://kachibito.net/wordpress/japanese-sbm-plugin-sexybookmarks.html&quot;&gt;WordPressにSBMボタンを加えるプラグイン、SexyBookmarksの日本Ver.をリリースしました&lt;/a&gt;(WordPressユーザ用）&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
&lt;br /&gt;
HTMLの編集でウィジェットのテンプレートを展開にチェックを入れ、&lt;br /&gt;
以下を探す。&lt;br /&gt;
&lt;br /&gt;
&lt;pre class=&quot;brush: javascript;html-script: true&quot;&gt;]]&amp;gt;&amp;lt;/b:skin&amp;gt;
&lt;/pre&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: monospace; white-space: pre;&quot;&gt;]]&amp;gt;&amp;lt;/b:skin&amp;gt;&lt;/span&gt;以下にCSSコードを挿入&lt;br /&gt;
&lt;pre class=&quot;brush: javascript;html-script: true&quot;&gt;&amp;lt;style type=&#39;text/css&#39;&amp;gt;
div.sexy-bookmarks {
height:54px;
background:url(&#39;http://YOUR-IMAGE-HOSTING/sharingsexy.png&#39;) no-repeat left bottom;
position:relative;
width:540px;
}

div.sexy-bookmarks span.sexy-rightside {
width:17px;
height:54px;
background:url(&#39;http://YOUR-IMAGE-HOSTING/sharingsexy.png&#39;) no-repeat right bottom;
position:absolute;
right:-17px;
}

div.sexy-bookmarks ul.socials {
margin:0 !important;
padding:0 !important;
position:absolute;
bottom:0;
left:10px;
}

div.sexy-bookmarks ul.socials li {
display:inline-block !important;
float:left !important;
list-style-type:none !important;
margin:0 !important;
height:29px !important;
width:48px !important;
cursor:pointer !important;
padding:0 !important;
}

div.sexy-bookmarks ul.socials a {
display:block !important;
width:48px !important;
height:29px !important;
font-size:0 !important;
color:transparent !important;

}

.sexy-furl, .sexy-furl:hover, .sexy-digg, .sexy-digg:hover, .sexy-reddit, .sexy-reddit:hover, .sexy-stumble, .sexy-stumble:hover, .sexy-delicious, .sexy-delicious:hover, .sexy-yahoo, .sexy-yahoo:hover, .sexy-blinklist, .sexy-blinklist:hover, .sexy-technorati, .sexy-technorati:hover, .sexy-facebook, .sexy-facebook:hover, .sexy-twitter, .sexy-twitter:hover, .sexy-myspace, .sexy-myspace:hover, .sexy-mixx, .sexy-mixx:hover, .sexy-script-style, .sexy-script-style:hover, .sexy-designfloat, .sexy-designfloat:hover, .sexy-syndicate, .sexy-syndicate:hover, .sexy-email, .sexy-email:hover {
background:url(&#39;http://YOUR-IMAGE-HOSTING/sexysprite.png&#39;) no-repeat !important;
}

.sexy-furl {
background-position:-300px top !important;
}
.sexy-furl:hover {
background-position:-300px bottom !important;
}
.sexy-digg {
background-position:-500px top !important;
}
.sexy-digg:hover {
background-position:-500px bottom !important;
}
.sexy-reddit {
background-position:-100px top !important;
}
.sexy-reddit:hover {
background-position:-100px bottom !important;
}
.sexy-stumble {
background-position:-50px top !important;
}
.sexy-stumble:hover {
background-position:-50px bottom !important;
}
.sexy-delicious {
background-position:left top !important;
}
.sexy-delicious:hover {
background-position:left bottom !important;
}
.sexy-yahoo {
background-position:-650px top !important;
}
.sexy-yahoo:hover {
background-position:-650px bottom !important;
}
.sexy-blinklist {
background-position:-600px top !important;
}
.sexy-blinklist:hover {
background-position:-600px bottom !important;
}
.sexy-technorati {
background-position:-700px top !important;
}
.sexy-technorati:hover {
background-position:-700px bottom !important;
}
.sexy-myspace {
background-position:-200px top !important;
}
.sexy-myspace:hover {
background-position:-200px bottom !important;
}
.sexy-twitter {
background-position:-350px top !important;
}
.sexy-twitter:hover {
background-position:-350px bottom !important;
}
.sexy-facebook {
background-position:-450px top !important;
}
.sexy-facebook:hover {
background-position:-450px bottom !important;
}
.sexy-mixx {
background-position:-250px top !important;
}
.sexy-mixx:hover {
background-position:-250px bottom !important;
}
.sexy-script-style {
background-position:-400px top !important;
}
.sexy-script-style:hover {
background-position:-400px bottom !important;
}
.sexy-designfloat {
background-position:-550px top !important;
}
.sexy-designfloat:hover {
background-position:-550px bottom !important;
}
.sexy-syndicate {
background-position:-150px top !important;
}
.sexy-syndicate:hover {
background-position:-150px bottom !important;
}
.sexy-email {
background-position:-753px top !important;
}
.sexy-email:hover {
background-position:-753px bottom !important;
}

&amp;lt;/style&amp;gt;
&lt;/pre&gt;上記のYOUR-IMAGE-HOSTING/sexysprite.pngのところをあなたのホスト先に変えてください。&lt;br /&gt;
&lt;br /&gt;
次に以下を探す。&lt;br /&gt;
&lt;pre class=&quot;brush: javascript;html-script: true&quot;&gt;&amp;lt;data:post.body/&amp;gt;
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;data:post.body/&amp;gt;以下にHTMLコードを挿入&lt;br /&gt;
&lt;pre class=&quot;brush: javascript;html-script: true&quot;&gt;&amp;lt;div class=&#39;sexy-bookmarks&#39;&amp;gt;
&amp;lt;ul class=&#39;socials&#39;&amp;gt;
&amp;lt;li class=&#39;sexy-delicious&#39;&amp;gt;&amp;lt;a expr:href=&#39;&quot;http://del.icio.us/post?url=&quot; + data:post.url + &quot;&amp;amp;title=&quot; + data:post.title&#39; target=&#39;_blank&#39;/&amp;gt;&amp;lt;/li&amp;gt;

&amp;lt;li class=&#39;sexy-digg&#39;&amp;gt;&amp;lt;a expr:href=&#39;&quot; http://digg.com/submit?url=&quot; + data:post.url + &quot;&amp;amp;title=&quot; + data:post.title&#39; target=&#39;_blank&#39;/&amp;gt;&amp;lt;/li&amp;gt;

&amp;lt;li class=&#39;sexy-technorati&#39;&amp;gt;&amp;lt;a expr:href=&#39;&quot; http://technorati.com/faves?add=&quot; + data:post.url + &quot;&amp;amp;title=&quot; + data:post.title&#39; target=&#39;_blank&#39;/&amp;gt;&amp;lt;/li&amp;gt;

&amp;lt;li class=&#39;sexy-reddit&#39;&amp;gt;&amp;lt;a expr:href=&#39;&quot; http://www.reddit.com/submit?url=&quot; + data:post.url + &quot;&amp;amp;title=&quot; + data:post.title&#39; target=&#39;_blank&#39;/&amp;gt;&amp;lt;/li&amp;gt;

&amp;lt;li class=&#39;sexy-stumble&#39;&amp;gt;&amp;lt;a expr:href=&#39;&quot; http://www.stumbleupon.com/submit?url=&quot; + data:post.url + &quot;&amp;amp;title=&quot; + data:post.title&#39; target=&#39;_blank&#39;/&amp;gt;&amp;lt;/li&amp;gt;

&amp;lt;li class=&#39;sexy-designfloat&#39;&amp;gt;&amp;lt;a expr:href=&#39;&quot;http://www.designfloat.com/submit.php?url=&quot; + data:post.url + &quot;&amp;amp;title=&quot; + data:post.title&#39; target=&#39;_blank&#39;/&amp;gt;&amp;lt;/li&amp;gt;

&amp;lt;li class=&#39;sexy-facebook&#39;&amp;gt;&amp;lt;a expr:href=&#39;&quot; http://www.facebook.com/sharer.php?u=&quot; + data:post.url + &quot;&amp;amp;title=&quot; + data:post.title&#39; target=&#39;_blank&#39;/&amp;gt;&amp;lt;/li&amp;gt;

&amp;lt;li class=&#39;sexy-twitter&#39;&amp;gt;&amp;lt;a expr:href=&#39;&quot; http://twitthis.com/twit?url=&quot; + data:post.url + &quot;&amp;amp;title=&quot; + data:post.title&#39; target=&#39;_blank&#39;/&amp;gt;&amp;lt;/li&amp;gt;

&amp;lt;li class=&#39;sexy-furl&#39;&amp;gt;&amp;lt;a expr:href=&#39;&quot; http://www.furl.net/storeIt.jsp?u=&quot; + data:post.url + &quot;&amp;amp;title=&quot; + data:post.title&#39; target=&#39;_blank&#39;/&amp;gt;&amp;lt;/li&amp;gt;

&amp;lt;li class=&#39;sexy-syndicate&#39;&amp;gt;&amp;lt;a href=&#39;http://feeds2.feedburner.com/YOUR-FEEDBURNER-ID&#39; title=&#39;Subscribe to RSS&#39;/&amp;gt;&amp;lt;/li&amp;gt;

&amp;lt;li class=&#39;sexy-email&#39;&amp;gt;&amp;lt;a expr:href=&#39;&quot; mailto:?subject=&quot; + data:post.url + &quot;&amp;amp;title=&quot; + data:post.title&#39; target=&#39;_blank&#39;/&amp;gt;&amp;lt;/li&amp;gt;

&amp;lt;/ul&amp;gt;
&amp;lt;span class=&#39;sexy-rightside&#39;/&amp;gt;&amp;lt;/div&amp;gt;
&lt;/pre&gt;&lt;br /&gt;
最後にYOUR-FEEDBURNER-IDの所を変える。&lt;br /&gt;
これで完成です！</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/9095761541429053163/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2011/02/bloggersexybookmark.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/9095761541429053163'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/9095761541429053163'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2011/02/bloggersexybookmark.html' title='BloggerでSexyBookmark導入'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiK4I-pZ13PScsU33I9uNVrVBn99Wnp9onBnOHlxtBhBmk1wqKOMMRaoVq0dbTEJJtgz_MrJmlpYA-HX0o2_cI-h8GQ14li1g4rBl1vJ_gVDPAjwAhRP5cTZC2qEQZ3uBI0opMGdbbgtCot/s72-c/Screen+shot+2011-01-30+at+23.05.51.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-6057244723317235726</id><published>2011-01-22T01:14:00.077+09:00</published><updated>2011-02-01T00:38:54.494+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Blogger Tips"/><title type='text'>BloggerでSyntaxHighlighter導入</title><content type='html'>blogでソースコードを貼りつけたい時に&lt;br /&gt;
分かりやすくハイライトしてくれる&lt;br /&gt;
&lt;a href=&quot;http://alexgorbatchev.com/SyntaxHighlighter/&quot;&gt;SyntaxHighlighter&lt;/a&gt;を導入しました。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
参考させていただいたリンク&lt;br /&gt;
・&lt;a href=&quot;http://moririn-web.blogspot.com/2010/03/bloggersyntax-hilighter.html&quot;&gt;BloggerにおけるSyntaxHighlighterの使い方&lt;/a&gt;&lt;br /&gt;
・&lt;a href=&quot;http://memories.zal.jp/WP/20091015_1630.html&quot;&gt;「SyntaxHighlighter」各要素ごとの設定項目&lt;/a&gt;&lt;br /&gt;
・&lt;a href=&quot;http://b.blavv.net/2009/06/bloggersyntaxhighlighter-2.html&quot;&gt;Blogger に SyntaxHighlighter 2 をインストールする&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
まずbloggerのHTMLの編集で&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: monospace; white-space: pre;&quot;&gt;&amp;lt;&lt;/span&gt;head&amp;gt;内にSyntaxHighlighterのコアjsファイルを導入。&lt;br /&gt;
&lt;pre class=&quot;brush: javascript;html-script: true&quot;&gt;&amp;lt;script src=&quot;http://alexgorbatchev.com/pub/sh/current/scripts/shCore.js&quot; type=&quot;text/javascript&quot;/&amp;gt;
&lt;/pre&gt;&lt;br /&gt;
次にハイライトしたい言語を選択し挿入。&lt;br /&gt;
&lt;pre class=&quot;brush: javascript;html-script: true&quot;&gt;&amp;lt;script src=&#39;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushRuby.js&#39; type=&#39;text/javascript&#39;/&amp;gt;
&amp;lt;script src=&#39;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPhp.js&#39; type=&#39;text/javascript&#39;/&amp;gt;
&amp;lt;script src=&#39;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPython.js&#39; type=&#39;text/javascript&#39;/&amp;gt;
&amp;lt;script src=&#39;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushSql.js&#39; type=&#39;text/javascript&#39;/&amp;gt;
&amp;lt;script src=&#39;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushJScript.js&#39; type=&#39;text/javascript&#39;/&amp;gt;
&amp;lt;script src=&#39;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushXml.js&#39; type=&#39;text/javascript&#39;/&amp;gt;
&amp;lt;script src=&#39;http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPlain.js&#39; type=&#39;text/javascript&#39;/&amp;gt;
&amp;lt;link href=&#39;http://alexgorbatchev.com/pub/sh/current/styles/shCoreDjango.css&#39; rel=&#39;stylesheet&#39; type=&#39;text/css&#39;/&amp;gt;
&lt;/pre&gt;&lt;br /&gt;
最後にSyntaxHighlighterを有効にする処理を挿入。&lt;br /&gt;
&lt;pre class=&quot;brush: javascript;&quot;&gt;&amp;lt;script type=&quot;text/javascript&quot;&amp;gt;
// Bloggerへの埋め込みなら以下の一行は必須です。
SyntaxHighlighter.config.bloggerMode = true;
// クリップボードSWFもホスティングしてもらいましょう。
SyntaxHighlighter.config.clipboardSwf = &#39;http://alexgorbatchev.com/pub/sh/current/scripts/clipboard.swf&#39;;
// 論理改行は無効にしておきます。
SyntaxHighlighter.defaults[&#39;wrap-lines&#39;] = false;
// 最後にSyntaxHighlighterを有効にします。
SyntaxHighlighter.all();
&amp;lt;/script&amp;gt;
&lt;/pre&gt;&lt;br /&gt;
これでソースコードをハイライトする準備が終了。&lt;br /&gt;
使い方は&lt;br /&gt;
&lt;pre class=&quot;brush: javascript;&quot;&gt;&amp;lt;pre class=&quot;brush: javascript;&quot;&amp;gt;
alert(&#39;Hello World!!&#39;);
&amp;lt;/pre&amp;gt;
&lt;/pre&gt;このようにpreタグで囲み、&lt;br /&gt;
class属性で使用したいbrushを選択するだけ。&lt;br /&gt;
&lt;br /&gt;
html-script&lt;br /&gt;
htmlやxmlもハイライトしてくれる。&lt;br /&gt;
&lt;pre class=&quot;brush: javascript;html-script: true&quot;&gt;&amp;lt;pre class=&quot;brush: javascript;html-script: true&quot;&amp;gt;
SampleCode
&amp;lt;/pre&amp;gt;
&lt;/pre&gt;&lt;br /&gt;
gutter: false;&lt;br /&gt;
行番号の表示、非表示&lt;br /&gt;
&lt;pre class=&quot;brush: javascript;gutter: false;&quot;&gt;&amp;lt;pre class=&quot;brush: javascript;gutter: false;&quot;&amp;gt;
サンプルコード
&amp;lt;/pre&amp;gt;
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
ページ上のハイライトされた要素をデフォルト隠す。&lt;br /&gt;
クリックすると開く。↓&lt;br /&gt;
&lt;pre class=&quot;brush: javascript;collapse: true&#39;&quot;&gt;&amp;lt;pre class=&quot;brush: javascript;collapse: true&#39;&quot;&amp;gt;
123456789
&amp;lt;/pre&amp;gt;
&lt;/pre&gt;&lt;br /&gt;
最後にCSSのテーマ&lt;br /&gt;
Defaultだとこれ&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi9sTeivrfKCi6ELLxrRYDKxUV9V29dgqtO6DstID1EMO6-o8REMLFLLSiFiQ50St-NXyQP_6TBgx7r0VOcbNfqAkwqHWk2kRszly9ht-H9yKUvI_XRYGK3Ga2M_FqEzic876ERQY1aYgq_/s1600/Screen+shot+2011-01-30+at+14.26.13.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;197&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi9sTeivrfKCi6ELLxrRYDKxUV9V29dgqtO6DstID1EMO6-o8REMLFLLSiFiQ50St-NXyQP_6TBgx7r0VOcbNfqAkwqHWk2kRszly9ht-H9yKUvI_XRYGK3Ga2M_FqEzic876ERQY1aYgq_/s400/Screen+shot+2011-01-30+at+14.26.13.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;最終的にblogのテーマに合わせると&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;Djangoが一番あってました。&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;他は&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;/div&gt;&lt;ul&gt;&lt;li&gt;Eclipse&lt;/li&gt;
&lt;li&gt;Emacs&lt;/li&gt;
&lt;li&gt;FadeToGray&lt;/li&gt;
&lt;li&gt;Midnight&lt;/li&gt;
&lt;li&gt;RDark&lt;/li&gt;
&lt;/ul&gt;などがあります。&lt;div&gt;ぜひお試しあれ♪&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/6057244723317235726/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2011/01/bloggersyntaxhighlighter.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/6057244723317235726'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/6057244723317235726'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2011/01/bloggersyntaxhighlighter.html' title='BloggerでSyntaxHighlighter導入'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi9sTeivrfKCi6ELLxrRYDKxUV9V29dgqtO6DstID1EMO6-o8REMLFLLSiFiQ50St-NXyQP_6TBgx7r0VOcbNfqAkwqHWk2kRszly9ht-H9yKUvI_XRYGK3Ga2M_FqEzic876ERQY1aYgq_/s72-c/Screen+shot+2011-01-30+at+14.26.13.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-5301218254318376227</id><published>2011-01-07T23:47:00.022+09:00</published><updated>2011-01-21T21:43:31.680+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="iPhoneアプリ開発"/><title type='text'>iPhoneアプリ申請の流れ</title><content type='html'>&lt;div&gt;おおまかな流れをまとめます。&lt;/div&gt;&lt;div&gt;key chain access で何度も証明書要求をし、同じkeyを作り、&lt;/div&gt;&lt;div&gt;uploadできない、もしくはupできてもInvalid Binary&lt;/div&gt;&lt;div&gt;だからダメと言われたりで散々だったので、簡単にまとめます。&lt;/div&gt;&lt;div&gt;&lt;!--&lt;a class=&quot;twitter-share-button&quot; data-count=&quot;vertical&quot; data-lang=&quot;ja&quot; data-via=&quot;yager&quot; href=&quot;http://twitter.com/share&quot;&gt;Tweet&lt;/a&gt;&lt;br /&gt;
&lt;script src=&quot;http://platform.twitter.com/widgets.js&quot; type=&quot;text/javascript&quot;&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;textarea&gt;&lt;br /&gt;
qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq&lt;br /&gt;
&lt;/textarea&gt;&lt;br /&gt;
&lt;textarea&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/textarea&gt;&lt;br /&gt;
--&gt;&lt;br /&gt;
&lt;/div&gt;開発したiPhoneアプリを実機にインストールして&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif; line-height: 22px;&quot;&gt;deviceでアプリを動かすためにprovisioning profileを取得します。&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;b&gt;1, Keychain access で証明書発行するためのcertificateを取得&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;iOS provisioning portalの&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif; line-height: 22px;&quot;&gt;左の欄のCertificatesから&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif; line-height: 22px;&quot;&gt;developmentを選択&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;→Key Chain Accessで取得したcertificateファイルを選択&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;→submit&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;→download&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif; line-height: 22px;&quot;&gt;→&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif; line-height: 22px;&quot;&gt;Key Chain Accessで証明書を確認。&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: red;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif; line-height: 22px;&quot;&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif; line-height: 22px;&quot;&gt;　※WWDR intermediate certificateも忘れずに！&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;h3 class=&quot;profilesicon&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif; font-size: small;&quot;&gt;2,Provisioning Profileの作成&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;&lt;h3 class=&quot;profilesicon&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif; font-size: small;&quot;&gt;(&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif; font-size: small; font-weight: normal; line-height: 22px;&quot;&gt;※deviceの登録、AppIDの作成は割愛。)&lt;/span&gt;&lt;/h3&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif; font-size: small;&quot;&gt;iOS provisioning portalの&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif; line-height: 22px;&quot;&gt;Provisioning&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif; line-height: 22px;&quot;&gt;→developmentを選択&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;→new profileを選択&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif; line-height: 22px;&quot;&gt;＊Certificates&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;div class=&quot;checkboxlist&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;h4 style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif; font-weight: normal;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif; font-weight: normal; line-height: 22px;&quot;&gt;＊App ID&lt;/span&gt;&lt;/h4&gt;&lt;/div&gt;&lt;div class=&quot;checkboxlist&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;h4 style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif; font-weight: normal; line-height: 22px;&quot;&gt;＊&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif; font-weight: normal; line-height: 22px;&quot;&gt;select an App ID&lt;/span&gt;&lt;/h4&gt;&lt;/div&gt;&lt;div class=&quot;checkboxlist last&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;h4 style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif; font-weight: normal;&quot;&gt;＊Devices&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h4&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;それぞれを選択、入力。&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times, &#39;Times New Roman&#39;, serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;downloadしたprovisioningを&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times, &#39;Times New Roman&#39;, serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;xcode organizerの自分のiPhoneのところに追加。&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times, &#39;Times New Roman&#39;, serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;これで実行する時にcode signを作成したprovisioningを選べばOK!!&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times, &#39;Times New Roman&#39;, serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;b&gt;&amp;nbsp;3, アプリを申請する際の流れ&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times, &#39;Times New Roman&#39;, serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;iOS provisioning portalの&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;h3 style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times, &#39;Times New Roman&#39;, serif; font-size: small; font-weight: normal; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;CertificatesのDistributionを選択&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;&lt;/div&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times, &#39;Times New Roman&#39;, serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;→上記のcertificateファイルをsubmit&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times, &#39;Times New Roman&#39;, serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;　(&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: red;&quot;&gt;※ここで注意すべきは,&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif; line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: red;&quot;&gt;はじめの証明書要求と同じファイルを選択すること。&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times, &#39;Times New Roman&#39;, serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: red;&quot;&gt;　　CertificateSigningRequest.certSigningRequestという名前のファイル。&lt;/span&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times, &#39;Times New Roman&#39;, serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;→download&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times, &#39;Times New Roman&#39;, serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times, &#39;Times New Roman&#39;, serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times; line-height: normal; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times, &#39;Times New Roman&#39;, serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times, &#39;Times New Roman&#39;, serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;iOS provisioning portalの&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times; line-height: normal; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;/div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times, &#39;Times New Roman&#39;, serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;h3 class=&quot;profilesicon&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times, &#39;Times New Roman&#39;, serif; font-size: small; font-weight: normal; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;ProvisioningのDistributionを選択&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;&lt;/div&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times, &#39;Times New Roman&#39;, serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;→上記同様&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times, &#39;Times New Roman&#39;, serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;→download&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times, &#39;Times New Roman&#39;, serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;→追加&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times, &#39;Times New Roman&#39;, serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;b&gt;4,Application LoaderでUp&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;この前にiTunes Connectにログインして&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;manage your appsでアプリ登録のその他諸々を設定。&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times, &#39;Times New Roman&#39;, serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;a href=&quot;http://gihyo.jp/dev/serial/01/iphone/0010&quot;&gt;http://gihyo.jp/dev/serial/01/iphone/0010&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;↑申請する時、この記事(&#39;09年3月27日)を読み進めながら&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;やっていたもんだからApplication Loader??な状態だった。&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;Finderで/Developer/Application/UtilitiesにApplication Loader発見！&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;でUpする前にXcodeのcode signでDistributionのを選択。&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;→buildファイルの削除。&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;→clean all&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;→build&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;→buildファイルのDistribution-iphoneosに.appができているので圧縮。&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;→.app.zipをApplication Loaderでup。&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;→これで問題なければ完了。reviewを待ちです。&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: x-large;&quot;&gt;Finish!!&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;とその前にManage Your Apps でCurrent Statusを確認。&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;Invalid Binary状態だとメールが来て、ちゃんとしたファイルを&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;送りなおさないといけません。waiting for reviewだとかIn reviewは大丈夫。&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3bENsowOJUJNz_lnGUmqCWFKCXi2eR2mfq4skebw6mwxRsxDwAqCdeLpJdssh8rjVd0SfpBuDDQ0a62FJ6DppG8bWZn_yV-IT3oj3yvpPbajptK9V-GCxpas5m_jqb-62LO-w3VrdTO1C/s1600/Screen+shot+2011-01-07+at+4.16.34.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;211&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3bENsowOJUJNz_lnGUmqCWFKCXi2eR2mfq4skebw6mwxRsxDwAqCdeLpJdssh8rjVd0SfpBuDDQ0a62FJ6DppG8bWZn_yV-IT3oj3yvpPbajptK9V-GCxpas5m_jqb-62LO-w3VrdTO1C/s400/Screen+shot+2011-01-07+at+4.16.34.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times, &#39;Times New Roman&#39;, serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times, &#39;Times New Roman&#39;, serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;b&gt;＊最後に&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif; line-height: 22px;&quot;&gt;注意すべきポイントを上げます。&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif; line-height: 22px;&quot;&gt;device用provisioningを取得する時&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;証明書を要求のため、自分の名前でkeyを作成しますが、&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;これをDistributionの時も同じものを使う所です。&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;今はreview待ちなんですが、これいつまで待たされるんでしょう。&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Times, &#39;Times New Roman&#39;, serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;とにかく自分が作ったアプリがApp Storeに載るのが楽しみですね。&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/5301218254318376227/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2011/01/iphone_07.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/5301218254318376227'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/5301218254318376227'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2011/01/iphone_07.html' title='iPhoneアプリ申請の流れ'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg3bENsowOJUJNz_lnGUmqCWFKCXi2eR2mfq4skebw6mwxRsxDwAqCdeLpJdssh8rjVd0SfpBuDDQ0a62FJ6DppG8bWZn_yV-IT3oj3yvpPbajptK9V-GCxpas5m_jqb-62LO-w3VrdTO1C/s72-c/Screen+shot+2011-01-07+at+4.16.34.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-1757254536675279445</id><published>2011-01-05T17:53:00.004+09:00</published><updated>2011-01-10T22:01:22.997+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="iPhoneアプリ開発"/><title type='text'>iPhone アプリ申請時に気をつけるべきこと</title><content type='html'>丸一日かかってiPhoneアプリ申請が完了。&lt;br /&gt;
現在、申請したアプリはWating For Review 状態。&lt;br /&gt;
今回はiPhoneアプリを申請する際につまづいたエラーなどをまとめていきます。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;＊証明書取得の際のsubmitができない&lt;/span&gt;&lt;br /&gt;
まず実機で動作確認するためにprovisioning profileを取得し&lt;br /&gt;
iOS Provisioning Portalで証明書を発行しようとしたが、&lt;br /&gt;
ファイルを選択→submitしても画面がかわらず失敗。&lt;br /&gt;
『Create iOS Development Certificate can&#39;t submit』などと検索して&lt;br /&gt;
&lt;a href=&quot;http://www.iphonedevsdk.com/forum/business-legal-app-store/20341-generate-submit-csr.html&quot;&gt;Generate /Submit a CSR - iPhone Dev SDK Forum&lt;/a&gt;見つけました。&lt;br /&gt;
&lt;br /&gt;
解決法：&lt;br /&gt;
ブラウザをchromeからsafariに変えたらすんなりsubmitできた。これだけ。&lt;br /&gt;
provisioning取得で参考にしたページ:&lt;a href=&quot;http://gihyo.jp/dev/serial/01/iphone/0009&quot;&gt;第9回デバイスでアプリを動かす:目指せ！iPhoneアプリ開発エキスパートgihyou.jp&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;＊iTunes Connect　ログイン失敗。&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;&quot;&gt;実機での動きの確認を完了し、&lt;/div&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;&quot;&gt;iTunes Connectにログインしようとすると&lt;/div&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;&quot;&gt;『Apple ID does not have permission to access iTunes Connect』&lt;/div&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;&quot;&gt;正確なIDとパスワードを入力してもダメ。&lt;br /&gt;
どうやってもiTunes Connectにログインできない。&lt;/div&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;&quot;&gt;解決法:&lt;/div&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;&quot;&gt;サポートに連絡。以下内容。&lt;/div&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;&quot;&gt;すると半日もしない内に連絡がきて、&lt;/div&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;&quot;&gt;ログイン可能に。&lt;/div&gt;&lt;blockquote&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: arial, sans-serif;&quot;&gt;Inquiry from &amp;nbsp;regarding iOS Developer Provisioning Portal&lt;br /&gt;
Region: Japan&lt;br /&gt;
&lt;br /&gt;
Hi.&lt;br /&gt;
&lt;br /&gt;
I cant sign in iTunes connect.&lt;br /&gt;
Error message is this.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;Apple ID does not have permission to access iTunes Connect.&lt;br /&gt;
&lt;br /&gt;
Please support me.&lt;br /&gt;
&lt;br /&gt;
Apple ID :&amp;nbsp;(あなたのID)&lt;br /&gt;
Person ID : (数字何桁かの数字)&lt;br /&gt;
&lt;/span&gt;&lt;/blockquote&gt;&lt;br /&gt;
&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;＊&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: arial, sans-serif;&quot;&gt;&lt;strong&gt;Invalid Signature&lt;/strong&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: arial, sans-serif;&quot;&gt;&amp;nbsp;- Make sure you have signed your application with a distribution certificate, not an ad hoc certificate or a development certificate. Verify that the code signing settings in Xcode are correct at the target level (which override any values at the project level). Additionally, make sure the bundle you are uploading was built using a Release target in Xcode, not a Simulator target. If you are certain your code signing settings are correct, choose &quot;Clean All&quot; in Xcode, delete the &quot;build&quot; directory in the Finder, and rebuild your release target.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;Info.plistでBundle identifierを正確に入力、&lt;/div&gt;&lt;div&gt;code署名IDもDistribution用のprovisioningを選択し、&lt;/div&gt;&lt;div&gt;Application Loaderでuploadが成功したが後にAppleから&lt;/div&gt;&lt;div&gt;上記のような連絡がきた。&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;そして、distribution用のprovisioningを発行し直し、&lt;/div&gt;&lt;div&gt;buildをファイルを削除、buildのクリーン→buildをすると&lt;/div&gt;&lt;div&gt;下のようなエラーが&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, sans-serif; line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;h3 style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, sans-serif; line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;＊Command /usr/bin/codesign failed with exit code 1&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, sans-serif; line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;&lt;b&gt;＊CodeSign error: Certificate identity &#39;iPhone Distribution: (自分の名前) &#39; appears more than once in the keychain. The codesign tool requires there only be one.&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, sans-serif; line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, sans-serif; line-height: 22px;&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #333333; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, sans-serif; line-height: 22px;&quot;&gt;&lt;span class=&quot;goog_qs-tidbit goog_qs-tidbit-0&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 13px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-family: Times; line-height: normal;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, sans-serif; line-height: 22px;&quot;&gt;証明書のIDが重複しているということ。&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-family: Times; line-height: normal;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, sans-serif; line-height: 22px;&quot;&gt;つまりひとつの証明書に二つのkeyがあるので問題になる。&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-family: Times; line-height: normal;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, sans-serif; line-height: 22px;&quot;&gt;何度もprovisioningを発行してる内に、keyを作りまくっていたw&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-family: Times; line-height: normal;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, sans-serif; line-height: 22px;&quot;&gt;秘密鍵と正確ではない証明書を同じ名前で作っているとこのように言われる。&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-family: Times; line-height: normal;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, sans-serif; line-height: 22px;&quot;&gt;解決法:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;div style=&quot;font-family: Times; line-height: normal;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, sans-serif; line-height: 22px;&quot;&gt;一番古いkey以外を削除するとコンパイルが通り完了。&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style=&quot;font-family: Times; line-height: normal; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-family: Times, &#39;Times New Roman&#39;, serif; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: red;&quot;&gt;※&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: red; font-family: Times, &#39;Times New Roman&#39;, serif; line-height: 22px;&quot;&gt;CertificateSigningRequest.certSigningRequestという要求ファイルを作るのは一回でいい。&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-family: Times; line-height: normal; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: red; font-family: Times, &#39;Times New Roman&#39;, serif; line-height: 22px;&quot;&gt;それでdistribution用provisioningもsubmitすれば,keyの重複にはならない。&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;font-family: Times; line-height: normal;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, sans-serif; line-height: 22px;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-family: Times; line-height: normal;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, sans-serif; line-height: 22px;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;div style=&quot;font-family: Times; line-height: normal;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, sans-serif; line-height: 22px;&quot;&gt;エラー解決に参考にしたページ:&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;font-family: Times; line-height: normal;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, sans-serif; line-height: 22px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: #333333; font-family: メイリオ, &#39;ヒラギノ角ゴ Pro W3&#39;, sans-serif; line-height: 19px;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;h2 0px;=&quot;&quot; 1.2;=&quot;&quot; 10px;=&quot;&quot; 7px;=&quot;&quot; 8px;&quot;=&quot;&quot; 8px;=&quot;&quot; class=&quot;subTitle01&quot; font-family:=&quot;&quot; initial;=&quot;&quot; line-height:=&quot;&quot; list-style-image:=&quot;&quot; list-style-position:=&quot;&quot; list-style-type:=&quot;&quot; margin-bottom:=&quot;&quot; margin-left:=&quot;&quot; margin-right:=&quot;&quot; margin-top:=&quot;&quot; none;=&quot;&quot; padding-bottom:=&quot;&quot; padding-left:=&quot;&quot; padding-right:=&quot;&quot; padding-top:=&quot;&quot; times;=&quot;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: #333333; font-family: メイリオ, &#39;ヒラギノ角ゴ Pro W3&#39;, sans-serif; font-size: small; font-weight: normal; line-height: 19px;&quot;&gt;&lt;a href=&quot;http://sarudeki.maiway.jp/forum/topic/116&quot;&gt;iTunes Connectへ入れない « 寺子屋サルでき&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;&lt;h2 0px;=&quot;&quot; 1.2;=&quot;&quot; 10px;=&quot;&quot; 7px;=&quot;&quot; 8px;&quot;=&quot;&quot; 8px;=&quot;&quot; class=&quot;subTitle01&quot; font-family:=&quot;&quot; initial;=&quot;&quot; line-height:=&quot;&quot; list-style-image:=&quot;&quot; list-style-position:=&quot;&quot; list-style-type:=&quot;&quot; margin-bottom:=&quot;&quot; margin-left:=&quot;&quot; margin-right:=&quot;&quot; margin-top:=&quot;&quot; none;=&quot;&quot; padding-bottom:=&quot;&quot; padding-left:=&quot;&quot; padding-right:=&quot;&quot; padding-top:=&quot;&quot; times;=&quot;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: #333333; font-family: メイリオ, &#39;ヒラギノ角ゴ Pro W3&#39;, sans-serif; font-weight: normal; line-height: 19px;&quot;&gt;&lt;a href=&quot;http://sarudeki.maiway.jp/forum/topic/116&quot;&gt;&lt;/a&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;a href=&quot;http://gihyo.jp/dev/serial/01/iphone/0010&quot;&gt;第10回App Storeでアプリを公開 gihyou.jp&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;&lt;h2 0px;=&quot;&quot; 1.2;=&quot;&quot; 10px;=&quot;&quot; 7px;=&quot;&quot; 8px;&quot;=&quot;&quot; 8px;=&quot;&quot; class=&quot;subTitle01&quot; font-family:=&quot;&quot; initial;=&quot;&quot; line-height:=&quot;&quot; list-style-image:=&quot;&quot; list-style-position:=&quot;&quot; list-style-type:=&quot;&quot; margin-bottom:=&quot;&quot; margin-left:=&quot;&quot; margin-right:=&quot;&quot; margin-top:=&quot;&quot; none;=&quot;&quot; padding-bottom:=&quot;&quot; padding-left:=&quot;&quot; padding-right:=&quot;&quot; padding-top:=&quot;&quot; times;=&quot;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;a href=&quot;http://gihyo.jp/dev/serial/01/iphone/0010&quot;&gt;&lt;/a&gt;&lt;/span&gt;&lt;a href=&quot;http://token.sakura.ne.jp/wp/?p=191&quot;&gt;http://token.sakura.ne.jp/wp/?p=191&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;a href=&quot;http://stackoverflow.com/questions/47941/invalid-iphone-application-binary&quot;&gt;Invalid iPhone Application Binary:stackoverflow&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/1757254536675279445/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2011/01/iphone.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/1757254536675279445'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/1757254536675279445'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2011/01/iphone.html' title='iPhone アプリ申請時に気をつけるべきこと'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-5405451345756476715</id><published>2010-12-19T21:14:00.004+09:00</published><updated>2010-12-19T21:49:19.328+09:00</updated><title type='text'>Chrome Web Storeで便利な無料アプリ5選</title><content type='html'>&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjMava8zCAKnTjm3S0bho6Nms42hLIrygcqA8KjtWQQpaeZKlMoKEzSALcSmEIAps1BNi1C_aNgmAMyBfnw5ZlXb72Z9rDQuSfaRJNLyT8R9woG1cPsyHSjKUAawRoGAAYtxseYBZX_7EAK/s1600/Screen+shot+2010-12-12+at+22.04.23.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;310&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjMava8zCAKnTjm3S0bho6Nms42hLIrygcqA8KjtWQQpaeZKlMoKEzSALcSmEIAps1BNi1C_aNgmAMyBfnw5ZlXb72Z9rDQuSfaRJNLyT8R9woG1cPsyHSjKUAawRoGAAYtxseYBZX_7EAK/s640/Screen+shot+2010-12-12+at+22.04.23.png&quot; width=&quot;610&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;a href=&quot;https://chrome.google.com/webstore?hl=en-US&quot;&gt;Chrome Web Store&lt;/a&gt;の紹介です。&lt;br /&gt;
Chromeユーザーなら、かなり便利。現時点ではweb storeの日本語化がされていない、課金アプリはダウンロードできない、アプリ数が少ないですがGoogleDocuments,Gmail,Books,Reader,News,Calendarなどはすぐに開けることが可能になりEvernote,TweetDeckなどわざわざデスクップアプリを使わなくてもブラウザだけで済むようになります。また単なるWebページへのショートカットという意味でのアプリも多いですが、News系のアプリのインターフェースはシンプルですばらしいものが多いです。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: x-large;&quot;&gt;∇&lt;a href=&quot;https://chrome.google.com/webstore/detail/ikhnbijacmpeikpnoeddepkehmcofgbh?hl=en-US&quot;&gt;Seesmic&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLBkp7nEuty4iqDfmsjchoucWTNGMsen9vYJ9g6NhCop7UjUng-SWmbiAXpzblmTCHPYkIplRLogFW8eSmbotLxPIGYx-n20bSsN7CFbRYQ-iwNReYd_foxk569YSlxPnQvw7up5V_iyVH/s1600/Screen+shot+2010-12-12+at+22.34.34.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;291&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLBkp7nEuty4iqDfmsjchoucWTNGMsen9vYJ9g6NhCop7UjUng-SWmbiAXpzblmTCHPYkIplRLogFW8eSmbotLxPIGYx-n20bSsN7CFbRYQ-iwNReYd_foxk569YSlxPnQvw7up5V_iyVH/s400/Screen+shot+2010-12-12+at+22.34.34.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Twitter,Facebook,Linkedin,Foursquareなどのタイムラインを一括で見ることができます。⇒&lt;a href=&quot;https://chrome.google.com/webstore/detail/ikhnbijacmpeikpnoeddepkehmcofgbh?hl=en-US&quot;&gt;Downloadページへ&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: x-large;&quot;&gt;∇&lt;a href=&quot;https://chrome.google.com/webstore/detail/ipmhoehjioleannhdgjkpdmkcdlaagek&quot;&gt;GrooveShark&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;object height=&quot;385&quot; width=&quot;340&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/bGQ8VLqUfc0?fs=1&amp;amp;hl=en_US&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/bGQ8VLqUfc0?fs=1&amp;amp;hl=en_US&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;440&quot; height=&quot;385&quot;&gt;&lt;/embed&gt;&lt;/object&gt; &lt;br /&gt;
オンラインの無料音楽配信サービス。聞きたい音楽を検索するだけで楽々Listen to Music。Play Listの作成、radioもあり。⇒&lt;a href=&quot;https://chrome.google.com/webstore/detail/ipmhoehjioleannhdgjkpdmkcdlaagek&quot;&gt;Downloadページへ&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: x-large;&quot;&gt;∇&lt;a href=&quot;https://chrome.google.com/webstore/detail/jkgifejmcbpindphhlicjdholopmndon&quot;&gt;Wikihood World Browser&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh-dkc72Q4n32vF1ePzZQomcd79Z0vghTWSmUNkEVPFD6VGuWNPvxr5ZE0iGaXNCXh2ineC9XAJ0EDMm-KaXlkiq-beIpldtvnSIrc8xVdWMDlU_V_m3mBQ1NaH12K4LRigM6sLlWPhiip0/s1600/%25E3%2582%25B9%25E3%2582%25AF%25E3%2583%25AA%25E3%2583%25BC%25E3%2583%25B3%25E3%2582%25B7%25E3%2583%25A7%25E3%2583%2583%25E3%2583%2588%25EF%25BC%25882010-12-19+17.27.38%25EF%25BC%2589.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;400&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh-dkc72Q4n32vF1ePzZQomcd79Z0vghTWSmUNkEVPFD6VGuWNPvxr5ZE0iGaXNCXh2ineC9XAJ0EDMm-KaXlkiq-beIpldtvnSIrc8xVdWMDlU_V_m3mBQ1NaH12K4LRigM6sLlWPhiip0/s640/%25E3%2582%25B9%25E3%2582%25AF%25E3%2583%25AA%25E3%2583%25BC%25E3%2583%25B3%25E3%2582%25B7%25E3%2583%25A7%25E3%2583%2583%25E3%2583%2588%25EF%25BC%25882010-12-19+17.27.38%25EF%25BC%2589.png&quot; width=&quot;610&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
まるで旅をしながら世界の歴史や文化を体感できる。Location機能で現在地付近のwikipediaのデータと地図、写真を合わせた旅行ガイドとしても使えます。ただ日本語化はされていないので、英語学習にはぴったりかも。⇒&lt;a href=&quot;https://chrome.google.com/webstore/detail/jkgifejmcbpindphhlicjdholopmndon&quot;&gt;Downloadページへ&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
iPhone,iPadアプリはこちら⇒ Wikihood for iPad - &lt;a href=&quot;http://itun.es/iFH39D&quot;&gt;iPad&lt;/a&gt;&amp;nbsp;&amp;nbsp;Wikihood -&amp;nbsp;&lt;a href=&quot;http://itunes.apple.com/jp/app/wikihood/id317776221?mt=8&quot;&gt;iPhone App&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: x-large;&quot;&gt;&lt;b&gt;∇&lt;a href=&quot;https://chrome.google.com/webstore/detail/aimodnlfiikjjnmdchihablmkdeobhad&quot;&gt;Write Space&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgpiH2rIUwyBxSXnP_pS4EDzHAGNuhfyckOgLXKUXsYlGBkFTIa9vlickA7dQOo4bomtT5E_EgWHGhBn60OdJJ9mDOviH5HOSQq45db7jSUJuTXlvrO-2L8wS79dlDuH0OBvWg2G-ZglSyM/s1600/%25E3%2582%25B9%25E3%2582%25AF%25E3%2583%25AA%25E3%2583%25BC%25E3%2583%25B3%25E3%2582%25B7%25E3%2583%25A7%25E3%2583%2583%25E3%2583%2588%25EF%25BC%25882010-12-19+18.01.15%25EF%25BC%2589.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;250&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgpiH2rIUwyBxSXnP_pS4EDzHAGNuhfyckOgLXKUXsYlGBkFTIa9vlickA7dQOo4bomtT5E_EgWHGhBn60OdJJ9mDOviH5HOSQq45db7jSUJuTXlvrO-2L8wS79dlDuH0OBvWg2G-ZglSyM/s400/%25E3%2582%25B9%25E3%2582%25AF%25E3%2583%25AA%25E3%2583%25BC%25E3%2583%25B3%25E3%2582%25B7%25E3%2583%25A7%25E3%2583%2583%25E3%2583%2588%25EF%25BC%25882010-12-19+18.01.15%25EF%25BC%2589.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: x-large;&quot;&gt;&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
単なるText Editorですが地味に役に立ちますよこれは。なにかアイデアが浮かんだ時、メモしなくちゃならない時、さっとChromeで新しいタブを開き、write spaceに書くだけで勝手に保存してくれます。設定でフォント指定、背景指定、ファイルのインポートなどが行えます。⇒&lt;a href=&quot;https://chrome.google.com/webstore/detail/aimodnlfiikjjnmdchihablmkdeobhad&quot;&gt;ダウンロードページへ&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
もっと保存容量が欲しいって方はこちら⇒&lt;a href=&quot;https://chrome.google.com/webstore/detail/mijlebbfndhelmdpmllgcfadlkankhok?hl=en-US&quot;&gt;Quick Note&lt;/a&gt;&lt;br /&gt;
UIがiPhone,iPadのメモとそっくりです。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: x-large;&quot;&gt;&lt;b&gt;∇&lt;a href=&quot;https://chrome.google.com/webstore/detail/hkpcelemhneoooapbbopolpjhmbfmnbf?hl=en-US&quot;&gt;NPR for Chrome&amp;nbsp;&lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhzBZ0OJS80prXz1ok9jfzaZimwuLCFNhjgXdjk-OcxPW_9YyKJNR5YdCG0ho0ioe3kg04XXK5XRzM7pdUfG6JQ_a0gpnkS8tftzzJmz11eX7bNLbOSP539eZbviH2fpt3L1wb4IvUyhSzi/s1600/%25E3%2582%25B9%25E3%2582%25AF%25E3%2583%25AA%25E3%2583%25BC%25E3%2583%25B3%25E3%2582%25B7%25E3%2583%25A7%25E3%2583%2583%25E3%2583%2588%25EF%25BC%25882010-12-19+21.00.53%25EF%25BC%2589.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;400&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhzBZ0OJS80prXz1ok9jfzaZimwuLCFNhjgXdjk-OcxPW_9YyKJNR5YdCG0ho0ioe3kg04XXK5XRzM7pdUfG6JQ_a0gpnkS8tftzzJmz11eX7bNLbOSP539eZbviH2fpt3L1wb4IvUyhSzi/s640/%25E3%2582%25B9%25E3%2582%25AF%25E3%2583%25AA%25E3%2583%25BC%25E3%2583%25B3%25E3%2582%25B7%25E3%2583%25A7%25E3%2583%2583%25E3%2583%2588%25EF%25BC%25882010-12-19+21.00.53%25EF%25BC%2589.png&quot; width=&quot;610&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NYTimesのユーザインターフェースもシンプルで見やすいのですが、NPRは最新のニュースをリスニングできる点がいいです。気に入ったtopicsがあれば自分だけのplaylistの作成もできます。英語学習にも是非。&lt;br /&gt;
⇒&lt;a href=&quot;https://chrome.google.com/webstore/detail/hkpcelemhneoooapbbopolpjhmbfmnbf?hl=en-US&quot;&gt;ダウンロードページへ&lt;/a&gt;&lt;br /&gt;
拡張機能はこちら⇒&lt;a href=&quot;https://chrome.google.com/extensions/detail/hcamfjcklnmlbokoackecfjidfjafgog&quot;&gt;NPR: News, Music and Books&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NYTimesのUI。&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyf0DMl5wOuQkAzWjO742mnXQxT6dEjqo-cyF6NlKRrakqsamJu4YSVek_8ZsufeqG3fniuq3zQU9ouSRgCqX7kaqRNTTW8SdvtouEVoteDfkVepoM1T3ySV5EDmI-M76mM450my2IWIzt/s1600/%25E3%2582%25B9%25E3%2582%25AF%25E3%2583%25AA%25E3%2583%25BC%25E3%2583%25B3%25E3%2582%25B7%25E3%2583%25A7%25E3%2583%2583%25E3%2583%2588%25EF%25BC%25882010-12-19+19.21.07%25EF%25BC%2589.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;400&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyf0DMl5wOuQkAzWjO742mnXQxT6dEjqo-cyF6NlKRrakqsamJu4YSVek_8ZsufeqG3fniuq3zQU9ouSRgCqX7kaqRNTTW8SdvtouEVoteDfkVepoM1T3ySV5EDmI-M76mM450my2IWIzt/s640/%25E3%2582%25B9%25E3%2582%25AF%25E3%2583%25AA%25E3%2583%25BC%25E3%2583%25B3%25E3%2582%25B7%25E3%2583%25A7%25E3%2583%2583%25E3%2583%2588%25EF%25BC%25882010-12-19+19.21.07%25EF%25BC%2589.png&quot; width=&quot;610&quot; /&gt;&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/5405451345756476715/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2010/12/chrome-web-store5.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/5405451345756476715'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/5405451345756476715'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2010/12/chrome-web-store5.html' title='Chrome Web Storeで便利な無料アプリ5選'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjMava8zCAKnTjm3S0bho6Nms42hLIrygcqA8KjtWQQpaeZKlMoKEzSALcSmEIAps1BNi1C_aNgmAMyBfnw5ZlXb72Z9rDQuSfaRJNLyT8R9woG1cPsyHSjKUAawRoGAAYtxseYBZX_7EAK/s72-c/Screen+shot+2010-12-12+at+22.04.23.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-6726148692202218709</id><published>2010-07-10T23:41:00.001+09:00</published><updated>2010-07-10T23:54:47.409+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="google"/><title type='text'>Blogger Statsのリアルタイム解析機能</title><content type='html'>Bloggerでリアルタイム解析ができるようになってました。&lt;a href=&quot;http://www.google.com/intl/ja/analytics/&quot;&gt;Google Analytics&lt;/a&gt;では数時間毎のデータは更新してくれますが、リアルタイム解析はできませんからすごく便利になりました。たった今このブログに訪問してくださっている人のアクセスが分かります。より詳しい解析はGoogle Analyticsには劣りますが、bloggerはgoogleのサービスであるので、google analyticsもリアルタイム解析へと移るのでしょう。&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjtQaRf0ZE8pDuZGTwdnhfhGHF0Hl0zOIGvQWLWPa5jY0aa32fLkQshVzaSCV5fd0_1iFfp-kIkWyxACZEqxucIOU26dXE8VmC05fpkjD_Gl9WWBJHff1awiV8AH8KFDG02W8MALEjZUaN-/s1600/blogger-stats.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;364&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjtQaRf0ZE8pDuZGTwdnhfhGHF0Hl0zOIGvQWLWPa5jY0aa32fLkQshVzaSCV5fd0_1iFfp-kIkWyxACZEqxucIOU26dXE8VmC05fpkjD_Gl9WWBJHff1awiV8AH8KFDG02W8MALEjZUaN-/s400/blogger-stats.png&quot; width=&quot;530&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;Bloggerを使ってブログを書いている方は是非、ウェブ解析ツールとしてBloggerの統計機能を活用すべきだと思います。&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;【統計への道順】&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;ダッシュボード⇒その他のコンテンツ⇒Blogger in Draft ⇒収益化の横に『統計』が新しくできています。&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;【Blogger Statsの機能】&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;大きく分けて４つあります。シンプルです。&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;∇Overview&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;全体の概観です。直近の現在、今日、昨日、先月、今までの全ての期間のPVが一瞬にしてわかります。&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;∇Posts&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;人気のある記事をランキング順で表示してくれます。&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;∇Traffic Sources&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;リンク元（参照元）のランキングやサイト、検索キーワードのランキングなどを順位付けて表示してくれます。&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;∇Audience&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;clear: both; text-align: left;&quot;&gt;国順のPV（もちろん日本語で書いているのでほとんどが日本ですが）を地図で示してくれます。また、どのブラウザーでのPVが多いか、どのOSからのアクセスが多いかを円グラフで表示してくれます。&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjQzmlhyphenhyphenClZJ9brnjQXrYLLGgGlK0032-MZmBqmT2VKhjICDV35Bnc9OAEJCtgkALOgqZFI6tsgUoNDExMmKDAIB6cE0r0Qcp4aIr1TkyKEY074B_0Exj6iHHJHO8SwQZ6o9T708KzSHax9/s1600/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-07-10+22.31.52%EF%BC%89.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;128&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjQzmlhyphenhyphenClZJ9brnjQXrYLLGgGlK0032-MZmBqmT2VKhjICDV35Bnc9OAEJCtgkALOgqZFI6tsgUoNDExMmKDAIB6cE0r0Qcp4aIr1TkyKEY074B_0Exj6iHHJHO8SwQZ6o9T708KzSHax9/s200/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-07-10+22.31.52%EF%BC%89.png&quot; width=&quot;200&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEirvNvOr6Qhy2pAh3VLNsSnv62J_scwkcb4BN_faZlwuaHQoH83F6eKi5mWUJkhhJe18qN3xKAOUrQA3cJgIIwHFAeswrxT38Zg7apEtOUYhNTECogy5OLizLdBXahipBx9p94y9RbWIKTI/s1600/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-07-10+22.32.20%EF%BC%89.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;115&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEirvNvOr6Qhy2pAh3VLNsSnv62J_scwkcb4BN_faZlwuaHQoH83F6eKi5mWUJkhhJe18qN3xKAOUrQA3cJgIIwHFAeswrxT38Zg7apEtOUYhNTECogy5OLizLdBXahipBx9p94y9RbWIKTI/s200/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-07-10+22.32.20%EF%BC%89.png&quot; width=&quot;200&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
上のグラフはManson&#39;s Theoryの場合です。&lt;br /&gt;
ブラウザ、OS共に非常にバランスがとれています。&lt;br /&gt;
いいことなのかよくわかりませんが。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
【関連記事】&lt;br /&gt;
&lt;a href=&quot;http://jp.techcrunch.com/archives/20100702google-adds-real-time-stats-to-blogger-why-not-to-google-analytics/&quot;&gt;Googel Analytics、いよいよリアルタイム化か？まずはBloggerにてリアルタイム解析機能を提供開始。by TechCrunch&lt;/a&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/6726148692202218709/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2010/07/blogger-stats.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/6726148692202218709'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/6726148692202218709'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2010/07/blogger-stats.html' title='Blogger Statsのリアルタイム解析機能'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjtQaRf0ZE8pDuZGTwdnhfhGHF0Hl0zOIGvQWLWPa5jY0aa32fLkQshVzaSCV5fd0_1iFfp-kIkWyxACZEqxucIOU26dXE8VmC05fpkjD_Gl9WWBJHff1awiV8AH8KFDG02W8MALEjZUaN-/s72-c/blogger-stats.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-4844453425802479173</id><published>2010-07-09T01:43:00.000+09:00</published><updated>2010-07-09T01:43:58.748+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="iPhone アプリ"/><title type='text'>iPhoneのカメラアプリで服が透けて見える？</title><content type='html'>Nude it!!&lt;br /&gt;
&lt;object height=&quot;385&quot; width=&quot;640&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/AHSEbDdep3Y&amp;amp;hl=ja_JP&amp;amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/AHSEbDdep3Y&amp;amp;hl=ja_JP&amp;amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;540&quot; height=&quot;385&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;object height=&quot;385&quot; width=&quot;640&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/G_AzDO_uwz8&amp;amp;hl=ja_JP&amp;amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/G_AzDO_uwz8&amp;amp;hl=ja_JP&amp;amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;540&quot; height=&quot;385&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;
&lt;br /&gt;
服が透けて全て見えるアプリ。&lt;br /&gt;
もちろんジョークですけど、&lt;br /&gt;
App storeで検索してしまいました...</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/4844453425802479173/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2010/07/iphone.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/4844453425802479173'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/4844453425802479173'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2010/07/iphone.html' title='iPhoneのカメラアプリで服が透けて見える？'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-6757509038930576357</id><published>2010-07-07T23:48:00.002+09:00</published><updated>2010-07-08T00:32:28.370+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Safari Extensions"/><title type='text'>たった5分でYouTubeの動画、音楽をダウンロードする方法</title><content type='html'>Safari5がリリースされ、拡張機能が使えるようになりました。&lt;br /&gt;
今回紹介するのはYouTubeの動画をSafariでダウンロードするための拡張機能です。すごく簡単です。&lt;br /&gt;
&lt;br /&gt;
まず以下URLでダウンロード&lt;br /&gt;
→&lt;a href=&quot;http://code.google.com/p/safari-extensions/downloads/detail?name=YouTubeDownloader.safariextz&amp;amp;can=2&amp;amp;q=&quot;&gt;YouTube Downloader&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
∇はじめてSafariの拡張機能を使う方はそのままだとインストールできないので、Safariの環境設定→詳細をクリック→一番下の『メニューバーに&quot;開発&quot;メニューを表示』にチェック。&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiy1wvmbCHkUQZ6oYNt88BQsWUIrVkCoh1kZNbbnQ0LnC8LYo1E1n_zuyQEuFQiIWg29SbO8G7qCrkJbChlL7VhxyL4gD6zFfje0cWgqAJzX2AKngTVv0VNtEVyUl6RDwDU4J8L8yNNwtGP/s1600/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-07-07+21.02.29%EF%BC%89.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;181&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiy1wvmbCHkUQZ6oYNt88BQsWUIrVkCoh1kZNbbnQ0LnC8LYo1E1n_zuyQEuFQiIWg29SbO8G7qCrkJbChlL7VhxyL4gD6zFfje0cWgqAJzX2AKngTVv0VNtEVyUl6RDwDU4J8L8yNNwtGP/s400/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-07-07+21.02.29%EF%BC%89.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
∇メニューバーに『開発』が表示されました。&lt;br /&gt;
そして開発をクリックし、『拡張機能を有効にする』をクリック。これでインストール可能となります。※このように設定を行わないとインストールできません。&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjdcEUUhwojgj7ZlxlS7XQ9RRNvVICtP2kovLs71926Tm2I_uFP0nekOnbBFcp5moawJB0Kw9qTW0bKpNh-0t5NFolc7N23GAhyphenhyphenxfNH1jttrciepwNa4lAueFN2LYpqTnYYx2sqtuGVx2Li/s1600/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-07-07+21.07.44%EF%BC%89.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;400&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjdcEUUhwojgj7ZlxlS7XQ9RRNvVICtP2kovLs71926Tm2I_uFP0nekOnbBFcp5moawJB0Kw9qTW0bKpNh-0t5NFolc7N23GAhyphenhyphenxfNH1jttrciepwNa4lAueFN2LYpqTnYYx2sqtuGVx2Li/s400/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-07-07+21.07.44%EF%BC%89.png&quot; width=&quot;381&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
∇先程ダウンロードした拡張機能のYouTube Downloaderをインストールします。インストールされている拡張機能を見るには、先ほどの環境設定から見ることができます。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjMh_X2MZCGDnNJVgy02U2IGMLHDxJuC44obA2AmfhwUSRUu1snEbsunLfw2Qt7SJaMyvD-CkINET0hdcumzHTo_rGT5x8lwQRzVJ-mI4Z5Ra8fkBaJ_NgsoL0TzMPmH5DFaRH4mJb0wgD_/s1600/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-07-07+21.16.16%EF%BC%89.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;300&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjMh_X2MZCGDnNJVgy02U2IGMLHDxJuC44obA2AmfhwUSRUu1snEbsunLfw2Qt7SJaMyvD-CkINET0hdcumzHTo_rGT5x8lwQRzVJ-mI4Z5Ra8fkBaJ_NgsoL0TzMPmH5DFaRH4mJb0wgD_/s400/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-07-07+21.16.16%EF%BC%89.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
∇インストール完了後、SafariでYouTubeを見てみると&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgUpzTYu9ivTOUr2R0U2AIh-ip81XQKqWmCPsvEUnKtdN4vKUWbDUtdTEOxqXdVjyR64iN70WjPcZa0CQFLxGUoFsjast1eOQvi1u3v2HWr4DC4WeBWW3YlZSPSVHCaIil57PykqAlpkW5u/s1600/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-07-07+21.22.04%EF%BC%89.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;250&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgUpzTYu9ivTOUr2R0U2AIh-ip81XQKqWmCPsvEUnKtdN4vKUWbDUtdTEOxqXdVjyR64iN70WjPcZa0CQFLxGUoFsjast1eOQvi1u3v2HWr4DC4WeBWW3YlZSPSVHCaIil57PykqAlpkW5u/s400/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-07-07+21.22.04%EF%BC%89.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
今まで表示されていなかった『Download FLV』と『Download MP4』が追加されています。これで簡単1クリックでダウンロードすることができます。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
これでダウンロードし放題です。&lt;br /&gt;
変換してiPhoneで動画を見るのもよし、MP4をiTunesに入れるもよし。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
【関連拡張機能】&lt;br /&gt;
•&lt;a href=&quot;http://github.com/jonathanboom/YouTube-video-downloader-for-Safari/downloads&quot;&gt;YouTube Video Downloader&lt;/a&gt;&lt;br /&gt;
もうひとつありました。こちらはFull HD MP4(1080p),HD MP4(720p),FLVなどのファイル形式からダウンロードすることが可能です。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
『Download Video』のボタンが表示され、クリックするとダウンロードするファイル形式を選べます。下の写真の場合、『Standard MP4』を選び、右クリック『リンク先のファイルをダウンロード』これで完了です。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiegbe0E0BxQGoK5TSiuYdjPYXuCbMW-_BzjvT_X_4H2n9qdgEVm-ZKBTyeBR6DU_ErNMIOvcMjtimbQ02OxIq23VXleR8AkzXlNB8b8j5w_lSUPesuuq3ug20PGv2tf4nK0YIbLzPtda6v/s1600/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-07-08+0.04.07%EF%BC%89.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;56&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiegbe0E0BxQGoK5TSiuYdjPYXuCbMW-_BzjvT_X_4H2n9qdgEVm-ZKBTyeBR6DU_ErNMIOvcMjtimbQ02OxIq23VXleR8AkzXlNB8b8j5w_lSUPesuuq3ug20PGv2tf4nK0YIbLzPtda6v/s400/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-07-08+0.04.07%EF%BC%89.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQs0dZ5puRdf8LLnVwoAFYZEjxf6uU4B-eL8bbnXfCnToc2Uln9xVADroJ8gErVmts9QP9FGb-CL6dtJ3oA8INyaUunydET7IDRIyriDjVV9-HWiKDLzsUSxQoTnt26TKMjDbN3ls0bQBG/s1600/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-07-08+0.04.27%EF%BC%89.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;253&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQs0dZ5puRdf8LLnVwoAFYZEjxf6uU4B-eL8bbnXfCnToc2Uln9xVADroJ8gErVmts9QP9FGb-CL6dtJ3oA8INyaUunydET7IDRIyriDjVV9-HWiKDLzsUSxQoTnt26TKMjDbN3ls0bQBG/s400/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-07-08+0.04.27%EF%BC%89.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
こちらの拡張機能の方が動画のファイル形式が多いのでいいかもしれません。&lt;br /&gt;
動画をダウンロードしてiPhoneのGood ReaderにWiFi転送で入れまくるのもありですね。</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/6757509038930576357/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2010/07/5youtube.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/6757509038930576357'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/6757509038930576357'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2010/07/5youtube.html' title='たった5分でYouTubeの動画、音楽をダウンロードする方法'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiy1wvmbCHkUQZ6oYNt88BQsWUIrVkCoh1kZNbbnQ0LnC8LYo1E1n_zuyQEuFQiIWg29SbO8G7qCrkJbChlL7VhxyL4gD6zFfje0cWgqAJzX2AKngTVv0VNtEVyUl6RDwDU4J8L8yNNwtGP/s72-c/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-07-07+21.02.29%EF%BC%89.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-3690155321982128979</id><published>2010-07-06T19:22:00.008+09:00</published><updated>2010-07-06T19:52:27.261+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="iPhone アプリ"/><title type='text'>簡単に3D写真が撮れるアプリ</title><content type='html'>簡単に撮った写真を3Dに買えてくれるアプリです。&lt;br /&gt;
∇&lt;a href=&quot;http://itunes.apple.com/us/app/auto-3d-photo/id378016435?mt=8&quot;&gt;Auto 3D photo&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;center&gt;&lt;a href=&quot;http://picasaweb.google.com/anything12new14/MansonSTheory?authkey=Gv1sRgCNrxqKGA67n8wQE#5490736579979762210&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhXxNvnO2yU7a6PJUBvuoi3-ZkHC4imUMpN-SAO1rxN4EEE8S6eRMYVvyf63YE9e1X4r_whwCqnHIJ-uu-xUyVywJRtiTLWqQYnneSq6QqOvLXdbricM4FO-bu4eUtiCa41Da-YSFtJHLWp/s320/iphone_photo.jpg&quot; style=&quot;margin-bottom: 5px; margin-left: 5px; margin-right: 5px; margin-top: 5px;&quot; width=&quot;204&quot; /&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;-webkit-text-decorations-in-effect: none; color: black;&quot;&gt;&lt;/span&gt;&lt;/a&gt;&lt;a href=&quot;http://picasaweb.google.com/anything12new14/MansonSTheory?authkey=Gv1sRgCNrxqKGA67n8wQE#5490736596076810338&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhrCluhxF7H79aEpBJN9G92yagTWO1UD79rPQeqzN6rhg1YFjvGqFG36UuL62LucxsWTbbbna3DxOAIx0bo_cGTwRd56dqhhKKwvyIbnK-LVmaDW6RGLT548cIxMB_ePFZdLm6JheHMOy0J/s320/iphone_photo.jpg&quot; style=&quot;margin-bottom: 5px; margin-left: 2px; margin-right: 5px; margin-top: 5px;&quot; width=&quot;204&quot; /&gt;&lt;/a&gt;&lt;/center&gt;&lt;br /&gt;
&lt;br /&gt;
しかし実際3Dなのかは赤青メガネかけてみないとわかりません。&lt;br /&gt;
それと3Dに変えても写真を保存することができないですw&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
そこで3Dといえばこちらを思い出します。&lt;br /&gt;
&lt;br /&gt;
∇&lt;a href=&quot;http://itunes.apple.com/jp/app/hourface/id347880622?mt=8&quot;&gt;Hour Face&lt;/a&gt;&lt;br /&gt;
人の顔を若返らせたり、老けた時の顔をシミュレーションしてくれるアプリ。&lt;br /&gt;
半年前くらいに流行りましたね。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;center&gt;&lt;a href=&quot;http://picasaweb.google.com/anything12new14/MansonSTheory?authkey=Gv1sRgCNrxqKGA67n8wQE#5490736601130645746&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjgwjaa5NT9_sFA-iWl2OEy0qP-rUJ0MYnJdmMMjkWLsX15AUnCFhNhxzRSb2B-XNvn-6I0qx7ZMkPCOFt66AubbWedoPI-92-p5DOMu0FYtWBhaiPk8fhgdAix11iHH4EjgBNrD-rNm96Z/s320/iphone_photo.jpg&quot; style=&quot;margin-bottom: 5px; margin-left: 5px; margin-right: 5px; margin-top: 5px;&quot; width=&quot;212&quot; /&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;-webkit-text-decorations-in-effect: none; color: black;&quot;&gt;&lt;/span&gt;&lt;/a&gt;&lt;a href=&quot;http://picasaweb.google.com/anything12new14/MansonSTheory?authkey=Gv1sRgCNrxqKGA67n8wQE#5490736605718011090&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhICk0Xc6DGdiOPQBFJuOdRBRKx9iDM7UYWo_iCNVMnzSQ7aNwstw28E_7MJwNx8kdxcCVouUN1ccmTsFJ0o-vfw2DbPYNOtK68GfY6wd4unZLsyg3smiksu1WXVV8ngav99jbIzPPATYx-/s320/iphone_photo.jpg&quot; style=&quot;margin-bottom: 5px; margin-left: 5px; margin-right: 5px; margin-top: 5px;&quot; width=&quot;212&quot; /&gt;&lt;/a&gt;&lt;/center&gt;&lt;br /&gt;
&lt;center&gt;&lt;/center&gt;&lt;br /&gt;
&lt;br /&gt;
ダブルタップしたら眼鏡が追加できるようになってましたw&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;center&gt;&lt;a href=&quot;http://picasaweb.google.com/anything12new14/MansonSTheory?authkey=Gv1sRgCNrxqKGA67n8wQE#5490736622869304130&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnYtgbo_cp8wDQhwlQ4BJ7I8WDZrTfXDrU1p53pNadO4QtVXVGdh22urZgO7dpgUPSYn8aNMCtXv58MeFYdvFz992PJIJTmKIZz9iLTz3Lh6LCUY1wEwXjL6QMPgVdDoKTZ7mvD7PO5I6D/s320/iphone_photo.jpg&quot; style=&quot;margin-bottom: 5px; margin-left: 5px; margin-right: 5px; margin-top: 5px;&quot; width=&quot;212&quot; /&gt;&lt;/a&gt;&lt;/center&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- Posted using BlogPress from my iPhone</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/3690155321982128979/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2010/07/3d.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/3690155321982128979'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/3690155321982128979'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2010/07/3d.html' title='簡単に3D写真が撮れるアプリ'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhXxNvnO2yU7a6PJUBvuoi3-ZkHC4imUMpN-SAO1rxN4EEE8S6eRMYVvyf63YE9e1X4r_whwCqnHIJ-uu-xUyVywJRtiTLWqQYnneSq6QqOvLXdbricM4FO-bu4eUtiCa41Da-YSFtJHLWp/s72-c/iphone_photo.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-6510925169292807790</id><published>2010-07-05T20:21:00.000+09:00</published><updated>2010-07-05T20:21:31.486+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="iPad"/><title type='text'>Pulse News Reader for iPad</title><content type='html'>&lt;object height=&quot;385&quot; width=&quot;640&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/G_sMs0kAcyw&amp;amp;hl=ja_JP&amp;amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/G_sMs0kAcyw&amp;amp;hl=ja_JP&amp;amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;540&quot; height=&quot;385&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
iPad用のRSSリーダーはこれできまりですね。&lt;br /&gt;
iPad持ってませんけど...&lt;br /&gt;
UIがすごくクールだし、Googleリーダーとも同期できる。&lt;br /&gt;
改めてiPadはウェブブラウジングに最適なツールだなと思う。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
App store&lt;br /&gt;
→&lt;a href=&quot;http://itunes.apple.com/us/app/pulse-news-reader/id371088673?mt=8&quot;&gt;Pulse News Reader&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/6510925169292807790/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2010/07/pulse-news-reader-for-ipad.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/6510925169292807790'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/6510925169292807790'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2010/07/pulse-news-reader-for-ipad.html' title='Pulse News Reader for iPad'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-6939241563218705395</id><published>2010-07-05T19:09:00.000+09:00</published><updated>2010-07-05T19:09:39.791+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Amazon"/><title type='text'>Amazonがついに食料品にまで進出してきた</title><content type='html'>&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg1Pvw9Ch6gtJNE6fmgS8aawObKwariAyc0pc2CPgvoWnG_b-LgvSFaIO9BH7eucI3viCqo8QazVZqvRZjVNuDkjb6PyFd5XKXYK1e6DjdP8ojN0AnweWkjdQMOfT-i_Z0YbelLwWzJzowN/s1600/c06e97fb.gif&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;120&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg1Pvw9Ch6gtJNE6fmgS8aawObKwariAyc0pc2CPgvoWnG_b-LgvSFaIO9BH7eucI3viCqo8QazVZqvRZjVNuDkjb6PyFd5XKXYK1e6DjdP8ojN0AnweWkjdQMOfT-i_Z0YbelLwWzJzowN/s320/c06e97fb.gif&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;ドイツのAmazonが、オンラインで食料品の販売を開始した。合計3万5千店の商品を提供しており、野菜、肉、魚、果物、加工食品等が含まれる。&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;この度ドイツのAmazonは、食料品を展開するにあたり新たに60のパートナーと手を組み、合計で3万5千店もの食料品のオンライン販売を開始した。AmazonのマネージャーのChristian Bubenheim氏によると、ドイツ国内におけるオンラインでの食料品の品揃えは「最も多い」そうだ。&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;販売が開始された食料品の中にはオーガニック、フェアトレードの商品もあり、多数のワインセレクションもあるという。商品の発送方法は、これまでのAmazonと同じスタイルを取り、またフランクフルトとベルリンの住民で午前11時までに注文した人々には、その日のデリバリーが保証される。&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;またイギリスのAmazonではすでに食料品の販売が開始さえている。&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;a href=&quot;http://japan.techinsight.jp/2010/07/amazon_1007040150.html&quot;&gt;肉・魚・野菜・果物まで。Amazonで食料品のオンライン販売が始まる（ドイツ）Techinsight&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgxnHd4SwM9DQXBp_EB3u5SUunKrGhFOU-0BABe-EOTRqiQQwZ1jzkDQH3OlH-6livn_aY06D0akqnDNqRxPfnppmQMEMJ3Udh_zA_vZcgYw_30jF3RWZq2A8srHxWM-8kJ44DzeljeRvHS/s1600/2460526689_d2cdf4408a_b.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;264&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgxnHd4SwM9DQXBp_EB3u5SUunKrGhFOU-0BABe-EOTRqiQQwZ1jzkDQH3OlH-6livn_aY06D0akqnDNqRxPfnppmQMEMJ3Udh_zA_vZcgYw_30jF3RWZq2A8srHxWM-8kJ44DzeljeRvHS/s400/2460526689_d2cdf4408a_b.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;この&lt;a href=&quot;http://fresh.amazon.com/&quot;&gt;Amazon Fresh&lt;/a&gt;はあくまでもドイツのアマゾンの場合なんですが、将来的に日本のアマゾンも食料品を宅配しないとも限らない。実際に日本のアマゾンでも食料品、例えば&lt;a href=&quot;http://www.amazon.co.jp/s?ie=UTF8&amp;amp;x=0&amp;amp;ref_=nb_sb_noss&amp;amp;y=0&amp;amp;field-keywords=%E8%82%89&amp;amp;url=search-alias%3Dfood-beverage&quot;&gt;肉&lt;/a&gt;で探せば、出てくるが、これは外部の業者がアマゾンの看板のもとで販売している商品であって、複数の注文をする場合、一括で受け取りたいのに発送に時間がかかったり、送料がかかったりする。&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;食料品の宅配ってないの？ってことで&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;日本のネットスーパーを調べてみた。&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;●&lt;a href=&quot;http://netsuper.rakuten.co.jp/&quot;&gt;楽天ネットスーパー&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;●&lt;a href=&quot;https://www.iy-net.jp/&quot;&gt;イトーヨーカドーネットスーパー&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;●&lt;a href=&quot;https://netsuper.aeon.jp/home/top.aspx&quot;&gt;イオンネットスーパー&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;その他にもあったが割愛します。&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;んーいろいろありすぎ。それに地域が限られていたりした。&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;これらのネットスーパーがAmazonと提携したら恐ろしい。&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;しかし、日本では各大手スーパーが独自にネットスーパー事業を拡大していってるのでその可能性は低い。&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;【食料品をアマゾンで配送する場合のメリット】&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;●交通の便が悪い田舎の居住者&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;●一人暮らしの高齢者&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;●大量配送が可能（ミネラルウォーターなど）&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;●送料無料（Amazon プライムなら）&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;●選択肢が多い（地域限定、特産品なども）&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;●アマゾンのレコメンド機能（『この肉を買った人は、こちらのじゃがいもを買っています』このようなおすすめの食べ物を注文することができる）&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;【デメリット、リスク、適さない人】&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;●生鮮食品なので食中毒のリスク&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;●すぐに買って、食べられない←これが一番大きいかも&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;●徒歩5分のところにスーパーがある人、商店街利用者など&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;●選択肢は多くても、情報量が少ない（実際、肉や野菜などは手に取ってみないとわからない）&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;こんなところか。&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;私自身もAmazonで本、CDなんかはよく買います。この間はポラロイドカメラなんかを買いました。さすがに食料品まで買おうとは思いませんが。この食料品の宅配をAmazonが日本で行うとすれば、他のスーパーとかは大打撃を受けるでしょうね。あとコンビニとかも。一番影響を受けるのは商店街。&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;これからはこれまで以上に商店街が淘汰されていくことは間違いない。&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgyef_foCzMXYxDBeGjovuJJvRuq2b7smd9h1ZhsjL01jk7Oyt0J8lLyHgzaaAO4R3IdOlLoBpA8CzR7lrgg90kIEnGr8Nh-wDBDD57d7hIzTj6__pzebmLwHkO_qtq5-oul2g4GZ-u2FlB/s1600/o0554082110342815878.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;640&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgyef_foCzMXYxDBeGjovuJJvRuq2b7smd9h1ZhsjL01jk7Oyt0J8lLyHgzaaAO4R3IdOlLoBpA8CzR7lrgg90kIEnGr8Nh-wDBDD57d7hIzTj6__pzebmLwHkO_qtq5-oul2g4GZ-u2FlB/s640/o0554082110342815878.jpg&quot; width=&quot;430&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;画像はクリスマス時のイギリスのAmazonの倉庫内。&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;span id=&quot;goog_810273071&quot;&gt;&lt;/span&gt;&lt;span id=&quot;goog_810273072&quot;&gt;&lt;/span&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/6939241563218705395/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2010/07/amazon.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/6939241563218705395'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/6939241563218705395'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2010/07/amazon.html' title='Amazonがついに食料品にまで進出してきた'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg1Pvw9Ch6gtJNE6fmgS8aawObKwariAyc0pc2CPgvoWnG_b-LgvSFaIO9BH7eucI3viCqo8QazVZqvRZjVNuDkjb6PyFd5XKXYK1e6DjdP8ojN0AnweWkjdQMOfT-i_Z0YbelLwWzJzowN/s72-c/c06e97fb.gif" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-6876417955257376088</id><published>2010-07-03T02:55:00.000+09:00</published><updated>2010-07-03T02:55:01.298+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="iPhone アプリ"/><title type='text'>Echofon,AccuRadio UpDate</title><content type='html'>&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;◇まずはTwitterクライアントの『&lt;a href=&quot;http://itunes.apple.com/jp/app/echofon-for-twitter/id286756410?mt=8&quot;&gt;Echofon&lt;/a&gt;』&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;これが一番シンプルなUIで使いやすい。&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;今日のアップデートでiOS4.0サポート。&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;マルチタスク対応と日本語対応、Retinaディスプレイ用画像の追加とレイアウトなどなど。&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://picasaweb.google.com/anything12new14/MansonSTheory?authkey=Gv1sRgCNrxqKGA67n8wQE#5489320221386244786&quot; style=&quot;clear: left; display: inline !important; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg04eYmUG01YF-25YoAHyK5JHNp31JLm1Vg-FukdNXXyTIdqoz-x1slDmUzo3RfrIaKhZ49IihFUNlwjnMU1Y69ZHYQzuLsjQGwwLcbKnAoOxvERtHB2x5gsC6t8mD0iz1DShP38TtiHwpK/s320/iphone_photo.jpg&quot; style=&quot;margin-bottom: 5px; margin-left: 5px; margin-right: 5px; margin-top: 5px;&quot; width=&quot;210&quot; /&gt;　&lt;/a&gt;&lt;a href=&quot;http://picasaweb.google.com/anything12new14/MansonSTheory?authkey=Gv1sRgCNrxqKGA67n8wQE#5489324426453112002&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihxwrPWgs00-MigxxWQjgT1pufk7lXODakSgBWVbDQlWbKYJigbAR3DTqdljsLjkCJcWUjTlTWByliqWSkyjwzRXwKu7vQcdw_JJjVIuGgkca52DrAXl4rRo13NKQRGurDWk8OTcmT-4g8/s320/iphone_photo.jpg&quot; style=&quot;margin-bottom: 5px; margin-left: 5px; margin-right: 5px; margin-top: 5px;&quot; width=&quot;212&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
写真右の画面下、日本語対応。&lt;br /&gt;
日本語対応で分かりやすくなったが、それよりもマルチタスク対応が肝だと思う。例えばtwitterでTLを遡って気になるリンクを発見し、Web閲覧している途中で電話がかかってきたとしても、すぐにそのページへ戻り続きスムーズに読める。以前のシングルタスクではtwitterが中断され、またはじめからホームのタイムラインを読み込む必要があった。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Echofonつながりで紹介します。&lt;br /&gt;
◇MacでTwitterするなら『&lt;a href=&quot;http://www.echofon.com/twitter/mac/&quot;&gt;Ecofon for Mac&lt;/a&gt;』&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEijIJiq0bS1HUqA0pCDn1i64sPSBNxf-XDOPyyhyphenhyphenYWHES8ICw6MIaG5l9GRLdV-QaH6CtO2O_NZLhxzuBoCs7VjEqzoo1l619e3csD7IP6_-2HP3jM9kuhWVAVv2FDYZonhKo5g0V9uBZys/s1600/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-07-03+0.43.52%EF%BC%89.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;640&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEijIJiq0bS1HUqA0pCDn1i64sPSBNxf-XDOPyyhyphenhyphenYWHES8ICw6MIaG5l9GRLdV-QaH6CtO2O_NZLhxzuBoCs7VjEqzoo1l619e3csD7IP6_-2HP3jM9kuhWVAVv2FDYZonhKo5g0V9uBZys/s640/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-07-03+0.43.52%EF%BC%89.png&quot; width=&quot;505&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Simple is the Best!!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
◇洋楽のRadio App『&lt;a href=&quot;http://itunes.apple.com/jp/app/accuradio/id351425453?mt=8&quot;&gt;AccuRadio&lt;/a&gt;』&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://picasaweb.google.com/anything12new14/MansonSTheory?authkey=Gv1sRgCNrxqKGA67n8wQE#5489320154285382210&quot; style=&quot;clear: left; display: inline !important; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEirYUnpzuOVg15bA6IX2cqhwqcJezM4eZvF9MFt17wZPWWZNNEuqKo4GFAL0zc-xvLKN_iNlprxzANpsA1vjmcqEQuFo3cfSwI9VhVDlkQkgo-FLPgtZa3JfLxd7IPXyRwb9yj38DbMlVIR/s320/iphone_photo.jpg&quot; style=&quot;margin-bottom: 5px; margin-left: 5px; margin-right: 5px; margin-top: 5px;&quot; width=&quot;210&quot; /&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;-webkit-text-decorations-in-effect: none; color: black;&quot;&gt;&lt;/span&gt;&lt;/a&gt;&lt;a href=&quot;http://picasaweb.google.com/anything12new14/MansonSTheory?authkey=Gv1sRgCNrxqKGA67n8wQE#5489355569312176242&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj_c3IczMPi3-tJTxQeztBUPqpKWOgfpwpFEolJ-kxcXL5F8WT-I6wQIfRekuqoMA71c4KqMT0Y-f64MDaV2mmDbCeUFnWRpoWE0rPB7eN8vN8HlPioJfBUoILvr5yY4iq1CzJA6Y_n4Xrh/s320/iphone_photo.jpg&quot; style=&quot;margin-bottom: 5px; margin-left: 5px; margin-right: 5px; margin-top: 5px;&quot; width=&quot;212&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://itunes.apple.com/jp/app/accuradio/id351425453?mt=8&quot;&gt;AccuRadio&lt;/a&gt;はラジオアプリの中でもチャンネルが充実している。選曲もいい。&lt;br /&gt;
&lt;div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;こちらはPC版∇&lt;a href=&quot;http://www.accuradio.com/&quot;&gt;http://www.accuradio.com/&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: left;&quot;&gt;もちろん本物のラジオと違って、受信感度によるノイズの心配は一切いらない。音質も心配ないクオリティ。&lt;/div&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;以前のエントリー『&lt;a href=&quot;http://ohmygottogether.blogspot.com/2010/06/ios4.html&quot;&gt;iOS4の問題点&lt;/a&gt;』でAccuRadioがマルチタスクに対応していなかったことを書いたが、意外と早くiOS4.0対応しマルチタスク可能になった。これでiPhoneでラジオを常駐させることができる。&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;ラジオアプリなら『&lt;a href=&quot;http://itunes.apple.com/us/app/flycast-select/id358004585?mt=8&amp;amp;ign-mpt=uo%3D6&quot;&gt;FlyCast&lt;/a&gt;』こちらも音楽好きならおすすめ。&lt;/div&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: left;&quot;&gt;もちろんマルチタスク対応。無料で音楽聞き放題。常駐可能なのでiPhoneでラジオ三昧！&lt;/div&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: left;&quot;&gt;iPhoneユーザーで音楽好きならAccuRadioもFlyCastもキラーアプリです&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;iPhoneでネットラジオを聞きながら、Twitterをする。&lt;br /&gt;
これこそまさにマルチタスクの真骨頂。&lt;br /&gt;
最高の暇つぶし。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
※マルチタスクでアプリを常駐させ過ぎるとバッテリーの減りが明らかに早くなります。バッテリーの減りが気になる方は一つ一つ消した方がいいです。&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;
&lt;center&gt;&lt;a href=&quot;http://picasaweb.google.com/anything12new14/MansonSTheory?authkey=Gv1sRgCNrxqKGA67n8wQE#5489362544317661314&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;400&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgYG8rsHY_L3P1hqcPzdXSI7gugtzj2b0Rqs5N870Hv8IYEAsn3DXD8HJCu2Mv7nwgUxJxy02sAkCt7EvJq4zbIe2GGEv1gsl3D-h24mv_7GR2y4AHEFNhemw_kL8O9ic-ySLJytY7FEekm/s400/iphone_photo.jpg&quot; style=&quot;margin-bottom: 5px; margin-left: 5px; margin-right: 5px; margin-top: 5px;&quot; width=&quot;265&quot; /&gt;&lt;/a&gt;&lt;/center&gt;</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/6876417955257376088/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2010/07/echofonaccuradio-update.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/6876417955257376088'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/6876417955257376088'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2010/07/echofonaccuradio-update.html' title='Echofon,AccuRadio UpDate'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg04eYmUG01YF-25YoAHyK5JHNp31JLm1Vg-FukdNXXyTIdqoz-x1slDmUzo3RfrIaKhZ49IihFUNlwjnMU1Y69ZHYQzuLsjQGwwLcbKnAoOxvERtHB2x5gsC6t8mD0iz1DShP38TtiHwpK/s72-c/iphone_photo.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-1825129134091246760</id><published>2010-07-02T13:37:00.001+09:00</published><updated>2010-07-02T16:25:17.562+09:00</updated><title type='text'>iTunesのクラウド化が近づいてきた</title><content type='html'>噂されていたiTunes のクラウド化がまもなくはじまるようです。&lt;br /&gt;
→&lt;a href=&quot;http://www.boygeniusreport.com/2010/07/01/exclusive-apple-itunes-in-the-cloud-definitely-happening-soon-wireless-syncing/&quot;&gt;Apple iTunes in the cloud definitely happening soon, wireless syncing!&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
この記事によると、『Appleは間違いなくすぐに噂のクラウドサービスとワイヤレスシンク機能を提供する』とのことです。&lt;br /&gt;
&lt;br /&gt;
新機能は3つ&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 10.8333px; line-height: 13px;&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;blockquote&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 10.8333px; line-height: 13px;&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, Helvetica, sans-serif; font-size: 10.8333px; line-height: 13px;&quot;&gt;&lt;div style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; line-height: 1.3em; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; overflow-x: hidden; overflow-y: hidden; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: medium;&quot;&gt;&lt;i&gt;These new capabilities are broken down into three groups:&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;&lt;ol style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; background-position: initial initial; background-repeat: initial initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 13px; list-style-image: initial; list-style-position: outside; list-style-type: decimal; margin-bottom: 20px; margin-left: 0px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; overflow-x: hidden; overflow-y: hidden; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;li style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; line-height: 1.2em; margin-bottom: 6px; margin-left: 20px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: medium;&quot;&gt;&lt;i&gt;Streaming music and movies from Apple’s servers to your computers, devices, etc.&lt;/i&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; line-height: 1.2em; margin-bottom: 6px; margin-left: 20px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: medium;&quot;&gt;&lt;i&gt;Streaming music and movies from your home computers to your other computers, remote devices, etc.&lt;/i&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li style=&quot;background-attachment: initial; background-clip: initial; background-color: transparent; background-image: initial; background-origin: initial; border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; line-height: 1.2em; margin-bottom: 6px; margin-left: 20px; margin-right: 0px; margin-top: 0px; outline-color: initial; outline-style: initial; outline-width: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; vertical-align: baseline;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: medium;&quot;&gt;&lt;i&gt;Wireless iTunes syncing with devices&lt;/i&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;br /&gt;
●Appleのサーバーから音楽、ムービーをストリーミング&lt;br /&gt;
●別のMac、PCから自宅のMac、PC の音楽をストリーミング&lt;br /&gt;
●iTunesとデバイスのワイヤレスシンク機能&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
これでいちいち同期しなくてもワイヤレスで、家の中、外でもiTunesを利用出来るようになりますね。例えば、外出先のiPhoneで音楽をダウンロードしたとすると、同時に自宅のMac、PCに自然に同期されるということ。&lt;br /&gt;
&lt;br /&gt;
これが具体的にいつ発表されるのか？が気になります。あとクラウドサービスが無料か有料か？ということ。クラウドが無料だとしたらMobileMeも無料になってほしいですけど...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
【関連記事】&lt;br /&gt;
&lt;a href=&quot;http://jp.techcrunch.com/archives/20100701itunes-cloud-google/&quot;&gt;iTunesのクラウド化戦略リーク―この秋はAppleとGoogleのクラウド決戦か？&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://jp.techcrunch.com/archives/20100701itunes-cloud-google/&quot;&gt;by TechCrunch&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/1825129134091246760/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2010/07/itunes.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/1825129134091246760'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/1825129134091246760'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2010/07/itunes.html' title='iTunesのクラウド化が近づいてきた'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-7219817256709928393</id><published>2010-07-01T12:35:00.000+09:00</published><updated>2010-07-01T12:35:02.918+09:00</updated><title type='text'>au初のSmartPhone『IS01』を試してみた。</title><content type='html'>auショップで試してみた。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;center&gt;&lt;/center&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgR5vxgPjGW7vqDWsk1_ZNwTVAp06yNuguyIDa75vhq_Q7Vu4ji1q6sQtHG9mKnMvVLnnEkk7kI470gcqX4ZEporNxqbv7PKS7dUonZL9rkpDGcQYBcJbedHg_oFj1XBECYE_J9jEuLc22l/s1600/1a8d3dbb.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;263&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgR5vxgPjGW7vqDWsk1_ZNwTVAp06yNuguyIDa75vhq_Q7Vu4ji1q6sQtHG9mKnMvVLnnEkk7kI470gcqX4ZEporNxqbv7PKS7dUonZL9rkpDGcQYBcJbedHg_oFj1XBECYE_J9jEuLc22l/s400/1a8d3dbb.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://picasaweb.google.com/anything12new14/MansonSTheory?authkey=Gv1sRgCNrxqKGA67n8wQE#5488763914113604386&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;400&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgMwbrUxIEKwiTEmA9BCCoTmJw-swZAAdDgIlR8xf2SWd1otFH-1OEhpaiQo1wVLKcLG8Cl6iyi2xeMMGXv21JaX9t1My-hyTd2X4n3lETf2cOgG2-ED-SMzfIM_ftAZ2l6-6H4NVpOCbMD/s400/iphone_photo.jpg&quot; style=&quot;margin-bottom: 5px; margin-left: 5px; margin-right: 5px; margin-top: 5px;&quot; width=&quot;298&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
とにかくでかい。&lt;br /&gt;
5.0インチ大画面液晶、960×480(フルワイドVGA)&lt;br /&gt;
iPhoneは3.5インチだからひとまわりでかい。&lt;br /&gt;
フルキーボード、ワンセグ、赤外線対応。&lt;br /&gt;
Android端末ではじめてのワンセグ対応！&lt;br /&gt;
しかも予約録画可能！←（そこまでして携帯で録画したいか？w）&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
国内のガラケーとsmartphoneの融合といった感じ。多機能でユニークだが実際触ってみた感覚で言うと、あれで電話をする姿は考えられない。タッチパネルの反応もiPhoneには及ばない。それにしてもなぜかiPhoneに勝る、それとも同等の使用感を感じさせるようなSmartPhoneが出てこないんだろうか。Android端末はなぜかタッチパネルの動きが鈍くかたい気がする。まだまだ直感的ではない。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
au初のSmartPhoneは携帯電話というよりも名刺入れか、それとも小型電子辞書のようだった。</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/7219817256709928393/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2010/07/ausmartphoneis01.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/7219817256709928393'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/7219817256709928393'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2010/07/ausmartphoneis01.html' title='au初のSmartPhone『IS01』を試してみた。'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgR5vxgPjGW7vqDWsk1_ZNwTVAp06yNuguyIDa75vhq_Q7Vu4ji1q6sQtHG9mKnMvVLnnEkk7kI470gcqX4ZEporNxqbv7PKS7dUonZL9rkpDGcQYBcJbedHg_oFj1XBECYE_J9jEuLc22l/s72-c/1a8d3dbb.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-8652199872301534632</id><published>2010-06-30T19:23:00.003+09:00</published><updated>2010-06-30T19:28:44.416+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="iPhone"/><title type='text'>iPhone WallPaper10選</title><content type='html'>&lt;div style=&quot;text-align: center;&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;個人的に好きな壁紙を集めてみました。&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;ご自由にどうぞ。&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioqoO_-FtIo0YnQk78rUgV3dUwSoGZvS9NIh9YwdzvBfzNiH9HBgzRZ-Yf4ftIDi6f2wRBhTePMNLipskzA-KuwqZyC_0RX9nzPG5tki13FlN5xdXEUlw2jpqUcorWPAb1Xscvsbw0ZZpy/s1600/FOLZI(01).jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;400&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioqoO_-FtIo0YnQk78rUgV3dUwSoGZvS9NIh9YwdzvBfzNiH9HBgzRZ-Yf4ftIDi6f2wRBhTePMNLipskzA-KuwqZyC_0RX9nzPG5tki13FlN5xdXEUlw2jpqUcorWPAb1Xscvsbw0ZZpy/s400/FOLZI(01).jpg&quot; width=&quot;264&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;by:&lt;a href=&quot;http://www.razorianfly.com/2010/06/24/folzi-an-exclusive-wallpaper-for-iphone-4-now-available-for-download/&quot;&gt;razorianfly&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhUKWaZy8UI5Uo6LLiDGe3FxpvahmOsM0jY-aK8uPH1qcQIkPJlOt0V0Z0nGHzNLNpyefi9RrYVhI__WGg19hKJbYKH7PGoc4nyOHB7g0vw7kcjCzfyCG4VmGLJ0fiZkIZJIxO5miwSCV_h/s1600/b331qmrvh.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;400&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhUKWaZy8UI5Uo6LLiDGe3FxpvahmOsM0jY-aK8uPH1qcQIkPJlOt0V0Z0nGHzNLNpyefi9RrYVhI__WGg19hKJbYKH7PGoc4nyOHB7g0vw7kcjCzfyCG4VmGLJ0fiZkIZJIxO5miwSCV_h/s400/b331qmrvh.jpg&quot; width=&quot;264&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhvyd5X_9LFYcmDklgxIl65spUbY-a2G9Fbiw3yDmwAO_WsEcU4bCvvzh0i4qloLNBDCvDgQ_QntJLu5E6yDCQn4Pv0il_Y6kgyqNf0Jf7-Xsz2z-B2gZLAGh864cXRFC9LsMXu4lMsNSkj/s1600/x0agc726n.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;400&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhvyd5X_9LFYcmDklgxIl65spUbY-a2G9Fbiw3yDmwAO_WsEcU4bCvvzh0i4qloLNBDCvDgQ_QntJLu5E6yDCQn4Pv0il_Y6kgyqNf0Jf7-Xsz2z-B2gZLAGh864cXRFC9LsMXu4lMsNSkj/s400/x0agc726n.jpg&quot; width=&quot;275&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioh18qJm22G7fLYjUX22ppH6nX_U2Ai6-zp06awIwSRye7wtIMu_x1346cvKa4Ov1IRbEKLBi_we9NrPySGwSvaV1dz7oGy-x8FFpvajTEKPgbPSKcFicU5AtgP1ZHcOIHjSvl_e-glMHr/s1600/t7ns0w25b.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;400&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioh18qJm22G7fLYjUX22ppH6nX_U2Ai6-zp06awIwSRye7wtIMu_x1346cvKa4Ov1IRbEKLBi_we9NrPySGwSvaV1dz7oGy-x8FFpvajTEKPgbPSKcFicU5AtgP1ZHcOIHjSvl_e-glMHr/s400/t7ns0w25b.jpg&quot; width=&quot;264&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh3it-qAWrSdk_YeLPzWMb19wEXxHb27c0gici2-i97ZoH14vakH5OnUMYTTM65aW5ucvzkCu5I7UNvGT5UNqgpzfbJQRi8YMmapvcN934z0R8em_gkmhySQHI6j9Md0TGQ5xCqhq3HmCIK/s1600/mpd1fhmqh.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;400&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh3it-qAWrSdk_YeLPzWMb19wEXxHb27c0gici2-i97ZoH14vakH5OnUMYTTM65aW5ucvzkCu5I7UNvGT5UNqgpzfbJQRi8YMmapvcN934z0R8em_gkmhySQHI6j9Md0TGQ5xCqhq3HmCIK/s400/mpd1fhmqh.jpg&quot; width=&quot;264&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiBLohRF4vW8xfMfdijokToN2-Ukz-UQTf4KKyD0IvCuBdLaeJGoSRJ2EMw-ZmLXuTupvuCqN_WL6vprDmftpPsihFlr42TZN_PhRcaobABdT5pxgdH2w1m5PRHh6ZpoRQgP_rLqQ4ShJV5/s1600/bi205dhg3.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;400&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiBLohRF4vW8xfMfdijokToN2-Ukz-UQTf4KKyD0IvCuBdLaeJGoSRJ2EMw-ZmLXuTupvuCqN_WL6vprDmftpPsihFlr42TZN_PhRcaobABdT5pxgdH2w1m5PRHh6ZpoRQgP_rLqQ4ShJV5/s400/bi205dhg3.jpg&quot; width=&quot;264&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;by:&lt;a href=&quot;http://www.alliphonewallpapers.com/&quot;&gt;alliphonewallpapers.com&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;center&gt;&lt;a href=&quot;http://picasaweb.google.com/anything12new14/MansonSTheory?authkey=Gv1sRgCNrxqKGA67n8wQE#5488502322442577122&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;400&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjINAcvQM4iqfKcRPVlZ2o0XpoMdX7n1FSs9j8TSJnjVveOVR3D67GP9j6Dtr6Rf-yEsROjYbrNFB5QU1pS3c3XgLsJbcgBjRyGCuD39mSY6abHT9009nHXO974raJ51nw6MM-UsYHJEOiD/s400/iphone_photo.jpg&quot; style=&quot;margin-bottom: 5px; margin-left: 5px; margin-right: 5px; margin-top: 5px;&quot; width=&quot;265&quot; /&gt;&lt;/a&gt;&lt;/center&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;center&gt;&lt;a href=&quot;http://picasaweb.google.com/anything12new14/MansonSTheory?authkey=Gv1sRgCNrxqKGA67n8wQE#5488502332138436178&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;400&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhxtDNSHu-ylbnOA6QTLM8gT4TXlsboddTzeOGkPGEggfYUDJdvjd6xSJarPAPa8JPrvXRtbx1zdFdkH4_7VlVQnTVeQ9owTZ-nHshGAUMu-qSMMUwinooiQtnLqGTJvZP5lGI1VqV7uVap/s400/iphone_photo.jpg&quot; style=&quot;margin-bottom: 5px; margin-left: 5px; margin-right: 5px; margin-top: 5px;&quot; width=&quot;270&quot; /&gt;&lt;/a&gt;&lt;/center&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;center&gt;&lt;a href=&quot;http://picasaweb.google.com/anything12new14/MansonSTheory?authkey=Gv1sRgCNrxqKGA67n8wQE#5488502341908835810&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;400&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiU8mMpo6ZlmZk0w3x_e4yg_6bkE6Ur-k03lwABnPMhjkw1tQN1hKpEASd3gjrWVTu1EiDmWGzAz6Oc7dSpWuR85Ni9rTKeYB408yglevUsCbjFm6K9bNgLITslmmtwA7r0_enWmbTJ22or/s400/iphone_photo.jpg&quot; style=&quot;margin-bottom: 5px; margin-left: 5px; margin-right: 5px; margin-top: 5px;&quot; width=&quot;264&quot; /&gt;&lt;/a&gt;&lt;/center&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjNDenA1vwF3fWBWeT1osqxq3NuRfD4GheIAouNkCVnXfDrvZaAQSpOrqEe0AO4Ye9R0qDtVhLMaLO8lrduZaCVW-PeW-2vVegsjgA3KJ19ufqHcFXYYJ-w-Q2709wbYa1hxTEwtjp_f3KK/s1600/tof4ocud4.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;400&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjNDenA1vwF3fWBWeT1osqxq3NuRfD4GheIAouNkCVnXfDrvZaAQSpOrqEe0AO4Ye9R0qDtVhLMaLO8lrduZaCVW-PeW-2vVegsjgA3KJ19ufqHcFXYYJ-w-Q2709wbYa1hxTEwtjp_f3KK/s400/tof4ocud4.jpg&quot; width=&quot;264&quot; /&gt;&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/8652199872301534632/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2010/06/iphone-wallpaper10.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/8652199872301534632'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/8652199872301534632'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2010/06/iphone-wallpaper10.html' title='iPhone WallPaper10選'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioqoO_-FtIo0YnQk78rUgV3dUwSoGZvS9NIh9YwdzvBfzNiH9HBgzRZ-Yf4ftIDi6f2wRBhTePMNLipskzA-KuwqZyC_0RX9nzPG5tki13FlN5xdXEUlw2jpqUcorWPAb1Xscvsbw0ZZpy/s72-c/FOLZI(01).jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-8463168936433799431</id><published>2010-06-29T13:40:00.002+09:00</published><updated>2010-06-29T13:41:41.847+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="iPhone 4"/><title type='text'>iPhone4で撮影した動画がクオリティたかすな件</title><content type='html'>iMovieアプリで編集した短編映画がこれです。&lt;br /&gt;
撮影時間わずか48時間！&lt;br /&gt;
&lt;br /&gt;
これがiPhone4のクオリティか...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;object height=&quot;225&quot; width=&quot;400&quot;&gt;&lt;param name=&quot;allowfullscreen&quot; value=&quot;true&quot; /&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot; /&gt;&lt;param name=&quot;movie&quot; value=&quot;http://vimeo.com/moogaloop.swf?clip_id=12819723&amp;amp;server=vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=ff9933&amp;amp;fullscreen=1&quot; /&gt;&lt;embed src=&quot;http://vimeo.com/moogaloop.swf?clip_id=12819723&amp;amp;server=vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=ff9933&amp;amp;fullscreen=1&quot; type=&quot;application/x-shockwave-flash&quot; allowfullscreen=&quot;true&quot; allowscriptaccess=&quot;always&quot; width=&quot;540&quot; height=&quot;325&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;
&lt;a href=&quot;http://vimeo.com/12819723&quot;&gt;&quot;Apple of My Eye&quot; - an iPhone 4 film&lt;/a&gt; from &lt;a href=&quot;http://vimeo.com/mkoerbel&quot;&gt;Michael Koerbel&lt;/a&gt; on &lt;a href=&quot;http://vimeo.com/&quot;&gt;Vimeo&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
実際3GSでもiOS4にアップして、&lt;br /&gt;
&lt;a href=&quot;http://itunes.apple.com/jp/app/imovie/id377298193?mt=8&quot;&gt;iMovieアプリ&lt;/a&gt;をダウンロードすれば、&lt;br /&gt;
動画編集できると思いきや、互換性がないため作動しないようです。&lt;br /&gt;
恐るべしアップル...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
最後にNews。&lt;br /&gt;
&lt;a href=&quot;http://www.asahi.com/digital/bcnnews/BCN201006290004.html&quot;&gt;iPhone4,発売3日で170万台突破&lt;/a&gt;&lt;br /&gt;
ちなみに3GSの時は3日で100万台だったそうです。</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/8463168936433799431/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2010/06/iphone4_29.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/8463168936433799431'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/8463168936433799431'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2010/06/iphone4_29.html' title='iPhone4で撮影した動画がクオリティたかすな件'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-5790130202572744802</id><published>2010-06-29T13:07:00.001+09:00</published><updated>2010-06-29T13:08:35.872+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="iPhone"/><title type='text'>『iOS4でiPodが落ちる』解決しました。</title><content type='html'>先日、&lt;a href=&quot;http://ohmygottogether.blogspot.com/2010/06/ios4.html&quot;&gt;iOS4の問題点&lt;/a&gt;でiPodがすぐ落ちると書きましたが、&lt;br /&gt;
解決しました。&lt;br /&gt;
&lt;br /&gt;
意外にもこのバグは多いみたいです。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
【解決法】&lt;br /&gt;
iPhoneをPCに接続して充電するだけ。&lt;br /&gt;
え？これだけって思う方もいると思いますが、&lt;br /&gt;
これだけ自然に直りました。&lt;br /&gt;
&lt;br /&gt;
充電しても直らない場合はバックアップを取って、復元した方がいいです。&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi77zhaJd5HQYcp62Vqfnm2eFTdFNBfFleIrfc2-tHLCjofsTToBveyO3SiYyy5Xnau_4C4uqDfFQEYa3iNgwqgLLB5k2xNahLMcb0vXuwknMOZkt00FmEfhC9Z5ko2WujQXidcS9ml1z5z/s1600/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-06-29+13.01.53%EF%BC%89.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;95&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi77zhaJd5HQYcp62Vqfnm2eFTdFNBfFleIrfc2-tHLCjofsTToBveyO3SiYyy5Xnau_4C4uqDfFQEYa3iNgwqgLLB5k2xNahLMcb0vXuwknMOZkt00FmEfhC9Z5ko2WujQXidcS9ml1z5z/s640/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-06-29+13.01.53%EF%BC%89.png&quot; width=&quot;540&quot; /&gt;&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/5790130202572744802/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2010/06/ios4ipod.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/5790130202572744802'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/5790130202572744802'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2010/06/ios4ipod.html' title='『iOS4でiPodが落ちる』解決しました。'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi77zhaJd5HQYcp62Vqfnm2eFTdFNBfFleIrfc2-tHLCjofsTToBveyO3SiYyy5Xnau_4C4uqDfFQEYa3iNgwqgLLB5k2xNahLMcb0vXuwknMOZkt00FmEfhC9Z5ko2WujQXidcS9ml1z5z/s72-c/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-06-29+13.01.53%EF%BC%89.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-5964774110071796257</id><published>2010-06-28T14:42:00.001+09:00</published><updated>2010-06-28T14:43:17.435+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="tech"/><title type='text'>In The Future</title><content type='html'>&lt;object height=&quot;385&quot; width=&quot;480&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/4t1NWH6G1f0&amp;hl=ja_JP&amp;fs=1&amp;color1=0x402061&amp;color2=0x9461ca&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/4t1NWH6G1f0&amp;hl=ja_JP&amp;fs=1&amp;color1=0x402061&amp;color2=0x9461ca&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;530&quot; height=&quot;385&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ロボットでもいろいろです。&lt;br /&gt;
&lt;a href=&quot;http://www.afpbb.com/article/economy/2681159/5145673&quot;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.afpbb.com/article/economy/2681159/5145673&quot;&gt;http://www.afpbb.com/article/economy/2681159/5145673&lt;/a&gt;&lt;br /&gt;
こちらのロボット。&lt;br /&gt;
『あっち』の方はほとんど万能だそうです。</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/5964774110071796257/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2010/06/in-future.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/5964774110071796257'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/5964774110071796257'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2010/06/in-future.html' title='In The Future'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-7518032731733656464</id><published>2010-06-27T23:39:00.002+09:00</published><updated>2010-06-27T23:41:16.101+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="iPhone 4"/><title type='text'>またブレンドおじさんが...</title><content type='html'>&lt;object height=&quot;385&quot; width=&quot;640&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/fLreo24WYeQ&amp;amp;hl=ja_JP&amp;amp;fs=1&amp;amp;color1=0x402061&amp;amp;color2=0x9461ca&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/fLreo24WYeQ&amp;amp;hl=ja_JP&amp;amp;fs=1&amp;amp;color1=0x402061&amp;amp;color2=0x9461ca&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;530&quot; height=&quot;385&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
おなじみのブレンドおじさん。&lt;br /&gt;
今回はiPhone 4です。&lt;br /&gt;
iPhoneの時とそんな変わらないんだけど...&lt;br /&gt;
今回はストーリー仕立てになってますw&lt;br /&gt;
&lt;br /&gt;
それにしてもブレンドする時のオッサンの顔...&lt;br /&gt;
すごく嬉しそうww</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/7518032731733656464/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2010/06/blog-post_27.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/7518032731733656464'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/7518032731733656464'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2010/06/blog-post_27.html' title='またブレンドおじさんが...'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-1914821670484987382</id><published>2010-06-25T19:01:00.000+09:00</published><updated>2010-06-25T19:01:31.873+09:00</updated><title type='text'>IKEAのARカタログがやばい件</title><content type='html'>昨今なにかと話題のAR。&lt;br /&gt;
IKEAのARがすごいです。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
∇カタログにバーコードが書いてある紙がある。&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi0a8ED-yK2Kn4T2d-tKt26tVphMTKt9NolaVKrhsKx2dZWZ7WTkMI5LCP4cyfR1JT3GOloVJ4run0broaZ6b2m8Lct30HeMS1me2KlFwyT9GkY0RYxufkVmR7fkEKZsFTtev02EJ8VCYaj/s1600/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-06-25+18.22.49%EF%BC%89.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;256&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi0a8ED-yK2Kn4T2d-tKt26tVphMTKt9NolaVKrhsKx2dZWZ7WTkMI5LCP4cyfR1JT3GOloVJ4run0broaZ6b2m8Lct30HeMS1me2KlFwyT9GkY0RYxufkVmR7fkEKZsFTtev02EJ8VCYaj/s400/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-06-25+18.22.49%EF%BC%89.png&quot; width=&quot;440&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
∇家具を設置したい場所にバーコード紙を置く。&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh6LYsm7z7YYeCt2PNwGwd_YmN9OK0fx5069DdU7x_D92xGcp8IiIYLVkv6wmkByzFwEXOW9HazLBJw-VmY1Hbxuz2EPGauJqQwAmr8IAN0czyKL3-SPshQ6envsK6w_uw7gqU_hO02C1IW/s1600/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-06-25+18.23.10%EF%BC%89.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;300&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh6LYsm7z7YYeCt2PNwGwd_YmN9OK0fx5069DdU7x_D92xGcp8IiIYLVkv6wmkByzFwEXOW9HazLBJw-VmY1Hbxuz2EPGauJqQwAmr8IAN0czyKL3-SPshQ6envsK6w_uw7gqU_hO02C1IW/s400/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-06-25+18.23.10%EF%BC%89.png&quot; width=&quot;440&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
∇専用アプリの入ったiPhoneからのぞくと家具が現れる。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhsuIW9s-PT4ueVgdOWZH8pK73rlF1LV8_7m2SVLwxNQnynbHmJqINSNfqXln0aWf5V8anpB60zFZSLb0QmEq_6PG0kaO76qPXUU8eQyOGDrDmjExgXhyphenhyphenyMwEkWqHR7JnQnzetH0zcGVZJR/s1600/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-06-25+18.24.52%EF%BC%89.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;281&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhsuIW9s-PT4ueVgdOWZH8pK73rlF1LV8_7m2SVLwxNQnynbHmJqINSNfqXln0aWf5V8anpB60zFZSLb0QmEq_6PG0kaO76qPXUU8eQyOGDrDmjExgXhyphenhyphenyMwEkWqHR7JnQnzetH0zcGVZJR/s400/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-06-25+18.24.52%EF%BC%89.png&quot; width=&quot;440&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
∇色の種類も変更可能。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZxhFuxzuIIy2PldiC_O1eynwyNr5UKuj64znsi-_74KN1jGq3aehAFA3i5TFvXKBmW0reKFW3qhQFVDxUISFwqnpX3TbIP3djUNB9y1WjnqknE8KuV8F1K7AXMl8NCU4tvGRM4AIRxS1Y/s1600/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-06-25+18.39.52%EF%BC%89.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;283&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZxhFuxzuIIy2PldiC_O1eynwyNr5UKuj64znsi-_74KN1jGq3aehAFA3i5TFvXKBmW0reKFW3qhQFVDxUISFwqnpX3TbIP3djUNB9y1WjnqknE8KuV8F1K7AXMl8NCU4tvGRM4AIRxS1Y/s400/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-06-25+18.39.52%EF%BC%89.png&quot; width=&quot;440&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
∇iPhoneからも注文可能&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgvt07WQoeRubxrneJB8VWcz_EwlHYqf3KIAu0fzooJ5h9qv-aOhdPLNPQq3ezy2qGlXIC_vLEK5pIvLwq4n9pzdMrI-B8Cq0fkYBaUNBj6lCD8SYkP36QJG1L6oJ2_E3s-JdcHfl4te7sT/s1600/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-06-25+18.36.17%EF%BC%89.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;232&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgvt07WQoeRubxrneJB8VWcz_EwlHYqf3KIAu0fzooJ5h9qv-aOhdPLNPQq3ezy2qGlXIC_vLEK5pIvLwq4n9pzdMrI-B8Cq0fkYBaUNBj6lCD8SYkP36QJG1L6oJ2_E3s-JdcHfl4te7sT/s320/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-06-25+18.36.17%EF%BC%89.png&quot; width=&quot;440&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
探してみたがiPhoneアプリは見つからなかった。&lt;br /&gt;
欧米だけとかなんだろうか？&lt;br /&gt;
それともただのアイデアだけか？&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
何はともあれこれがほんとのAR。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ソース元：&lt;a href=&quot;http://www.monogocoro.jp/2009/12/14/ikea-augmented-catalogue.html&quot;&gt;http://www.monogocoro.jp/2009/12/14/ikea-augmented-catalogue.html&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Thanks a lot !!</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/1914821670484987382/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2010/06/ikeaar.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/1914821670484987382'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/1914821670484987382'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2010/06/ikeaar.html' title='IKEAのARカタログがやばい件'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi0a8ED-yK2Kn4T2d-tKt26tVphMTKt9NolaVKrhsKx2dZWZ7WTkMI5LCP4cyfR1JT3GOloVJ4run0broaZ6b2m8Lct30HeMS1me2KlFwyT9GkY0RYxufkVmR7fkEKZsFTtev02EJ8VCYaj/s72-c/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%EF%BC%882010-06-25+18.22.49%EF%BC%89.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-7331536044580353178</id><published>2010-06-25T18:15:00.000+09:00</published><updated>2010-06-25T18:15:58.769+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="iPhone 4"/><title type='text'>iPhone4でデジカメ不要？</title><content type='html'>&lt;object height=&quot;385&quot; width=&quot;640&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/GWHstVNtAis&amp;amp;hl=ja_JP&amp;amp;fs=1&amp;amp;color1=0x402061&amp;amp;color2=0x9461ca&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/GWHstVNtAis&amp;amp;hl=ja_JP&amp;amp;fs=1&amp;amp;color1=0x402061&amp;amp;color2=0x9461ca&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;540&quot; height=&quot;385&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;
&lt;br /&gt;
iMovie機能で簡単編集。&lt;br /&gt;
デバイス上でこのような編集ができることは素晴らしい。&lt;br /&gt;
iPhoneからYoutubeにアップできるみたい。</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/7331536044580353178/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2010/06/iphone4.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/7331536044580353178'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/7331536044580353178'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2010/06/iphone4.html' title='iPhone4でデジカメ不要？'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8671218418139168652.post-571598150353376217</id><published>2010-06-24T17:20:00.002+09:00</published><updated>2010-06-24T17:30:25.329+09:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="iPhone"/><title type='text'>iOS4の問題点</title><content type='html'>アップデートして数日使ってみた感想。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
∇iPodが作動しない。すぐ落ちる。&lt;br /&gt;
致命的。twitterで『iOS4 iPod』で検索すると同じような例が見られバグが発生している。&lt;br /&gt;
↓&lt;br /&gt;
音楽を聞けないのでAccuRadioでと思って聞きながらtwitter...&lt;br /&gt;
↓&lt;br /&gt;
∇マルチタスクに対応していない。&lt;br /&gt;
Accuradioプレイ中ダブルプッシュでtwitterを見てみると、曲がそこで途切れる。Flycastでも同じ。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;center&gt;&lt;a href=&quot;http://picasaweb.google.com/anything12new14/MansonSTheory?authkey=Gv1sRgCNrxqKGA67n8wQE#5486251890148879426&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;281&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhR7rPTD4jpzE891-m802DyFyQnh0pa3sYWz-ViryTKIE8aBOn1iNVAYwbekqTRCziRB0dXOB2kF-HeMHSyHVj3Rl-49egXBM4MU9JLrbhEnB3Ln2Gdwfz4sforoBZ8w984QB_gsVt0UlUE/s288/iphone_photo.jpg&quot; style=&quot;margin: 5px;&quot; width=&quot;187&quot; /&gt;&lt;/a&gt;&lt;/center&gt;&lt;br /&gt;
&lt;br /&gt;
Googleのアプリにしても、検索の途中で他のアプリを起動し、googleに返ってくるとさっき調べた検索結果は表示されずホームに戻っている。設定で前回開いていた画面にしているのにも関わらず。全然マルチタスクじゃない！w&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
これはiOS4対応アップデートを待つしかないんだろうか？&lt;br /&gt;
とにかくiPodがすぐ落ちるのを何とかしてもらいたい。</content><link rel='replies' type='application/atom+xml' href='http://ohmygottogether.blogspot.com/feeds/571598150353376217/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ohmygottogether.blogspot.com/2010/06/ios4.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/571598150353376217'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8671218418139168652/posts/default/571598150353376217'/><link rel='alternate' type='text/html' href='http://ohmygottogether.blogspot.com/2010/06/ios4.html' title='iOS4の問題点'/><author><name>you_matz</name><uri>http://www.blogger.com/profile/07302544665454080920</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhR7rPTD4jpzE891-m802DyFyQnh0pa3sYWz-ViryTKIE8aBOn1iNVAYwbekqTRCziRB0dXOB2kF-HeMHSyHVj3Rl-49egXBM4MU9JLrbhEnB3Ln2Gdwfz4sforoBZ8w984QB_gsVt0UlUE/s72-c/iphone_photo.jpg" height="72" width="72"/><thr:total>0</thr:total></entry></feed>