<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule" >
  <channel>
  <title>J’avais vingt ans</title>
  <link>http://biblio.no-mania.com/</link>
  <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://biblio.no-mania.com/RSS/" />
  <description>(´・ω・`)</description>
  <lastBuildDate>Tue, 11 Feb 2014 12:14:37 GMT</lastBuildDate>
  <language>ja</language>
  <copyright>© Ninja Tools Inc.</copyright>
  <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" />

    <item>
    <title>支出リストちぇっかー</title>
    <description>
    <![CDATA[自営業者、副収入がないなど、月の収入が固定的な場合。<br />
出費（変動費）は日々変化し易いのでこちらを記録していく。<br />
<br />
支出の上限を設定<br />
<br />
1日単位の上限では、たまたま出費が多い日があるだけで、余力がなくなるので、<br />
日単位と週単位の上限を設定する。<br />
<br />
例：<br />
・日につき1000円<br />
・週につき7000円<br />
<br />
いまのソース・コード<br />
<br />
<a href="https://gist.github.com/LilinYume/8933726" title="">https://gist.github.com/LilinYume/8933726</a>]]>
    </description>
    <category>やってること</category>
    <link>http://biblio.no-mania.com/whatisdoing/%E6%94%AF%E5%87%BA%E3%83%AA%E3%82%B9%E3%83%88%E3%81%A1%E3%81%87%E3%81%A3%E3%81%8B%E3%83%BC</link>
    <pubDate>Tue, 11 Feb 2014 12:14:37 GMT</pubDate>
    <guid isPermaLink="false">biblio.no-mania.com://entry/3</guid>
  </item>
    <item>
    <title>ctimeヘッダで日付を取得</title>
    <description>
    <![CDATA[<pre><iostream><fstream><ctime>#include &lt;iostream&gt;<br />
#include &lt;ctime&gt;<br />
<br />
using namespace std;<br />
<br />
struct stamp<br />
{<br />
	time_t time_val;<br />
	struct tm *look_into;<br />
	int yy, mm, dd;<br />
<br />
	// 日付の取得<br />
	stamp()<br />
	{<br />
		time_val = time( NULL );<br />
		look_into = localtime( &amp;time_val );<br />
<br />
		yy = look_into-&gt; tm_year;<br />
		mm = look_into-&gt; tm_mon;<br />
		dd = look_into-&gt; tm_mday;<br />
	}<br />
	// スタンプする日付を渡す<br />
	void express( int &amp;year, int &amp;month, int &amp;day )<br />
	{<br />
		const int year_diff = 1900;<br />
		const int mon_diff = 1;<br />
<br />
		yy += year_diff;<br />
		mm += mon_diff;<br />
<br />
		year = yy;<br />
		month = mm;<br />
		day = dd;<br />
	}<br />
};<br />
int main()<br />
{<br />
	stamp tmp;<br />
	int y, m, d;<br />
	tmp.express( y, m, d );<br />
<br />
	cout &lt;&lt; y &lt;&lt; m &lt;&lt; d &lt;&lt; endl;<br />
<br />
	return 0;<br />
}<br />
</ctime></fstream></iostream></pre>]]>
    </description>
    <category>C++ Source Memo</category>
    <link>http://biblio.no-mania.com/cplus/ctime%E3%83%98%E3%83%83%E3%83%80%E3%81%A7%E6%97%A5%E4%BB%98%E3%82%92%E5%8F%96%E5%BE%97</link>
    <pubDate>Tue, 11 Feb 2014 08:10:14 GMT</pubDate>
    <guid isPermaLink="false">biblio.no-mania.com://entry/2</guid>
  </item>

    </channel>
</rss>