東方算程譚

Oriental Code Talk ── επιστημηが与太をこく、弾幕とは無縁のシロモノ。

目次

Blog 利用状況

ニュース

著作とお薦めの品々は

著作とお薦めの品々は
東方熱帯林へ。

あわせて読みたい

わんくま

  1. 東京勉強会#2
    C++/CLI カクテル・レシピ
  2. 東京勉強会#3
    template vs. generics
  3. 大阪勉強会#6
    C++むかしばなし
  4. 東京勉強会#7
    C++むかしばなし
  5. 東京勉強会#8
    STL/CLRによるGeneric Programming
  6. TechEd 2007 @YOKOHAMA
    C++・C++/CLI・C# 適材適所
  7. 東京勉強会#14
    Making of BOF
  8. 東京勉強会#15
    状態遷移
  9. 名古屋勉強会#2
    WinUnit - お気楽お手軽UnitTest

CodeZine

  1. Cで実現する「ぷちオブジェクト指向」
  2. CUnitによるテスト駆動開発
  3. SQLiteで組み込みDB体験(2007年版)
  4. C++/CLIによるCライブラリの.NET化
  5. C# 1.1からC# 3.0まで~言語仕様の進化
  6. BoostでC++0xのライブラリ「TR1」を先取りしよう (1)
  7. BoostでC++0xのライブラリ「TR1」を先取りしよう (2)
  8. BoostでC++0xのライブラリ「TR1」を先取りしよう (3)
  9. BoostでC++0xのライブラリ「TR1」を先取りしよう (4)
  10. BoostでC++0xのライブラリ「TR1」を先取りしよう (5)
  11. C/C++に対応した、もうひとつのUnitTestFramework ─ WinUnit
  12. SQLiteで"おこづかいちょう"
  13. STL/CLRツアーガイド
  14. マージ・ソート : 巨大データのソート法
  15. ヒープソートのアルゴリズム
  16. C++0xの新機能「ラムダ式」を次期Visual Studioでいち早く試す
  17. .NETでマンデルブロ集合を描く
  18. .NETでマンデルブロ集合を描く(後日談)
  19. C++/CLI : とある文字列の相互変換(コンバージョン)
  20. インテルTBBによる選択ソートの高速化
  21. インテルTBB3.0 によるパイプライン処理
  22. Visual C++ 2010に追加されたSTLアルゴリズム
  23. Visual C++ 2010に追加されたSTLコンテナ「forward_list」
  24. shared_ptrによるObserverパターンの実装
  25. .NETでマンデルブロ集合を描く(番外編) ── OpenCLで超並列コンピューティング
  26. StateパターンでCSVを読む
  27. 状態遷移表からStateパターンを自動生成する
  28. 「ソートも、サーチも、あるんだよ」~標準C++ライブラリにみるアルゴリズムの面白さ
  29. インテルTBBの同期メカニズム
  30. なぜsetを使っちゃいけないの?
  31. WPFアプリケーションで腕試し ~C++でもWPFアプリを
  32. C++11 : スレッド・ライブラリひとめぐり
  33. Google製のC++ Unit Test Framework「Google Test」を使ってみる
  34. メールでデータベースを更新するココロミ
  35. Visitorパターンで遊んでみたよ
  36. Collection 2題:「WPFにバインドできる辞書」と「重複を許す検索set」
  37. Visual C++ 2012:stateless-lambdaとSQLiteのぷち拡張
  38. 「Visual C++ Compiler November 2012 CTP」で追加された6つの新機能

@IT

  1. Vista時代のVisual C++の流儀(前編)Vista到来。既存C/C++資産の.NET化を始めよう!
  2. Vista時代のVisual C++の流儀(中編)MFCから.NETへの実践的移行計画
  3. Vista時代のVisual C++の流儀(後編) STL/CLRによるDocument/Viewアーキテクチャ
  4. C++開発者のための単体テスト入門 第1回 C++開発者の皆さん。テスト、ちゃんとしていますか?
  5. C++開発者のための単体テスト入門 第2回 C++アプリケーションの効率的なテスト手法(CppUnit編)
  6. C++開発者のための単体テスト入門 第3回 C++アプリケーションの効率的なテスト手法(NUnit編)

