<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Memo</title>
<link>https://ameblo.jp/sk-0510/</link>
<atom:link href="https://rssblog.ameba.jp/sk-0510/rss20.xml" rel="self" type="application/rss+xml" />
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com" />
<description>以前できたんだけど・・・どうやるんだけっけ？調べた時に簡単にでもメモしておこう</description>
<language>ja</language>
<item>
<title>二段階認証</title>
<description>
アメンバー限定公開記事です。
</description>
<link>https://ameblo.jp/sk-0510/amemberentry-11584345766.html</link>
<pubDate>Thu, 01 Aug 2013 17:50:08 +0900</pubDate>
</item>
<item>
<title>emacsの色設定</title>
<description>
<![CDATA[ <strong>1. color-themeをインストール</strong><br>---------------------------------------------------------------------------<br>cd ~/.emacs.d<br>wget http://download.savannah.gnu.org/releases/color-theme/color-theme-6.6.0.tar.gz<br>tar xzf color-theme-6.6.0.tar.gz<br>rm color-theme-6.6.0.tar.gz<br>---------------------------------------------------------------------------<br><br><strong>2. ~/.emacs.elを設定</strong><br>--------------------------------------------------<br>(add-to-list 'load-path "~/.emacs.d/color-theme-6.6.0")<br>(require 'color-theme)<br>(eval-after-load "color-theme"<br>  '(progn<br>     (color-theme-initialize)<br>     (color-theme-<font color="#FF1493">〇〇</font>)))<br>--------------------------------------------------<br>◯◯の部分にテーマ名を入力<br><br>テーマの一覧※を参考にするか，「M-x color-theme-〇〇」で色々試してみるといいかも！<br><br>※<strong></strong>テーマの一覧<br><a href="http://gnuemacscolorthemetest.googlecode.com/svn/html/index-el.html" target="_blank">http://gnuemacscolorthemetest.googlecode.com/svn/html/index-el.html</a><br><br>~/.emacs.elを入れたら文字化けしちゃったので，~/.emacsの文字コード設定を同様に入力<br>--------------------------------------<br>(set-default-coding-systems '文字コード)                                            <br>(set-keyboard-coding-system '文字コード)                                            <br>(set-terminal-coding-system '文字コード)                                            <br>(set-buffer-file-coding-system '文字コード) <br>--------------------------------------
]]>
</description>
<link>https://ameblo.jp/sk-0510/entry-11414407075.html</link>
<pubDate>Tue, 27 Nov 2012 18:38:01 +0900</pubDate>
</item>
<item>
<title>terminalの色設定</title>
<description>
<![CDATA[ ~/.bash_profileに2行追加<br>------------------------------------------<br>export CLICOLOR=1<br>export LSCOLORS=DxGxcxdxCxegedabagacad<br>------------------------------------------<br><br>このサイトの色の対応表が便利<br>Today's Activity Report(bash_profileの設定）<br><a href="http://d.hatena.ne.jp/shokim/20110508/1304825759" target="_blank">http://d.hatena.ne.jp/shokim/20110508/1304825759</a>
]]>
</description>
<link>https://ameblo.jp/sk-0510/entry-11414402722.html</link>
<pubDate>Tue, 27 Nov 2012 18:34:55 +0900</pubDate>
</item>
<item>
<title>M-〇〇</title>
<description>
アメンバー限定公開記事です。
</description>
<link>https://ameblo.jp/sk-0510/amemberentry-11414331790.html</link>
<pubDate>Tue, 27 Nov 2012 16:44:49 +0900</pubDate>
</item>
<item>
<title>Sublime Text 2</title>
<description>
<![CDATA[ "恋に落ちるエディタ"のキャッチフレーズで有名な<font color="#FF1493">Sublime Text</font><br>とても見やすいので使い始めました．<br><br><strong>1. setting</strong><br>Sublime Text 2 ＞Preferences ＞Settings - User<br>-----------------------------------------------<br>{<br>"draw_white_space": "all",<br>"font_size": 14.0,<br>"highlight_line": true,<br>"line_padding_top": 5,<br>"tab_size": 4,<br>"trim_trailing_white_space_on_save": true,<br>"word_wrap": true<br>}<br>-----------------------------------------------<br>ファイルを保存して再起動<br><br><strong>2. euc-jp, shift-jisの対応</strong><br>(1) packageを入れる準備<br>View ＞ Show Console<br>エディタの下のエリアに以下を入力<br>-----------------------------------------------<br>import urllib2,os;pf='Package Control.sublime-package';ipp=sublime.installed_packages_path();os.makedirs(ipp) if not os.path.exists(ipp) else None;open(os.path.join(ipp,pf),'wb').write(urllib2.urlopen('http://sublime.wbond.net/'+pf.replace(' ','%20')).read())<br>-----------------------------------------------<br><br>(2) ConverToUTF8<br>shift+command+pp → Package Control: Install Package → ConvetToUTF8<br>再起動<br>
]]>
</description>
<link>https://ameblo.jp/sk-0510/entry-11414270662.html</link>
<pubDate>Tue, 27 Nov 2012 14:27:56 +0900</pubDate>
</item>
<item>
<title>正規表現</title>
<description>
<![CDATA[ パターンに変数を使う場合<br>　$pattern = "abc" 問題ない<br>　$pattern ="a*b"  問題あり→$pattern="a<span style="color: rgb(255, 20, 147);">\</span>*b"にする必要がある<br>　if(text =~ /$pattern/){} <br><br>パターンに記号を含む場合は，注意！<br>
]]>
</description>
<link>https://ameblo.jp/sk-0510/entry-11278384526.html</link>
<pubDate>Fri, 15 Jun 2012 21:52:27 +0900</pubDate>
</item>
<item>
<title>サーバをまたぐコピー</title>
<description>
アメンバー限定公開記事です。
</description>
<link>https://ameblo.jp/sk-0510/amemberentry-11266327739.html</link>
<pubDate>Fri, 01 Jun 2012 19:11:40 +0900</pubDate>
</item>
<item>
<title>ハンバーグ</title>
<description>
アメンバー限定公開記事です。
</description>
<link>https://ameblo.jp/sk-0510/amemberentry-11224706532.html</link>
<pubDate>Mon, 16 Apr 2012 15:30:48 +0900</pubDate>
</item>
<item>
<title>ファイル数カウント</title>
<description>
<![CDATA[ ls | wc -w
]]>
</description>
<link>https://ameblo.jp/sk-0510/entry-11179776015.html</link>
<pubDate>Thu, 01 Mar 2012 14:58:46 +0900</pubDate>
</item>
<item>
<title>酢豚風鶏ももとなすの中華炒め</title>
<description>
アメンバー限定公開記事です。
</description>
<link>https://ameblo.jp/sk-0510/amemberentry-11166509187.html</link>
<pubDate>Thu, 16 Feb 2012 14:15:48 +0900</pubDate>
</item>
</channel>
</rss>
