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

<channel>
	<title>muzin &#187; Tips</title>
	<atom:link href="http://www.muzin.org/wp/category/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.muzin.org/wp</link>
	<description>PHPとか、JavaScriptとか、YomiSearch用の無料テンプレートを配布したり、ツールを作ったりしてます。</description>
	<lastBuildDate>Sat, 17 Oct 2020 12:11:57 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>spモードメールで「認証エラーが発生」したときの対処法まとめ</title>
		<link>http://www.muzin.org/wp/tips/spmode_150/</link>
		<comments>http://www.muzin.org/wp/tips/spmode_150/#comments</comments>
		<pubDate>Sat, 05 May 2012 02:35:01 +0000</pubDate>
		<dc:creator>muzin</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.muzin.org/wp/?p=150</guid>
		<description><![CDATA[私はAndroidスマートフォンで、spモードメールを使っています。 ところが先日、 「認証エラーが発生しました。」 とエラーが出て、メールの送受信ができないことがありました。 その対処法についてまとめます。 ■対処法１． docomo側の不具合かも知れないので「通信障害のお知らせ」をチェック 年１回くらい、docomo側の不具合でメールが送受信できなくなることがあるようです。 下記ＵＲＬから通信障害が発生していないかチェックできます。 http://www.nttdocomo.co.jp/info/ もし通信障害が出ている場合の対処法は 「直るまで待つ」しかありません(&#8211;;) ■対処法2． spモードメールのアプリを最新に更新 ｓｐモードメールのアプリが古いために、うまく接続ができないこともあるようです。 下記手順で最新のアプリにすることで直ることがあります。 １．Google Playストアにアクセス ２．メニュー（左下のボタン）を押して「マイアプリ」を選択 ３．ｓｐモードメールのアプリを選択して、手動更新 ４．携帯を再起動する ■対処法３． マイアドレス情報を更新 マイアドレス情報というものを更新することで、復旧することもあるようです。 手順としては以下のとおり。 １．ｓｐモードメールアプリを開く ２．メール設定　→　その他　→　マイアドレス　と押して ３．「マイアドレス情報を更新します」に対してＯＫを押す。 ■対処法４． ｓｐモードメールのアプリを再インストール 上記方法を試してもダメならば、 ｓｐモードメールのアプリを再インストールするという最終手段に出ることになります。 ただし、再インストールをすると 今までのメールが消えてしまうために、残しておきたいメールはバックアップが必須です。 時間も手間もかかりますので、あくまで最終手段としてください。 メールのバックアップ方法および、アプリの再インストール方法は以下を参照。 http://pc.nikkeibp.co.jp/article/column/20110707/1032833/ 以上、いかがだったでしょうか。 携帯メールが届かないのは不安になりますよね。 ちなみにＰＣ上から、携帯のメールを送受信することもできます。 &#8230; <a href="http://www.muzin.org/wp/tips/spmode_150/">続きを読む <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.muzin.org/wp/tips/spmode_150/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>[C++] ld: duplicate symbol エラーの解決策</title>
		<link>http://www.muzin.org/wp/tips/c-ld-duplicate-symbol-%e3%82%a8%e3%83%a9%e3%83%bc%e3%81%ae%e8%a7%a3%e6%b1%ba%e7%ad%96_94/</link>
		<comments>http://www.muzin.org/wp/tips/c-ld-duplicate-symbol-%e3%82%a8%e3%83%a9%e3%83%bc%e3%81%ae%e8%a7%a3%e6%b1%ba%e7%ad%96_94/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 03:23:08 +0000</pubDate>
		<dc:creator>muzin</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.muzin.org/wp/?p=94</guid>
		<description><![CDATA[C++でコードを書いていて、duplicate symbolというエラーが出てコンパイルが通らないことがあった。 たとえばこんな感じ。 g++ -O2 -o ./a.out main.cc function.o ld: duplicate symbol Find_solution(double (*)(Param&#038;, double), Param&#038;, double*)in function.o and /var/folders/5x/5xQHgcY6GxS5B1fAK7NoK++++TI/-Tmp-//ccr88Eat.o collect2: ld returned 1 exit status make: *** [constraints] Error 1 調べてみると、同じファイルを二重に include してしまったために、 関数や変数が二重定義されることで起こるエラーのようだ。 解決策としてはヘッダファイルに #ifndef __FUNCTION_H_INCLUDED_ #define __FUNCTION_H_INCLUDED_ &#8230; <a href="http://www.muzin.org/wp/tips/c-ld-duplicate-symbol-%e3%82%a8%e3%83%a9%e3%83%bc%e3%81%ae%e8%a7%a3%e6%b1%ba%e7%ad%96_94/">続きを読む <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.muzin.org/wp/tips/c-ld-duplicate-symbol-%e3%82%a8%e3%83%a9%e3%83%bc%e3%81%ae%e8%a7%a3%e6%b1%ba%e7%ad%96_94/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>[C++] 警告 inline function used but never defined の解決策</title>
		<link>http://www.muzin.org/wp/tips/c-%e8%ad%a6%e5%91%8a-inline-function-used-but-never-defined-%e3%81%ae%e8%a7%a3%e6%b1%ba%e7%ad%96_92/</link>
		<comments>http://www.muzin.org/wp/tips/c-%e8%ad%a6%e5%91%8a-inline-function-used-but-never-defined-%e3%81%ae%e8%a7%a3%e6%b1%ba%e7%ad%96_92/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 03:14:32 +0000</pubDate>
		<dc:creator>muzin</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.muzin.org/wp/?p=92</guid>
		<description><![CDATA[プロの人からすれば常識なんだろうけど C++で inline関数を使っているときに warning: inline function used but never defined という警告が出ることがある。 http://www.parashift.com/c++-faq-lite/inline-functions.html#faq-9.6 によれば、inline関数は定義も ヘッダファイルに書かないといけないらしい。 普通の関数は、ヘッダで宣言だけして、定義はソースファイルに書くが インライン関数の場合は、ヘッダファイルに定義を書くのが正解ということ。]]></description>
		<wfw:commentRss>http://www.muzin.org/wp/tips/c-%e8%ad%a6%e5%91%8a-inline-function-used-but-never-defined-%e3%81%ae%e8%a7%a3%e6%b1%ba%e7%ad%96_92/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[c++対処法] deprecated conversion from string constant to ‘char*’</title>
		<link>http://www.muzin.org/wp/tips/deprecated-conversion-from-string-constant-to-cha_79/</link>
		<comments>http://www.muzin.org/wp/tips/deprecated-conversion-from-string-constant-to-cha_79/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 10:46:04 +0000</pubDate>
		<dc:creator>muzin</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.muzin.org/wp/?p=79</guid>
		<description><![CDATA[c++でコンパイルをしようとすると  deprecated conversion from string constant to ‘char*’ という警告が出ることへの対策。 変更の予定のない文字定数の引数にconstをつけることで解決。 たとえば int testfunction( char keyword[]) を int testfunction( const char keyword[]) に変更。 ○追記： 直訳すると「string定数からchar*への変換は推奨されていない」ということ。 正直言うと、なんでこれで警告が起きなくなるのかあまり理解できていない。 C++に詳しい人がいたらコメントください。]]></description>
		<wfw:commentRss>http://www.muzin.org/wp/tips/deprecated-conversion-from-string-constant-to-cha_79/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ソーシャルメディア用ボタン（いいね、ツイート、mixiチェックetc）まとめ</title>
		<link>http://www.muzin.org/wp/tips/%e3%82%bd%e3%83%bc%e3%82%b7%e3%83%a3%e3%83%ab%e3%83%a1%e3%83%87%e3%82%a3%e3%82%a2%e7%94%a8%e3%83%9c%e3%82%bf%e3%83%b3%ef%bc%88%e3%81%84%e3%81%84%e3%81%ad%e3%80%81%e3%83%84%e3%82%a4%e3%83%bc%e3%83%88_76/</link>
		<comments>http://www.muzin.org/wp/tips/%e3%82%bd%e3%83%bc%e3%82%b7%e3%83%a3%e3%83%ab%e3%83%a1%e3%83%87%e3%82%a3%e3%82%a2%e7%94%a8%e3%83%9c%e3%82%bf%e3%83%b3%ef%bc%88%e3%81%84%e3%81%84%e3%81%ad%e3%80%81%e3%83%84%e3%82%a4%e3%83%bc%e3%83%88_76/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 10:40:19 +0000</pubDate>
		<dc:creator>muzin</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.muzin.org/wp/?p=76</guid>
		<description><![CDATA[人から尋ねられたので調べたまとめ。 ソーシャルメディア（Facebook, twitter, mixi, はてな）などが提供する ボタン（いいね、ツイート、mixiチェックetc）の設置法まとめ。 時間があれば一括でできるようなコードを作ってみたい。 ○twitterのツイートボタン http://twitter.com/about/resources/buttons#tweet にアクセス。 「リンクを共用する」を選んで 「言語設定」を「日本語」にしたらあとはデフォルトでOKだと思います。 「コードのプリビューを見る」の下に &#60;a href・・・で始まるコードが表示されるので、 これをHTMLの適当なところに書けばOK。 ○Facebookの「いいね」ボタン http://www.facebook-japan.com/iine.html が参考になると思います。 ○Google +1ボタン http://www.google.com/intl/ja/webmasters/+1/button/index.html からコードを取得できます。 &#60;!&#8211; このタグを +1 ボタンを表示する場所に挿入してください &#8211;&#62; &#60;g:plusone annotation=&#8221;inline&#8221;&#62;&#60;/g:plusone&#62; をボタンを表示させたい場所に挿入。 &#60;!&#8211; この render 呼び出しを適切な位置に挿入してください &#8211;&#62; 以下は&#60;head&#62;～&#60;/head&#62;の間に入れてください。 「スニペットのカスタマイズ」以下は無視してOK ○はてなブックマーク http://b.hatena.ne.jp/guide/bbutton &#8230; <a href="http://www.muzin.org/wp/tips/%e3%82%bd%e3%83%bc%e3%82%b7%e3%83%a3%e3%83%ab%e3%83%a1%e3%83%87%e3%82%a3%e3%82%a2%e7%94%a8%e3%83%9c%e3%82%bf%e3%83%b3%ef%bc%88%e3%81%84%e3%81%84%e3%81%ad%e3%80%81%e3%83%84%e3%82%a4%e3%83%bc%e3%83%88_76/">続きを読む <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.muzin.org/wp/tips/%e3%82%bd%e3%83%bc%e3%82%b7%e3%83%a3%e3%83%ab%e3%83%a1%e3%83%87%e3%82%a3%e3%82%a2%e7%94%a8%e3%83%9c%e3%82%bf%e3%83%b3%ef%bc%88%e3%81%84%e3%81%84%e3%81%ad%e3%80%81%e3%83%84%e3%82%a4%e3%83%bc%e3%83%88_76/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>海外PCで日本語を入力する</title>
		<link>http://www.muzin.org/wp/tips/ajax-ime_55/</link>
		<comments>http://www.muzin.org/wp/tips/ajax-ime_55/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 10:20:44 +0000</pubDate>
		<dc:creator>muzin</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.muzin.org/wp/tips/ajax-ime_55/</guid>
		<description><![CDATA[IT media Bizでものすごいサービスが紹介されていました。 なんと日本語変換のできない海外のPCでも日本語が入力できるサービスです。 ○Ajax IME: Web-based Japanese Input Method Operaでは上手く動かなかったので、FireFoxで試してみたのですが ・・・凄すぎる！！！！！！ 感動です！ ○Ajax を使った手書き文字認識 手書き文字の認識もできます。 これまた感動！ ○きまぐれ日記: Ajax IME ブックマークレット さらにブックマークレットに登録しておけば、任意のフォームでこの機能が使えるという素晴らしさ。 ちなみにこんなサイトもありました。 ○Sumibi.org ローマ字を日本語に変換できる無料サイト 日本語入力して、そのまま Google で検索できます。 ただ使いやすさは、一番最初に紹介したAjax IMEが上かな。 元記事：ITmedia Biz.ID：海外のPCでも日本語を入力する]]></description>
		<wfw:commentRss>http://www.muzin.org/wp/tips/ajax-ime_55/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windowsで使える８つのTips  from ITmedia</title>
		<link>http://www.muzin.org/wp/tips/windows-tips-itmedia_53/</link>
		<comments>http://www.muzin.org/wp/tips/windows-tips-itmedia_53/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 00:07:57 +0000</pubDate>
		<dc:creator>muzin</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.muzin.org/wp/tips/windows-tips-itmedia_53/</guid>
		<description><![CDATA[ITmedia Biz.ID　の　3分LifeHacking　から、 Windowsで使えるTipsを抜粋してみた。 個人的なメモなので分かりづらい点もあると思いますが、その点はネタ元を参照。 ○ファイル名に連番をつける １．ファイル名を変更したいファイル群を選択 ２．右クリックして「名前の変更」（またはF2キー） ３．新しいファイル名を入力し、Enterキーで確定 ４．ファイル名末尾に(1)、(2)、・・・と連番がつく 間違えて入力した場合は[Ctrl]＋[z]である程度元に戻る。 ○フォルダ内で目的のファイルを探す ファイル名の先頭の文字を入力すると、そのファイルが選択される。 たとえば[r]を押すと”readme.txt”が選択されるなど。 ○複数ファイルのコピーで「すべて上書きしない」 ファイルコピー時、同名のファイルがあるときには「上書きしますか？」と聞かれる。 このときの選択肢は 「はい」「すべて上書き」「いいえ」 の３つしかないが、 [Shift]を押しながら「いいえ」を押すと、「すべて上書きしない」選択になる。 元ネタ：ITmedia Biz.ID：Windowsだけでできる――3つのファイル操作ワザ ○F5キーの便利な使い方 ・Internet Explorer 7 ・Firefox 2 ［Ctrl］＋[F5] スーパーリロード（キャッシュを無視して読み込み） ・PowerPoint 2003／2007 ［Shift］＋[F5] 選択したページからスライドショーの実行 ・Word 2003 ［Shift］＋[F5] 直前の編集位置に移動 ［Ctrl／Alt］＋[F5] ウィンドウの大きさを元のサイズに戻す ［Shift］+［Ctrl］＋[F5]ブックマークを挿入する &#8230; <a href="http://www.muzin.org/wp/tips/windows-tips-itmedia_53/">続きを読む <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.muzin.org/wp/tips/windows-tips-itmedia_53/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