AWARDS


Microsoft MVP
for Visual Developer - Visual C++


Wankuma MVP
for いぢわる C++


Nyantora MVP
for こくまろ中国茶

Xbox

Links

記事カテゴリ

書庫

日記カテゴリ

ドメインモデル貧血症!?

ネタ元 → オブジェクト指向で開発?

考えさせられますねー。

class 従業員 {
  private int baseSalary;
  public int 給与計算() {
    // 色々計算
  }
}

...ちょっとマテ。給与計算を自分でやる従業員なんかイネーヨ。
むしろ 経理.給与計算(おれ); // 'おれ'は従業員インスタンス
じゃねぇのか、と。

一方こうも考えられます。
”あんた給料いくら?”と尋ねて答えられん従業員はケシカラン。月給ドロボーかオメーは。
となると、

class 従業員 {
  private int baseSalary;
  public int 給与計算() {
    return 経理.給与計算(this);
  }
}

さらに考えると、給与計算は計算式が埋め込まれた月給電卓
必要なデータ(これはきっと従業員が持ってる)を食わせば、経理担当に
やってもらわんでもええ。計算式は経理が知ってるだろうから、経理から
月給電卓を借りてくりゃええね。

class 従業員 {
  private int baseSalary;
  public int 給与計算() {
    電卓 カシオミニ = 経理.電卓貸して(this.従業員タイプ); 
    return カシオミニ.答え一発(this.必要なデータ);
  }
}

経理から電卓借りるときに従業員タイプを渡せば、
経理はパート/ヒラ/管理職それぞれに応じた月給電卓を貸し出せます。

# 歳バレバレよねー → 答え一発! カシオミニ

投稿日時 : 2007年9月20日 11:37

コメントを追加

# re: ドメインモデル貧血症!? 2007/09/20 11:51 melt

個人的には、
class 従業員 {
 public int 給与計算(経理) {
  return 経理.給与計算(this);
 }
}
class 経理 {
 public int 給与計算(従業員) {
  // 従業員の給与を計算
 }
}
ってするのが一番しっくり来ますねぇ……。

# re: ドメインモデル貧血症!? 2007/09/20 12:15 まどか

とかくこの世はOOP~♪
クラスとクラスの絡みあいぃ~♪
調べてだめなら、聞いてミニ
聞いてもだめなら、依頼ミニ
答え一発!、えびすミニ♪ *1

*1 繰り返し

みんなが頼りにしてまっせぇ~。

#あぁ、歌ってしもた。。。>バレバレの自爆

# re: ドメインモデル貧血症!? 2007/09/20 12:46 επιστημη

あのぉ...通じませんから。わかりませんから。
カシオミニ初号機は1972年ですから。
(単三乾電池駆動6桁12,800円也)

# ところで'えびす'じゃないもん'えぴ'だもん!

# re: ドメインモデル貧血症!? 2007/09/20 13:19 とりこびと

>class 従業員 {
> private int baseSalary;
> public int 給与計算() {
> return 経理.給与計算(this);
> }
>}

従業員が給与計算してないんなら・・・給与計算っていうメソッド名が・・・ううむ・・・。

# re: ドメインモデル貧血症!? 2007/09/20 13:21 とっちゃん

初号機は1972...
幼稚園にもいってないなw

我が家にテレビなるものが導入されたころじゃないかしら?w

#歌は...後期(というか最後世代?)のじゃないっけ?w<歳がばれるからwww

# re: ドメインモデル貧血症!? 2007/09/20 13:22 とりこびと

>従業員が給与計算してないんなら・・・給与計算っていうメソッド名が・・・ううむ・・・。

あう・・・ネタ元でシャノンさんが書いておられた・・・。
http://blogs.wankuma.com/kazuki/archive/2007/09/19/97009.aspx#97038

