<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/prgmemo/">
    <title>プログラムメモ</title>
    <link>http://w.atwiki.jp/prgmemo/</link>
    <atom:link href="https://w.atwiki.jp/prgmemo/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>プログラムメモ</description>

    <dc:language>ja</dc:language>
    <dc:date>2016-05-30T08:35:13+09:00</dc:date>
    <utime>1464564913</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/prgmemo/pages/14.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/prgmemo/pages/13.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/prgmemo/pages/11.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/prgmemo/pages/10.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/prgmemo/pages/9.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/prgmemo/pages/8.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/prgmemo/pages/7.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/prgmemo/pages/6.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/prgmemo/pages/5.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/prgmemo/pages/4.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/prgmemo/pages/14.html">
    <title>JavaScript の文字列比較</title>
    <link>https://w.atwiki.jp/prgmemo/pages/14.html</link>
    <description>
      [[JavaScript]] の文字列比較

String オブジェクトとリテラル文字列は === で一致しないので、== を使用する

(new String(&#039;aaa&#039;)) !== &#039;aaa&#039;    </description>
    <dc:date>2016-05-30T08:35:13+09:00</dc:date>
    <utime>1464564913</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/prgmemo/pages/13.html">
    <title>pytz で datetime の naive から aware の変換には localizeを使用する</title>
    <link>https://w.atwiki.jp/prgmemo/pages/13.html</link>
    <description>
      pytz で datetime の naive から aware の変換には localizeを使用する    </description>
    <dc:date>2016-04-28T16:33:29+09:00</dc:date>
    <utime>1461828809</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/prgmemo/pages/11.html">
    <title>フィールドの種類</title>
    <link>https://w.atwiki.jp/prgmemo/pages/11.html</link>
    <description>
      フィールドの種類の特徴

**メール
ビュー：mailto のリンクとして表示される
HTMLビュー：通常のテキストとしてメールアドレスのみ表示される

**URL
ビュー、HTMLビューともに、リンクとして表示される

----

#amazon2(600x520)    </description>
    <dc:date>2013-01-22T21:09:14+09:00</dc:date>
    <utime>1358856554</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/prgmemo/pages/10.html">
    <title>Zoho Creator</title>
    <link>https://w.atwiki.jp/prgmemo/pages/10.html</link>
    <description>
      Zoho Creator のメモ    </description>
    <dc:date>2013-01-22T21:00:29+09:00</dc:date>
    <utime>1358856029</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/prgmemo/pages/9.html">
    <title>配列</title>
    <link>https://w.atwiki.jp/prgmemo/pages/9.html</link>
    <description>
      **配列の要素の削除

Array.splice(開始番号,削除する要素数);    </description>
    <dc:date>2013-01-22T16:52:47+09:00</dc:date>
    <utime>1358841167</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/prgmemo/pages/8.html">
    <title>None or &quot;&quot; 判定 - [Python]</title>
    <link>https://w.atwiki.jp/prgmemo/pages/8.html</link>
    <description>
      *●Python 文字列の None or &quot;&quot; 判定

 if (a)
 if (not a)

None と &quot;&quot;（空文字列） は False として判定される！    </description>
    <dc:date>2013-02-09T11:19:45+09:00</dc:date>
    <utime>1360376385</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/prgmemo/pages/7.html">
    <title>Python</title>
    <link>https://w.atwiki.jp/prgmemo/pages/7.html</link>
    <description>
      Python    </description>
    <dc:date>2013-01-20T11:25:00+09:00</dc:date>
    <utime>1358648700</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/prgmemo/pages/6.html">
    <title>メニュー左</title>
    <link>https://w.atwiki.jp/prgmemo/pages/6.html</link>
    <description>
      メニュー
[[トップページ&gt;http://www52.atwiki.jp/prgmemo/pages/4.html]]
-[[JavaScript&gt;http://www52.atwiki.jp/prgmemo/pages/5.html]]
--[[配列&gt;http://www52.atwiki.jp/prgmemo/pages/9.html]]
--[[文字列比較&gt;http://www52.atwiki.jp/prgmemo/pages/14.html]]
-[[Python&gt;http://www52.atwiki.jp/prgmemo/pages/7.html]]
--[[文字列の None or &quot;&quot; 判定&gt;http://www52.atwiki.jp/prgmemo/pages/8.html]]
--[[pytz.localize&gt;http://www52.atwiki.jp/prgmemo/pages/13.html]]
-[[Zoho Creator&gt;http://www52.atwiki.jp/prgmemo/pages/10.html]]
--[[フィールドの種類&gt;http://www52.atwiki.jp/prgmemo/pages/11.html]]

--------------------------------------------------------------------------------


リンク
@wiki
@wikiご利用ガイド
wikiの編集方法についてはこちら
 
[[ここを編集&gt;http://www52.atwiki.jp/prgmemo/editx/6.html]]    </description>
    <dc:date>2016-05-30T08:34:31+09:00</dc:date>
    <utime>1464564871</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/prgmemo/pages/5.html">
    <title>JavaScript</title>
    <link>https://w.atwiki.jp/prgmemo/pages/5.html</link>
    <description>
      JavaScript    </description>
    <dc:date>2013-01-20T10:42:39+09:00</dc:date>
    <utime>1358646159</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/prgmemo/pages/4.html">
    <title>プログラムメモ</title>
    <link>https://w.atwiki.jp/prgmemo/pages/4.html</link>
    <description>
      プログラムメモです！    </description>
    <dc:date>2013-01-20T10:40:27+09:00</dc:date>
    <utime>1358646027</utime>
  </item>
  </rdf:RDF>
