<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>6月の蜜蜂</title>
<link>https://ameblo.jp/lioney09/</link>
<atom:link href="https://rssblog.ameba.jp/lioney09/rss20.xml" rel="self" type="application/rss+xml" />
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com" />
<description>自由気まま！普通のことも書けば腐男子としての日常も書く…予定。</description>
<language>ja</language>
<item>
<title>SEメモその１</title>
<description>
<![CDATA[ <p>Sub SpinLock()<br>'=============================================<br>'概要：スピンボタンの参照をOffset(0, 1)に強制します①<br>'引数：なし<br>'戻り値：なし<br>'=============================================<br>&nbsp; With ActiveSheet.Shapes(Application.Caller)<br>&nbsp; &nbsp; .TopLeftCell.Offset(0, 1) = .OLEFormat.Object.Value<br>&nbsp; End With<br>End Sub<br>Sub RecordAdd()<br>'=============================================<br>'概要：タスク及びレコードを追加します<br>'引数：なし<br>'戻り値: なし<br>'=============================================<br>Range("A1").Value = "ロック"<br>Dim i As Integer 'レコードの最終行を特定する変数<br>Dim str As String 'タスク名<br>'タスク名の入力<br>str = InputBox("TASK名を入力してください。", "TASK名")<br>If str = "" Or str = "[100%samp]" Or str = "[0%samp]" Then<br>&nbsp; &nbsp; Exit Sub<br>End If<br><br>'変数の初期化<br>i = 4<br>'最終行取得<br>Do<br>&nbsp; &nbsp; i = i + 1<br>Loop While Cells(i, 3).Value &lt;&gt; ""<br>'レコード追加<br>Cells(i - 1, 3).Select<br>Selection.ListObject.ListRows.Add AlwaysInsert:=True<br>'スピンボタンのコピー<br>Cells(i - 1, 2).Copy Cells(i, 2)<br>'その他レコードのカラム毎初期値設定<br>Cells(i, 3).Value = 0<br>Cells(i, 2).Value = str<br><br>'レコードの並び替え<br>&nbsp; &nbsp; ActiveWorkbook.Worksheets("Sheet1").ListObjects("テーブル1").Sort.SortFields.Clear<br>&nbsp; &nbsp; ActiveWorkbook.Worksheets("Sheet1").ListObjects("テーブル1").Sort.SortFields.Add _<br>&nbsp; &nbsp; &nbsp; &nbsp; Key:=Range("テーブル1[進捗]"), SortOn:=xlSortOnValues, Order:=xlDescending, _<br>&nbsp; &nbsp; &nbsp; &nbsp; DataOption:=xlSortNormal<br>&nbsp; &nbsp; With ActiveWorkbook.Worksheets("Sheet1").ListObjects("テーブル1").Sort<br>&nbsp; &nbsp; &nbsp; &nbsp; .Header = xlYes<br>&nbsp; &nbsp; &nbsp; &nbsp; .MatchCase = False<br>&nbsp; &nbsp; &nbsp; &nbsp; .Orientation = xlTopToBottom<br>&nbsp; &nbsp; &nbsp; &nbsp; .SortMethod = xlPinYin<br>&nbsp; &nbsp; &nbsp; &nbsp; .Apply<br>&nbsp; &nbsp; End With<br><br>Range("A1").Value = ""<br>End Sub<br>Sub MakeTaskFile()<br>'=============================================<br>'概要：選択したタスクの作業フォルダを作成します。<br>'引数：なし<br>'戻り値: なし<br>'=============================================<br>Dim rng As Range '選択範囲を取得する変数<br>Dim taskName As String '選択したタスクの名前<br>Dim mkFileName As String '作るファイルの名前<br>Dim mkNum As Integer '作るファイルの連番<br>Dim runFile As String '走査するファイル名を格納する変数<br>Dim runNum As Integer '走査する連番を格納する変数<br>Dim runTask As String '走査するタスク名を格納する変数<br>Dim numExist As Boolean '連番がすでに存在するかどうかを表す<br><br>Range("A1").Value = "ロック"<br>'選択範囲からタスク名を取得する<br>Set rng = Range(Selection.Address)<br>taskName = Cells(rng.Row, 2).Value<br>'エラーチェック：選択したタスクが適しているか判定<br>If taskName = "" Or taskName = "[0%samp]" Or taskName = "[100%samp]" Or taskName = "TASK名" Then<br>&nbsp; &nbsp; MsgBox "ファイルを作成したいTASKを選択してください。", vbCritical<br>&nbsp; &nbsp; Range("A1").Value = ""<br>&nbsp; &nbsp; Exit Sub<br>End If<br><br>'フォルダを走査する前の初期値設定<br>mkFileName = "TASK_01_" &amp; taskName &amp; "_" &amp; Format(Date, "mmdd")<br>mkNum = 1<br>numExist = False<br>'フォルダ走査<br>1:<br>runFile = Dir(ThisWorkbook.Path &amp; "\TASK*", vbDirectory)<br>Do While runFile &lt;&gt; ""<br>&nbsp; &nbsp; runNum = Val(Left(Mid(runFile, 6), 2))<br>&nbsp; &nbsp; runTask = Left(Mid(runFile, 9), InStr(Mid(runFile, 9), "_") - 1)<br>&nbsp; &nbsp; '既にタスクファイルが作られてないかチェック<br>&nbsp; &nbsp; If runTask = taskName Then<br>&nbsp; &nbsp; &nbsp; &nbsp; MsgBox "そのタスク名のファイルは既に存在しています。", vbCritical<br>&nbsp; &nbsp; &nbsp; &nbsp; Range("A1").Value = ""<br>&nbsp; &nbsp; &nbsp; &nbsp; Exit Sub<br>&nbsp; &nbsp; End If<br>&nbsp; &nbsp; '連番が既に存在していないかチェック<br>&nbsp; &nbsp; If runNum = mkNum Then<br>&nbsp; &nbsp; &nbsp; &nbsp; numExist = True<br>&nbsp; &nbsp; End If<br><br>&nbsp; &nbsp; runFile = Dir()<br>Loop<br>'連番が既に存在していれば連番の数を一つ上げて再走査<br>If numExist = True Then<br>&nbsp; &nbsp; mkNum = mkNum + 1<br>&nbsp; &nbsp; mkFileName = "TASK_" &amp; Format(mkNum, "00") &amp; "_" &amp; taskName &amp; "_" &amp; Format(Date, "mmdd")<br>&nbsp; &nbsp; numExist = False<br>&nbsp; &nbsp; GoTo 1<br>End If<br>'条件を満たしていればフォルダ作成<br>MkDir (ThisWorkbook.Path &amp; "\" &amp; mkFileName)<br>'その配下に作業メモを置く<br>Open ThisWorkbook.Path &amp; "\" &amp; mkFileName &amp; "\作業メモ" For Output As #1<br>&nbsp; &nbsp; Print #1, taskName &amp; "の作業メモ"<br>Close #1<br><br>MsgBox taskName &amp; "のタスクフォルダを作成しました。"<br>Range("A1").Value = ""<br>End Sub<br><br>以下シートに</p><p>&nbsp;</p><p>Private Sub Worksheet_Change(ByVal Target As Range)<br>'=============================================<br>'概要：スピンボタンの参照をOffset(0, 1)に強制します②<br>'また進捗が100を記録した場合降順に並べます。<br>'引数：target as range<br>'戻り値: なし<br>'=============================================<br>Dim shp As Object<br>For Each shp In ActiveSheet.Shapes<br>&nbsp; &nbsp; If shp.Name Like "*Spinner*" And Target.Address = Cells(shp.TopLeftCell.Row, shp.TopLeftCell.Column + 1).Address Then<br>&nbsp; &nbsp; &nbsp; &nbsp; shp.OLEFormat.Object.Value = Target.Value<br>&nbsp; &nbsp; End If<br>Next<br>'進捗が100を記録した場合降順に並べます。<br>If Range("A1").Value &lt;&gt; "ロック" Then<br>If Target.Column = 3 And Target.Value = 100 Then<br>&nbsp; &nbsp; taskName = Cells(Target.Row, Target.Column - 1).Value<br>&nbsp; &nbsp; ActiveWorkbook.Worksheets("Sheet1").ListObjects("テーブル1").Sort.SortFields.Clear<br>&nbsp; &nbsp; ActiveWorkbook.Worksheets("Sheet1").ListObjects("テーブル1").Sort.SortFields.Add _<br>&nbsp; &nbsp; &nbsp; &nbsp; Key:=Range("テーブル1[進捗]"), SortOn:=xlSortOnValues, Order:=xlDescending, _<br>&nbsp; &nbsp; &nbsp; &nbsp; DataOption:=xlSortNormal<br>&nbsp; &nbsp; With ActiveWorkbook.Worksheets("Sheet1").ListObjects("テーブル1").Sort<br>&nbsp; &nbsp; &nbsp; &nbsp; .Header = xlYes<br>&nbsp; &nbsp; &nbsp; &nbsp; .MatchCase = False<br>&nbsp; &nbsp; &nbsp; &nbsp; .Orientation = xlTopToBottom<br>&nbsp; &nbsp; &nbsp; &nbsp; .SortMethod = xlPinYin<br>&nbsp; &nbsp; &nbsp; &nbsp; .Apply<br>&nbsp; &nbsp; End With<br>End If<br>End If<br>End Sub<br>Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)<br>'=============================================<br>'概要：レコードを削除します。<br>'引数：target as range,Cancel As Boolean<br>'戻り値: なし<br>'=============================================<br>Dim ans As String<br>If Target.Column &gt; 1 And Target.Column &lt; 9 And Target.Row &gt; 4 And Cells(Target.Row, 3).Value &lt;&gt; "" And Cells(Target.Row, 2).Value &lt;&gt; "[0%samp]" And Cells(Target.Row, 2).Value &lt;&gt; "[100%samp]" Then<br>&nbsp; &nbsp; ans = MsgBox("TASKを削除しますか？", vbYesNo, "削除確認")<br>&nbsp; &nbsp; If ans = vbYes Then<br>&nbsp; &nbsp; Range("A1").Value = "ロック"<br>&nbsp; &nbsp; Selection.ListObject.ListRows(Range(Selection.Address).Row - 4).Delete<br>&nbsp; &nbsp; Range("A1").Value = ""<br>&nbsp; &nbsp; End If<br>End If<br>Cancel = True<br>End Sub<br><br>&nbsp;</p>
]]>
</description>
<link>https://ameblo.jp/lioney09/entry-12451538090.html</link>
<pubDate>Tue, 02 Apr 2019 23:42:19 +0900</pubDate>
</item>
<item>
<title>今日のおさらい？ヾ(`∀´*)ﾉ</title>
<description>
<![CDATA[ <p><font color="#999999" size="3"><strong><img style="WIDTH: 22px; HEIGHT: 20px" alt="汗" src="https://stat.ameba.jp/blog/ucs/img/char/char2/028.gif" width="22" height="20"><font color="#00bfff">３日目!!<font size="2">(｀・ω・´)</font><font size="1">キリ</font></font><img alt="メモ" src="https://stat.ameba.jp/blog/ucs/img/char/char2/131.gif" width="16" height="16"></strong></font></p><p><strong><font size="3"><font color="#999999"><br></font></font></strong></p><p><strong><font color="#999999" size="3"><br></font></strong></p><p><font color="#999999" size="3">今日はいい日曜日でした～ヾ(`∀´*)ﾉ</font></p><p><font color="#999999" size="3">午前中は家でグダグダして</font></p><p><font color="#999999" size="3">で、午後からちょっと出かけた!<img alt="晴れ" src="https://stat.ameba.jp/blog/ucs/img/char/char2/022.gif" width="16" height="16"></font></p><p><font size="3"><font color="#999999"><br></font></font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3">散歩がてらにね</font></p><p><font color="#999999"><font size="3">昨日言</font><font size="3">って</font><font size="3">たGファンタジー買うためにも<img alt="パンダ" src="https://stat.ameba.jp/blog/ucs/img/char/char2/006.gif" width="16" height="16"></font></font></p><p><font size="3"><br><font color="#999999"><br></font></font></p><p><font color="#999999" size="3">そしたらスーパーで友達に偶然会ったりして！<img alt="ビル" src="https://stat.ameba.jp/blog/ucs/img/char/char2/093.gif" width="16" height="16"></font></p><p><font color="#999999" size="3">互いの買い物に付き合ったりして…</font></p><p><font size="3"><br><font color="#999999"><br></font></font></p><p><font color="#999999" size="2">「今日の夕食何なん？」</font></p><p><font color="#999999" size="2">「オレ、○○～」</font></p><p><font color="#999999" size="2">「あ、じゃぁ、××いるんとちゃうん？</font></p><p><font color="#999999" size="2">オレ取ってきたろかぁ？」</font></p><p><font color="#999999">「あ、確かに…。あ、待って。オレも行く～」</font></p><font size="2"><p><font color="#999999" size="1">＊会話一部抜粋<br></font><font color="#999999"><br></font></p><p><font color="#999999" size="3">…みーたいなほのぼの感(^０^)</font></p><p><font color="#999999" size="3">おもろかった～<img alt="にゃー" src="https://stat.ameba.jp/blog/ucs/img/char/char2/002.gif" width="16" height="16"></font></p><p><font color="#999999" size="3">楽しかった～w<img alt="キラキラ" src="https://stat.ameba.jp/blog/ucs/img/char/char2/123.gif" width="16" height="16"></font></p><p><font size="3"><br><font color="#999999"><br></font></font></p><p><font color="#999999" size="3">家帰って、またPCつけながらゴ～ロゴロ…<img alt="ゴロゴロ" src="https://emoji.ameba.jp/img/user/su/super-chalpen-snow/2594652.gif">゛</font></p><p><font color="#999999" size="3">で、ブログなう。。</font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3">さて、今日のおさらいはこんくらいにして…。。</font></p><p><font color="#999999" size="3">本題!!</font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3"><br></font></p><p><font size="3"><strong><font color="#999999">テーマ「君と僕。」を追加しました!!</font></strong><img alt="アップ" src="https://stat.ameba.jp/blog/ucs/img/char/char2/173.gif" width="16" height="16"></font></p><br><p><font color="#999999" size="3">ちゃんと画像のせれてるかな…</font></p><p><font size="3"><br></font></p><p><font size="3"><br></font></p><p><font color="#999999" size="3">そもそもなんでGファンタジーを毎月購入してるかって、</font></p><p><font color="#999999" size="3">この漫画「君と僕。」のために買ってるようなもの<img alt="本" src="https://stat.ameba.jp/blog/ucs/img/char/char2/240.gif" width="16" height="16"></font></p><p><font color="#999999"><font size="3">最近アニメ化もされたのがファンとして嬉しい</font><img alt="クローバー" src="https://stat.ameba.jp/blog/ucs/img/char/char2/054.gif" width="16" height="16"></font></p><p><font color="#999999"><br></font></p><br><p><font color="#999999" size="3">しかも付録が毎回すごいの!!</font></p><p><font size="3"><font color="#999999">今回はリバーシブル下敷きなのだ! </font><font color="#999999">(・∀・ )</font></font></p><p><font color="#999999"><br><font size="3"><br></font></font></p><p><font color="#999999" size="3"><font size="4">漫画の方</font>、</font></p><p><font color="#999999" size="3">今回もおもろかったw</font></p><p><font color="#999999" size="3">笑ったわぁw</font></p><p><font color="#999999"><br><font size="3"><br></font></font></p><p><font color="#999999" size="3">内容についてはネタバレになるから</font></p><p><font color="#999999" size="3">あんまし言わない…</font></p><p><font color="#999999"><br><font size="3"><br></font></font></p><p><font color="#999999" size="3">ただ一つだけ言わせて貰うなら…</font></p><p><font color="#999999"><br><font size="3"><br></font></font></p><p><font color="#999999" size="3">塚原家玄関でのちーさんの格好に</font></p><p><font color="#999999"><font size="3">ちょっとキュンときた///</font><img alt="キラキラ" src="https://stat.ameba.jp/blog/ucs/img/char/char2/123.gif" width="16" height="16"></font></p><p><font color="#999999"><br></font></p><p><font color="#999999" size="4">今回の付録</font></p><p><font color="#999999"><br></font></p><br><p><font color="#999999" size="2"><br></font></p><p><font color="#999999" size="3">ゴシックな感じの５人</font></p><p><font color="#999999" size="3">カッケぇなぁ…!!　オイっ!(〃∇〃)</font></p><p><font color="#999999" size="3">浅羽ツインズとか要っちとか…</font></p><p><font color="#999999" size="3">春ちゃんは女役じゃないのねw今回w</font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3"><strong>特ににちーさん!!</strong></font></p><p><strong><font color="#999999" size="3">頭濡らしちゃって!!<img alt="キラキラ" src="https://stat.ameba.jp/blog/ucs/img/char/char2/123.gif" width="16" height="16"></font></strong></p><p><strong><font color="#999999" size="3"><br></font></strong></p><p><font color="#999999" size="2">かわえぇぇわぁ…<img style="WIDTH: 13px; HEIGHT: 13px" alt="グッド！" src="https://stat.ameba.jp/blog/ucs/img/char/char2/187.gif" width="13" height="13"></font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="2">使うの勿体無いからもう一冊買ってこようか…オレ(^ ^;)</font></p><p><font color="#999999" size="2"><br></font></p><p><font color="#999999" size="2"><br></font></p><p><font color="#999999" size="3">あ、一応言うけど、</font></p><p><font color="#999999" size="3">君と僕。は腐的な感じでは決して見てません!!</font></p><p><font color="#999999" size="2">なんか、この作品はそういうの抜きにして</font></p><p><font color="#999999" size="2">楽しみたいっていうか…</font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3">んにしても、</font></p><p><font color="#999999" size="3">ホント好きすぐる…(´－｀ )</font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3">これからも応援してるぜぃ!!</font></p><p><font color="#999999" size="3">君と僕。!!</font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3">今日はこのへんで!!</font></p><p><font color="#999999" size="3"><br></font></p><p><img alt="汗" src="https://stat.ameba.jp/blog/ucs/img/char/char2/028.gif" width="16" height="16"><font color="#999999" size="3"><font color="#00bfff"><strong>それでは!!</strong></font><img alt="クローバー" src="https://stat.ameba.jp/blog/ucs/img/char/char2/054.gif" width="16" height="16"></font></p></font><font size="3"><br></font>
]]>
</description>
<link>https://ameblo.jp/lioney09/entry-11143292181.html</link>
<pubDate>Sun, 22 Jan 2012 21:52:45 +0900</pubDate>
</item>
<item>
<title>TOEIC受けてきたぜぃ(・∀・ )</title>
<description>
<![CDATA[ <p><font size="3"><strong><font color="#00bfff"><img alt="汗" src="https://stat.ameba.jp/blog/ucs/img/char/char2/028.gif" width="16" height="16">ブログ2日目～</font></strong><img style="WIDTH: 15px; HEIGHT: 14px" alt="メモ" src="https://stat.ameba.jp/blog/ucs/img/char/char2/131.gif" width="15" height="14"></font></p><p><font size="3"><br></font></p><p><font color="#999999" size="3">TOEIC受けてきましたよ!!っと(・∀・ )</font></p><p><font color="#999999" size="3">これ受けてないと単位貰えないんだって!!</font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3">え～、そんなケチケチしてないで単位の１，２個くらい、くださいよ～（≧ε≦)</font></p><p><font color="#999999" size="3">・・・な～んて、言えたらいいのにな～<img style="WIDTH: 16px; HEIGHT: 13px" alt="汗" src="https://stat.ameba.jp/blog/ucs/img/char/char2/028.gif" width="16" height="13"></font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3">勉強やりたくないよ～（TДT)</font></p><p><font color="#999999" size="3">もうすぐ期末考査だし。</font></p><p><font color="#999999" size="3">課題山積みだし<img style="WIDTH: 13px; HEIGHT: 15px" alt="本" src="https://stat.ameba.jp/blog/ucs/img/char/char2/240.gif" width="13" height="15">。。</font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3">まぁ、全国の受験生はそれどころじゃないんでしょうが・・・</font></p><p><font color="#999999" size="3">頑張れ～、受験生!!o(・ﾛ・〃)<img style="WIDTH: 16px; HEIGHT: 14px" alt="フラッグ" src="https://stat.ameba.jp/blog/ucs/img/char/char2/164.gif" width="16" height="14"></font></p><p><font color="#999999" size="3">オレも頑張るから～っ。。</font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3">う～ん、</font></p><p><font color="#999999" size="3">今日はもう特にないんですけど・・・<img style="WIDTH: 13px; HEIGHT: 12px" alt="あせる" src="https://stat.ameba.jp/blog/ucs/img/char/char2/029.gif" width="13" height="12"></font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3">あ、じゃぁ明日、先日発売されたGファンタジー買ってくる<img style="WIDTH: 12px; HEIGHT: 9px" alt="キラキラ" src="https://stat.ameba.jp/blog/ucs/img/char/char2/123.gif" width="12" height="9"></font></p><p><font color="#999999" size="3">一応、毎月買ってるんでね。ブログのネタにもできるし？</font></p><p><font color="#999999" size="3">うん（－＿－；）</font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3">それからね～、</font></p><p><font color="#999999" size="3">たま～にだけど小説載せてみたいなぁ・・・</font></p><p><font color="#999999" size="3">なんて思ってたり。</font></p><p><font color="#999999" size="3">これは腐男子の活動として。。</font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3">ってゆう活動告知？みたいな</font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3">…おぉ…、なんか…</font></p><p><font color="#999999" size="3"><strong>ブログらしい動き出しになってる!？Σ(－Д－*)</strong></font></p><p><font color="#999999" size="3">自分でびっくり。。</font></p><p><strong><font color="#999999" size="3"><br></font></strong></p><p><font color="#999999" size="3">…続くかな～、このブログ(*￣－￣) （←遠い目）</font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3">頑張っていきますんでよろしくお願いしまぁ～す<img alt="アップ" src="https://stat.ameba.jp/blog/ucs/img/char/char2/173.gif" width="16" height="16"></font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3">最後に、</font></p><p><font color="#999999" size="3">オレの大好きな二人ぐみの…</font></p><p><font color="#999999" size="3">田島と三橋でハイタッチ!!</font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3"><strong>みっはし～!!☆ (*｀▽´)人(゜◇゜*) た、たじまくん!!</strong></font></p><p><font color="#999999" size="3"><strong><br></strong></font></p><p><font color="#999999" size="3">タジミハ(^q^)</font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3">ただの自己満足です</font></p><p><font color="#999999" size="3">わかんない人もいるのに…<img alt="あせる" src="https://stat.ameba.jp/blog/ucs/img/char/char2/029.gif" width="16" height="16"></font></p><p><font color="#999999" size="3">すんません… </font></p><p><font color="#999999" size="3">何してんだ、オレは…orz</font></p><p><font color="#999999" size="3">一応おお振りのCP</font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3">今日はこんくらいで</font></p><p><font color="#999999" size="3"><br></font></p><p><font color="#999999" size="3"><font color="#00bfff"><strong><img alt="汗" src="https://stat.ameba.jp/blog/ucs/img/char/char2/028.gif" width="16" height="16">ではでは～</strong></font><img style="WIDTH: 13px; HEIGHT: 12px" alt="クローバー" src="https://stat.ameba.jp/blog/ucs/img/char/char2/054.gif" width="13" height="12"></font></p><!---->
]]>
</description>
<link>https://ameblo.jp/lioney09/entry-11142172800.html</link>
<pubDate>Sat, 21 Jan 2012 19:06:32 +0900</pubDate>
</item>
<item>
<title>ぶろぐコトハジメ</title>
<description>
<![CDATA[ <p><font color="#999999" size="3"><strong>3日坊主なオレがどれだけ持たせられるか…<img style="WIDTH: 24px; HEIGHT: 15px" alt="あせる" src="https://stat.ameba.jp/blog/ucs/img/char/char2/029.gif" width="24" height="15"></strong></font></p><p><font color="#999999" size="3"><strong>何かあり次第報告いれま～す<img alt="ドキドキ" src="https://stat.ameba.jp/blog/ucs/img/char/char2/031.gif" width="16" height="16"> (´▽ ｀ )</strong></font></p><p><font color="#999999" size="3"><strong>とりあえず明日はTOEICのテストなんで～<img style="WIDTH: 20px; HEIGHT: 18px" alt="ぶーぶー" src="https://stat.ameba.jp/blog/ucs/img/char/char2/007.gif" width="20" height="18"></strong></font></p><p><font color="#999999" size="3"><strong>面白い記事は明日以降書こうかと・・・</strong></font></p><br><p><font color="#999999" size="3"><strong>ハっ、もう今日やん!!(ﾟДﾟ)</strong></font></p><br><p><font color="#000000" size="4"><strong><font color="#999999" size="3">じゃ、おやすみなさい</font><img style="WIDTH: 16px; HEIGHT: 13px" alt="ぐぅぐぅ" src="https://stat.ameba.jp/blog/ucs/img/char/char2/030.gif" width="16" height="13"></strong></font></p>
]]>
</description>
<link>https://ameblo.jp/lioney09/entry-11141468297.html</link>
<pubDate>Sat, 21 Jan 2012 00:25:27 +0900</pubDate>
</item>
</channel>
</rss>