# re: ドメインモデル貧血症!? 2007/09/20 13:38 επιστημη

> 従業員が給与計算してないんなら・・・給与計算っていうメソッド名が・・・

そぉ? 経理の助けを借りて(移譲によって)給与計算してんだからいぃんじゃねぇの?

それとも
public int サラリー {
get { return 経理.給与計算(this); }
}
なんてなプロパティなら呑めるかしら。

# re: ドメインモデル貧血症!? 2007/09/20 14:57 まどか

とかくこの世は計算さ。(デュエット)
数と数との絡み合い。(デュエット)
足してもだめなら引いてミニ。(女)
掛けてもだめなら割ってミニ。(男)
答え一発、カシオミニ。(デュエット)
答え一発、カシオミニ。(デュエット)

とにかく頭に浮かぶのはこの歌なんです。
これって、初代?後期?

というか、何歳でもいいから一度ソートせなあかんね。

# re: ドメインモデル貧血症!? 2007/09/20 17:01 ゆーち

meltさんと同意見だなぁ。

最近は、従業員単体と従業員集合を扱うクラスを別々に実装するってなやり方をしてます。
単数形のクラスと複数形のクラスがあること多いな。
英語で複数形も単数形も同じだったり、数で数えられないターゲットを持つときなんかがネーミングに苦労する。w

#1972年に厨房入りですw

# re: ドメインモデル貧血症!? 2007/09/20 17:08 επιστημη

難しっすね、ここらへんの落としどころは。
正解なんて存在せぇへんし。

# re: ドメインモデル貧血症!? 2007/09/20 23:14 とりにく

@ITに書かれたC++をNUnitでテストする方法の質問をここでしていいですか?

試してたらコールバック関数でハマりました。
ネイティブスレッドからテスト対象のdelegateにコールバックしようとするとAppDomainを超えて呼び出せないとかなんと例外が発生します。
NUnitとテスト対象が違うAppDomainにロードされていて、ネイティブスレッドはNUnit側(デフォルト)のAppDomainで動いちゃうみたいです。
この辺り、簡単にできる方法はないですかね?

# re: ドメインモデル貧血症!? 2007/09/21 0:32 επιστημη

...ここで? うーん...
アテクシのML: csharpll(あっと)freeml.com におねがいできれば。その方が解決早いし。
# ひとつ確認ですけど、被テストコード,テストコードともにC++/CLIなんすよね?
# 双方がC#だとどぉでしょか。
# callback-functionですか? delegateですか? どっちも?

# re: ドメインモデル貧血症!? 2007/09/21 1:40 rinda( 白帯 )

こんにちわ!
1983年生まれのrindaです。

自分が経理だったら他人の給料明細の中身まで調べたくないですし、
自分が従業員だったら給料計算なんかめんどくさくてやってられないです!

class 従業員 {
 public short 給料いくら?( 何月分の ){
給料明細 = 経理.給料明細くれ( this.従業員, 何月分の );
return 給料明細.給料;
}
}

みたいな感じだと使いやすいかなー・・・?

これだと、それぞれがそれなりにやってる感じがしませんか!?
だめですか!?

# re: ドメインモデル貧血症!? 2007/09/21 2:00 ゆーち

friend class 経理;
っての、・・・・・いいかも。

あぁ・・・(妄想中w

# re: ドメインモデル貧血症!? 2007/09/21 9:33 シャノン

> friend class 経理;

経理のプライベート変数書き換え放題キタコレww

# re: ドメインモデル貧血症!? 2007/09/21 9:33 シャノン

…あれ?
経理にプライベート変数書き換えられ放題、だっけ?

# re: ドメインモデル貧血症!? 2007/09/21 9:51 επιστημη

残念ながら後者です。

# Hi there, I enjoy reading through your article. I like to write a little comment to support you. 2021/09/01 1:23 Hi there, I enjoy reading through your article. I

Hi there, I enjoy reading through your article.
I like to write a little comment to support you.

# Hi there, I enjoy reading through your article. I like to write a little comment to support you. 2021/09/01 1:24 Hi there, I enjoy reading through your article. I

Hi there, I enjoy reading through your article.
I like to write a little comment to support you.

# Hi there, I enjoy reading through your article. I like to write a little comment to support you. 2021/09/01 1:25 Hi there, I enjoy reading through your article. I

Hi there, I enjoy reading through your article.
I like to write a little comment to support you.

# Hi there, I enjoy reading through your article. I like to write a little comment to support you. 2021/09/01 1:26 Hi there, I enjoy reading through your article. I

Hi there, I enjoy reading through your article.
I like to write a little comment to support you.

# There is definately a lot to know about this topic. I like all the points you made. 2021/09/04 21:23 There is definately a lot to know about this topic

There is definately a lot to know about this topic. I like all the points you made.

# There is definately a lot to know about this topic. I like all the points you made. 2021/09/04 21:24 There is definately a lot to know about this topic

There is definately a lot to know about this topic. I like all the points you made.

# There is definately a lot to know about this topic. I like all the points you made. 2021/09/04 21:25 There is definately a lot to know about this topic

There is definately a lot to know about this topic. I like all the points you made.

# There is definately a lot to know about this topic. I like all the points you made. 2021/09/04 21:26 There is definately a lot to know about this topic

There is definately a lot to know about this topic. I like all the points you made.

# Hi! I know this is kinda off topic however , I'd figured I'd ask. Would you be interested in trading links or maybe guest authoring a blog post or vice-versa? My blog covers a lot of the same subjects as yours and I believe we could greatly benefit fro 2021/09/06 9:59 Hi! I know this is kinda off topic however , I'd f

Hi! I know this is kinda off topic however , I'd figured I'd ask.
Would you be interested in trading links or maybe guest authoring a blog post or vice-versa?

My blog covers a lot of the same subjects as yours and I
believe we could greatly benefit from each other. If you might be
interested feel free to send me an e-mail. I look forward to
hearing from you! Excellent blog by the way!

# Hi! I know this is kinda off topic however , I'd figured I'd ask. Would you be interested in trading links or maybe guest authoring a blog post or vice-versa? My blog covers a lot of the same subjects as yours and I believe we could greatly benefit fro 2021/09/06 10:00 Hi! I know this is kinda off topic however , I'd f

Hi! I know this is kinda off topic however , I'd figured I'd ask.
Would you be interested in trading links or maybe guest authoring a blog post or vice-versa?

My blog covers a lot of the same subjects as yours and I
believe we could greatly benefit from each other. If you might be
interested feel free to send me an e-mail. I look forward to
hearing from you! Excellent blog by the way!

# Hi! I know this is kinda off topic however , I'd figured I'd ask. Would you be interested in trading links or maybe guest authoring a blog post or vice-versa? My blog covers a lot of the same subjects as yours and I believe we could greatly benefit fro 2021/09/06 10:01 Hi! I know this is kinda off topic however , I'd f

Hi! I know this is kinda off topic however , I'd figured I'd ask.
Would you be interested in trading links or maybe guest authoring a blog post or vice-versa?

My blog covers a lot of the same subjects as yours and I
believe we could greatly benefit from each other. If you might be
interested feel free to send me an e-mail. I look forward to
hearing from you! Excellent blog by the way!

# Hi! I know this is kinda off topic however , I'd figured I'd ask. Would you be interested in trading links or maybe guest authoring a blog post or vice-versa? My blog covers a lot of the same subjects as yours and I believe we could greatly benefit fro 2021/09/06 10:02 Hi! I know this is kinda off topic however , I'd f

Hi! I know this is kinda off topic however , I'd figured I'd ask.
Would you be interested in trading links or maybe guest authoring a blog post or vice-versa?

My blog covers a lot of the same subjects as yours and I
believe we could greatly benefit from each other. If you might be
interested feel free to send me an e-mail. I look forward to
hearing from you! Excellent blog by the way!

# I visit daily a few websites and blogs to read posts, however this webpage gives feature based articles. quest bars http://j.mp/3C2tkMR quest bars 2021/09/10 13:41 I visit daily a few websites and blogs to read pos

I visit daily a few websites and blogs to read posts, however this
webpage gives feature based articles. quest bars http://j.mp/3C2tkMR quest bars

# I visit daily a few websites and blogs to read posts, however this webpage gives feature based articles. quest bars http://j.mp/3C2tkMR quest bars 2021/09/10 13:42 I visit daily a few websites and blogs to read pos

I visit daily a few websites and blogs to read posts, however this
webpage gives feature based articles. quest bars http://j.mp/3C2tkMR quest bars

# I visit daily a few websites and blogs to read posts, however this webpage gives feature based articles. quest bars http://j.mp/3C2tkMR quest bars 2021/09/10 13:43 I visit daily a few websites and blogs to read pos

I visit daily a few websites and blogs to read posts, however this
webpage gives feature based articles. quest bars http://j.mp/3C2tkMR quest bars

# I visit daily a few websites and blogs to read posts, however this webpage gives feature based articles. quest bars http://j.mp/3C2tkMR quest bars 2021/09/10 13:44 I visit daily a few websites and blogs to read pos

I visit daily a few websites and blogs to read posts, however this
webpage gives feature based articles. quest bars http://j.mp/3C2tkMR quest bars

# If you are going for finest contents like myself, simply go to see this website everyday since it provides feature contents, thanks scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery 2021/09/13 22:39 If you are going for finest contents like myself,

If you are going for finest contents like myself, simply go to see
this website everyday since it provides feature contents,
thanks scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# If you are going for finest contents like myself, simply go to see this website everyday since it provides feature contents, thanks scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery 2021/09/13 22:41 If you are going for finest contents like myself,

If you are going for finest contents like myself, simply go to see
this website everyday since it provides feature contents,
thanks scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# If you are going for finest contents like myself, simply go to see this website everyday since it provides feature contents, thanks scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery 2021/09/13 22:42 If you are going for finest contents like myself,

If you are going for finest contents like myself, simply go to see
this website everyday since it provides feature contents,
thanks scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# If you are going for finest contents like myself, simply go to see this website everyday since it provides feature contents, thanks scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery 2021/09/13 22:43 If you are going for finest contents like myself,

If you are going for finest contents like myself, simply go to see
this website everyday since it provides feature contents,
thanks scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# Good article! We will be linking to this particularly great content on our website. Keep up the good writing. quest bars https://www.iherb.com/search?kw=quest%20bars quest bars 2021/09/13 23:47 Good article! We will be linking to this particula

Good article! We will be linking to this particularly great content
on our website. Keep up the good writing. quest
bars https://www.iherb.com/search?kw=quest%20bars quest bars

# Good article! We will be linking to this particularly great content on our website. Keep up the good writing. quest bars https://www.iherb.com/search?kw=quest%20bars quest bars 2021/09/13 23:48 Good article! We will be linking to this particula

Good article! We will be linking to this particularly great content
on our website. Keep up the good writing. quest
bars https://www.iherb.com/search?kw=quest%20bars quest bars

# Good article! We will be linking to this particularly great content on our website. Keep up the good writing. quest bars https://www.iherb.com/search?kw=quest%20bars quest bars 2021/09/13 23:49 Good article! We will be linking to this particula

Good article! We will be linking to this particularly great content
on our website. Keep up the good writing. quest
bars https://www.iherb.com/search?kw=quest%20bars quest bars

# Good article! We will be linking to this particularly great content on our website. Keep up the good writing. quest bars https://www.iherb.com/search?kw=quest%20bars quest bars 2021/09/13 23:50 Good article! We will be linking to this particula

Good article! We will be linking to this particularly great content
on our website. Keep up the good writing. quest
bars https://www.iherb.com/search?kw=quest%20bars quest bars

# When I initially commented I clicked the "Notify me when new comments are added" checkbox and now each time a comment is added I get three e-mails with the same comment. Is there any way you can remove me from that service? Cheers! part time j 2021/10/22 19:51 When I initially commented I clicked the "Not

When I initially commented I clicked the "Notify me when new comments are added"
checkbox and now each time a comment is added I get three e-mails with
the same comment. Is there any way you can remove me
from that service? Cheers! part time jobs hired in 30 minutes https://parttimejobshiredin30minutes.wildapricot.org/

# Spot on with this write-up, I really feel this amazing site needs far more attention. I'll probably be returning to read through more, thanks for the info! 2021/10/26 19:48 Spot on with this write-up, I really feel this ama

Spot on with this write-up, I really feel this amazing site needs far more attention. I'll
probably be returning to read through more, thanks for the info!

# Spot on with this write-up, I really feel this amazing site needs far more attention. I'll probably be returning to read through more, thanks for the info! 2021/10/26 19:49 Spot on with this write-up, I really feel this ama

Spot on with this write-up, I really feel this amazing site needs far more attention. I'll
probably be returning to read through more, thanks for the info!

# Spot on with this write-up, I really feel this amazing site needs far more attention. I'll probably be returning to read through more, thanks for the info! 2021/10/26 19:50 Spot on with this write-up, I really feel this ama

Spot on with this write-up, I really feel this amazing site needs far more attention. I'll
probably be returning to read through more, thanks for the info!

# Spot on with this write-up, I really feel this amazing site needs far more attention. I'll probably be returning to read through more, thanks for the info! 2021/10/26 19:51 Spot on with this write-up, I really feel this ama

Spot on with this write-up, I really feel this amazing site needs far more attention. I'll
probably be returning to read through more, thanks for the info!

# Appreciation to my father who informed me on the topic of this website, this weblog is truly remarkable. 2021/11/12 8:48 Appreciation to my father who informed me on the t

Appreciation to my father who informed me on the topic of this website, this weblog is truly remarkable.

# order doxycycline 100mg without prescription https://doxycyline1st.com/
doxycycline 100mg 2022/02/26 0:38 Jusidkid

order doxycycline 100mg without prescription https://doxycyline1st.com/
doxycycline 100mg

# I have read so many articles about the blogger lovers however this paragraph is genuinely a good article, keep it up. 2022/03/23 5:14 I have read so many articles about the blogger lov

I have read so many articles about the blogger lovers however this paragraph is genuinely
a good article, keep it up.

# I have read so many articles about the blogger lovers however this paragraph is genuinely a good article, keep it up. 2022/03/23 5:15 I have read so many articles about the blogger lov

I have read so many articles about the blogger lovers however this paragraph is genuinely
a good article, keep it up.

# I have read so many articles about the blogger lovers however this paragraph is genuinely a good article, keep it up. 2022/03/23 5:16 I have read so many articles about the blogger lov

I have read so many articles about the blogger lovers however this paragraph is genuinely
a good article, keep it up.

# I have read so many articles about the blogger lovers however this paragraph is genuinely a good article, keep it up. 2022/03/23 5:17 I have read so many articles about the blogger lov

I have read so many articles about the blogger lovers however this paragraph is genuinely
a good article, keep it up.

# Wonderful article! That is the type of info that should be shared across the web. Disgrace on Google for not positioning this submit higher! Come on over and talk over with my web site . Thanks =) 2022/03/23 17:25 Wonderful article! That is the type of info that s

Wonderful article! That is the type of info that should
be shared across the web. Disgrace on Google for not positioning this submit higher!

Come on over and talk over with my web site . Thanks
=)

# Wonderful article! That is the type of info that should be shared across the web. Disgrace on Google for not positioning this submit higher! Come on over and talk over with my web site . Thanks =) 2022/03/23 17:26 Wonderful article! That is the type of info that s

Wonderful article! That is the type of info that should
be shared across the web. Disgrace on Google for not positioning this submit higher!

Come on over and talk over with my web site . Thanks
=)

# Wonderful article! That is the type of info that should be shared across the web. Disgrace on Google for not positioning this submit higher! Come on over and talk over with my web site . Thanks =) 2022/03/23 17:27 Wonderful article! That is the type of info that s

Wonderful article! That is the type of info that should
be shared across the web. Disgrace on Google for not positioning this submit higher!

Come on over and talk over with my web site . Thanks
=)

# Wonderful article! That is the type of info that should be shared across the web. Disgrace on Google for not positioning this submit higher! Come on over and talk over with my web site . Thanks =) 2022/03/23 17:28 Wonderful article! That is the type of info that s

Wonderful article! That is the type of info that should
be shared across the web. Disgrace on Google for not positioning this submit higher!

Come on over and talk over with my web site . Thanks
=)

# clomid purchase http://clomidfast.site/ 2022/04/12 12:57 Clomids

clomid purchase http://clomidfast.site/

# how to buy prednisone online http://prednisoneen.store/ 2022/04/16 22:51 Prednisone

how to buy prednisone online http://prednisoneen.store/

# Terrific work! That is the type of information that are supposed to be shared across the net. Shame on the seek engines for not positioning this submit upper! Come on over and talk over with my site . Thanks =) 2022/06/03 20:00 Terrific work! That is the type of information tha

Terrific work! That is the type of information that are supposed to be
shared across the net. Shame on the seek engines for not positioning this submit upper!
Come on over and talk over with my site . Thanks =)

# I am curious to find out what blog system you happen to be utilizing? I'm having some small security problems with my latest blog and I'd like to find something more secure. Do you have any solutions? 2022/06/08 7:14 I am curious to find out what blog system you happ

I am curious to find out what blog system you happen to be utilizing?
I'm having some small security problems with my latest blog and I'd like
to find something more secure. Do you have any solutions?

# I am curious to find out what blog system you happen to be utilizing? I'm having some small security problems with my latest blog and I'd like to find something more secure. Do you have any solutions? 2022/06/08 7:15 I am curious to find out what blog system you happ

I am curious to find out what blog system you happen to be utilizing?
I'm having some small security problems with my latest blog and I'd like
to find something more secure. Do you have any solutions?

# If you want to take much from this post then you have to apply such strategies to your won weblog. 2022/06/08 12:45 If you want to take much from this post then you h

If you want to take much from this post then you have to apply such
strategies to your won weblog.

# My partner and I stumbled over here different page and thought I might check things out. I like what I see so i am just following you. Look forward to looking at your web page again. 2022/06/11 0:00 My partner and I stumbled over here different pag

My partner and I stumbled over here different page and thought I might check things out.

I like what I see so i am just following you. Look forward to looking at your web
page again.

# It's a shame you don't have a donate button! I'd without a doubt donate to this fantastic blog! I suppose for now i'll settle for book-marking and adding your RSS feed to my Google account. I look forward to fresh updates and will talk about this site 2022/06/12 1:09 It's a shame you don't have a donate button! I'd w

It's a shame you don't have a donate button! I'd without a doubt
donate to this fantastic blog! I suppose for now i'll settle for book-marking and adding your RSS feed to my Google account.
I look forward to fresh updates and will talk about this site with my Facebook group.
Chat soon!

# What a information of un-ambiguity and preserveness of precious experience on the topic of unpredicted feelings. 2022/07/12 7:32 What a information of un-ambiguity and preservenes

What a information of un-ambiguity and preserveness of precious experience on the topic of unpredicted
feelings.

# canada pharmaceuticals https://allpharm.store/ 2022/07/21 22:04 AllPharm

canada pharmaceuticals https://allpharm.store/

# I was suggested this blog by my cousin. I am not sure whether this post is written by him as no one else know such detailed about my problem. You are wonderful! Thanks! 2022/07/23 8:28 I was suggested this blog by my cousin. I am not

I was suggested this blog by my cousin. I am
not sure whether this post is written by him as no one
else know such detailed about my problem.
You are wonderful! Thanks!

# There's definately a lot to know about this issue. I love all the points you have made. 2022/08/14 14:09 There's definately a lot to know about this issue.

There's definately a lot to know about this issue. I love all
the points you have made.

# When someone writes an piece of writing he/she retains the image of a user in his/her brain that how a user can know it. Thus that's why this paragraph is outstdanding. Thanks! 2022/08/15 9:47 When someone writes an piece of writing he/she ret

When someone writes an piece of writing he/she retains the image
of a user in his/her brain that how a user can know it.
Thus that's why this paragraph is outstdanding. Thanks!

# I do not even know how I finished up right here, however I thought this submit was good. I don't realize who you're however definitely you are going to a famous blogger if you happen to aren't already. Cheers! 2022/08/18 15:33 I do not even know how I finished up right here, h

I do not even know how I finished up right here, however I thought this submit was
good. I don't realize who you're however definitely you are going to a famous blogger if you
happen to aren't already. Cheers!

# I do not even know how I finished up right here, however I thought this submit was good. I don't realize who you're however definitely you are going to a famous blogger if you happen to aren't already. Cheers! 2022/08/18 15:34 I do not even know how I finished up right here, h

I do not even know how I finished up right here, however I thought this submit was
good. I don't realize who you're however definitely you are going to a famous blogger if you
happen to aren't already. Cheers!

# I think the admin of this site is actually working hard in favor of his web page, as here every information is quality based stuff. 2022/08/19 8:45 I think the admin of this site is actually working

I think the admin of this site is actually working hard in favor of his web page,
as here every information is quality based stuff.

# cheap erectile dysfunction pills https://ed-pills.xyz/
ed treatment review 2022/09/16 7:34 EdPills

cheap erectile dysfunction pills https://ed-pills.xyz/
ed treatment review

# doxy 200 https://buydoxycycline.icu/ 2022/10/08 11:55 Doxycycline

doxy 200 https://buydoxycycline.icu/

#  https://clomidforsale.site/ 2022/11/13 14:24 ForSale

https://clomidforsale.site/

# buy doxycycline online without prescription - https://doxycyclinesale.pro/# 2023/04/21 17:37 Doxycycline

buy doxycycline online without prescription - https://doxycyclinesale.pro/#

# prednisone 100 mg - https://prednisonesale.pro/# 2023/04/22 4:54 Prednisone

prednisone 100 mg - https://prednisonesale.pro/#

# buy cytotec in usa - https://cytotecsale.pro/# 2023/04/29 5:07 Cytotec

buy cytotec in usa - https://cytotecsale.pro/#

# mens ed pills: https://edpills.pro/# 2023/05/15 15:39 EdPillsPro

mens ed pills: https://edpills.pro/#

# prednisone pak https://prednisonepills.pro/# - india buy prednisone online 2023/06/04 21:33 Prednisone

prednisone pak https://prednisonepills.pro/# - india buy prednisone online

# paxlovid generic https://paxlovid.pro/# - paxlovid for sale 2023/07/02 17:33 Paxlovid

paxlovid generic https://paxlovid.pro/# - paxlovid for sale

# paxlovid covid https://paxlovid.store/
paxlovid cost without insurance 2023/07/13 13:25 Paxlovid

paxlovid covid https://paxlovid.store/
paxlovid cost without insurance

# ï»¿paxlovid https://paxlovid.life/# paxlovid covid 2023/07/25 20:45 Paxlovid

paxlovid https://paxlovid.life/# paxlovid covid

# cytotec online https://cytotec.ink/# - cytotec online 2023/07/26 14:43 PillsFree

cytotec online https://cytotec.ink/# - cytotec online

# buy paxlovid online https://paxlovid.bid/ buy paxlovid online 2023/10/25 23:20 Paxlovid

buy paxlovid online https://paxlovid.bid/ buy paxlovid online

# buy prednisone from india https://prednisone.bid/ prednisone pills cost 2023/12/27 10:36 Prednisone

buy prednisone from india https://prednisone.bid/ prednisone pills cost

タイトル
名前
URL
コメント