東方算程譚

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

記事カテゴリ

書庫

日記カテゴリ

新人クンにC++を教えてやってくれ。二日で。

いや無理。それは無理。
二日で教えられるもんなら四半世紀やってきた僕の立つ瀬がねっす。

「そこをなんとか、サワリのとこだけでも」ってことやったんで
ちょーキホンなクラスの書き方とか教えてやることに。

新人クン、Cはそこそこ書けるみたいなんで
C++文法/構文をざっくり流して演習問題:

「intを要素とする可変長配列Vectorおよび
 末尾に追加するadd(int val)を実装してみそ?」

彼の書いたコード:

class Vector {
  int* data; // 配列本体
  int index; // 次にaddする位置(=要素数)
  int capacity; // dataの容量
public:
  Vector(int cap);
 ~Vector();
  bool add(int val);
};

Vector::Vector(int cap) {
  capacity = cap;
  data = new int[capacity];
  index = 0;
}

Vector::~Vector() {
  delete[] data;
}

bool Vector::add(int val) {
  if ( index >= capacity ) return false; // 容量オーバー
  index++;
  data[index] = val;
  return true;
}

...おぅ、けっこー書けてんじゃん...おんや?
「おーい、バグってんよ?」
「え!? どこっスか?」
「ほらココ。Vector::addでdata[0]が空席になってる」
「ホントだー。すぐ直しますっ」

3分後

Vector::Vector(int cap) {
  capacity = cap;
  data = new int[capacity];
  index = -1;
}

ばっかやろーー!!!

投稿日時 : 2012年8月28日 17:06

コメントを追加

# re: 新人クンにC++を教えてやってくれ。二日で。 2012/08/28 21:40 sinaku

相当笑わせて頂きました。
そしてその後他人事じゃなくなってる自分の現在プロジェクトを思って、冗談抜きで発狂しそうです。

はぁ~orz

# re: 新人クンにC++を教えてやってくれ。二日で。 2012/08/28 21:53 通りすがり

新人よりお前ができるから給料高いんだろ?
偉そうに人にバカって言うなよカス
目障りだわ

# re: 新人クンにC++を教えてやってくれ。二日で。 2012/08/28 22:25 PG_kura

5行目 private -> public かな

# re: 新人クンにC++を教えてやってくれ。二日で。 2012/08/28 22:39 επιστημη

> 他人事じゃなくなってる
いや実際他人事じゃないのよねー...

> 目障りだわ
目障り上等です。

> 5行目 private -> public かな
あー...直しときますぅ

# re: 新人クンにC++を教えてやってくれ。二日で。 2012/08/28 23:22 Soda

10日ほど前に、某所でまったく同じものを話題にしてたw
気持ちはわかるんだけどね、動くしさ。
本質的なデバッグになってないのもあるけど、
コメント文に偽り有りになっちゃうんですよねぇ。

# re: 新人クンにC++を教えてやってくれ。二日で。 2012/08/29 5:25 επιστημη

某所か。某所ね。うんうん。

「容量オーバーの判定、ズレてるよね」
「...ですね」
「要素数返すとしたら、ズレるよね」
「...」
「じゃ、書き直そうか」
「...ハイ」

# re: 新人クンにC++を教えてやってくれ。二日で。 2012/08/29 12:33 0^0

これって可変長なんですかね?
うーん・・・。

# re: 新人クンにC++を教えてやってくれ。二日で。 2012/08/29 15:23 επιστημη

> これって可変長なんですかね?

そうなんだけどさ、容量オーバーが判定できてるから、
そこで伸長すりゃえぇので「第一版」としては及第点かなーと。

# re: 新人クンにC++を教えてやってくれ。二日で。 2012/08/31 9:59 774RR

deep copy するコピーコンストラクタと代入演算子が書ければ
一日目の仕事としては満点でしょう。

# re: 新人クンにC++を教えてやってくれ。二日で。 2012/08/31 23:30 plt

あと、デフォルトコンストラクタか、capの既定値のどっちかが要りますねぇ。
他から使われる側のコードを細かい間違いなしに書くのって、なかなか難しいです。

# zhJePFeqASEarkdQ 2014/08/28 15:50 http://crorkz.com/

ivWnYS Hi, Neat post. There's a problem with your website in internet explorer, would test this??? IE still is the market leader and a big portion of people will miss your great writing due to this problem.

# JueEJXhPmMaqCoiy 2014/09/17 23:53 http://youtu.be/g68g0W6gbIc

This actually answered my downside, thanks!

# YOiKUDTbReeiSrwnG 2014/09/18 17:03 http://mijnonlinedrukkerij.com/story.php?id=35853

pmRBGK Thanks so much for the blog.Really looking forward to read more. Much obliged.

# Great info. Lucky me I came across your website by chance (stumbleupon). I have bookmarked it for later! 2018/09/28 2:51 Great info. Lucky me I came across your website by

Great info. Lucky me I came across your website by
chance (stumbleupon). I have bookmarked it for later!

# What's up mates, how is all, and what you want to say on the topic of this piece of writing, in my view its in fact amazing for me. 2018/10/02 17:32 What's up mates, how is all, and what you want to

What's up mates, how is all, and what you want
to say on the topic of this piece of writing,
in my view its in fact amazing for me.

# Hello there! This is my 1st comment here so I just wanted to give a quick shout out and say I really enjoy reading through your posts. Can you suggest any other blogs/websites/forums that go over the same topics? Thanks a ton! 2018/10/08 10:10 Hello there! This is my 1st comment here so I just

Hello there! This is my 1st comment here so I just wanted to give a quick shout out and say I really enjoy reading
through your posts. Can you suggest any other blogs/websites/forums that
go over the same topics? Thanks a ton!

# What i don't understood is in truth how you are not really a lot more smartly-liked than you may be now. You are so intelligent. You understand thus considerably in relation to this subject, produced me in my opinion imagine it from so many various angle 2018/11/13 2:14 What i don't understood is in truth how you are no

What i don't understood is in truth how you are not really a lot more smartly-liked than you may be now.
You are so intelligent. You understand thus considerably in relation to this subject, produced me
in my opinion imagine it from so many various angles.
Its like men and women don't seem to be fascinated except it's one thing to accomplish with Woman gaga!

Your personal stuffs outstanding. All the time care
for it up!

# DxHBKgYRirW 2019/04/23 1:17 https://www.suba.me/

oK1vXG This very blog is without a doubt awesome and besides diverting. I have picked helluva helpful advices out of it. I ad love to return every once in a while. Cheers!

# llsHYidWRyIH 2019/04/27 20:15 https://discover.societymusictheory.org/story.php?

Wow, superb weblog format! How lengthy have you been blogging for? you made running a blog glance easy. The overall glance of your website is fantastic, let alone the content material!

# IPuAcsVNLDrqZA 2019/04/28 2:17 http://bit.do/ePqKP

you have brought up a very great details , regards for the post.

# VHCZDXkFihoBHj 2019/04/29 19:26 http://www.dumpstermarket.com

I really value your piece of work, Great post.

# VhvijmImzSdmrTiftST 2019/04/30 16:59 https://www.dumpstermarket.com

Read, of course, far from my topic. But still, we can work together. How do you feel about trust management?!

# fEVzawuWEChO 2019/04/30 19:59 https://cyber-hub.net/

You are my inhalation, I possess few web logs and sometimes run out from post . Truth springs from argument amongst friends. by David Hume.

# mqGPmXPVVW 2019/05/01 6:57 https://www.intensedebate.com/people/liatiramy

My brother suggested I might like this website. He was entirely right. This post actually made my day. You cann at imagine just how much time I had spent for this information! Thanks!

# kfbdHVKNJNTbsFuS 2019/05/02 3:03 http://bgtopsport.com/user/arerapexign314/

Thanks again for the article. Really Great.

# fsCQvxagLYwmodtxc 2019/05/02 16:57 http://www.jobref.de/node/2041108

Vi ringrazio, considero che quello che ho letto sia ottimo

# fDbPoDRqPoXgspJcOJ 2019/05/02 20:47 https://www.ljwelding.com/hubfs/tank-fit-up-bed-sy

Perhaps you can write next articles referring to this article.

# DMVizhxcVSeE 2019/05/03 0:45 https://www.ljwelding.com/hubfs/welding-tripod-500

Thanks a lot for sharing this with all of us you really recognise what you are speaking approximately! Bookmarked. Please also visit my website =). We may have a hyperlink change agreement among us!

# SgzztDBoudtDAHnNF 2019/05/03 6:36 http://behindthebin.org/__media__/js/netsoltradema

Major thankies for the blog article.Thanks Again.

# xDXOKTvHdAEZpgdbHp 2019/05/03 11:18 http://mazraehkatool.ir/user/Beausyacquise972/

Im grateful for the blog post.Really looking forward to read more. Keep writing.

# ZhFkhvqgkGjSy 2019/05/03 12:47 https://mveit.com/escorts/united-states/san-diego-

This is one awesome post.Really looking forward to read more. Want more.

# PUYOlJiEjOsOZNebA 2019/05/03 15:33 https://www.youtube.com/watch?v=xX4yuCZ0gg4

You made some clear points there. I did a search on the subject and found most individuals will consent with your website.

# GEccAoPgvErvIrF 2019/05/03 18:38 https://mveit.com/escorts/australia/sydney

This is one awesome article post.Really looking forward to read more. Much obliged.

# ruYaJJIhFgVZgnNcUq 2019/05/03 20:19 https://talktopaul.com/pasadena-real-estate

Im thankful for the blog.Thanks Again. Fantastic.

# LDjtTVOuKIPWpQg 2019/05/03 22:24 https://mveit.com/escorts/united-states/los-angele

There is certainly a lot to find out about this subject. I like all of the points you have made.

# JVrRbEfuKRZhvWpgZ 2019/05/03 22:44 http://deltainternationalvanlines.com/__media__/js

I truly appreciate this blog post.Thanks Again. Much obliged.

# jHAgKwfOyxdXpw 2019/05/04 3:10 https://www.bigfoottrail.org/members/greenbeef28/a

I really liked your post.Much thanks again. Want more.

# cGLqYiWkfE 2019/05/04 3:30 https://timesofindia.indiatimes.com/city/gurgaon/f

Well with your permission allow me to take hold of your RSS feed to keep up to

# RlHcsnsHBnwiGmIgtW 2019/05/07 17:31 https://nervewood31.kinja.com/

Thanks-a-mundo for the article.Really looking forward to read more. Fantastic.

# xAklBDIHQGpENMMAUd 2019/05/08 3:01 https://www.mtpolice88.com/

pretty handy stuff, overall I imagine this is worth a bookmark, thanks

# vjVGnXdSmqVs 2019/05/08 20:07 https://ysmarketing.co.uk/

I will right away grasp your rss as I can not find your email subscription hyperlink or e-newsletter service. Do you have any? Please allow me recognize so that I may subscribe. Thanks.

# LgDcGNVstWCNlIdVWJQ 2019/05/08 23:25 https://www.youtube.com/watch?v=xX4yuCZ0gg4

year and am anxious about switching to another platform. I have

# xLDjMJzTwhHjShH 2019/05/09 9:18 https://amasnigeria.com/tag/esutportal/

Well I sincerely enjoyed reading it. This tip procured by you is very helpful for accurate planning.

# rhvKdyhDPSaerxP 2019/05/09 13:38 http://mcdowell3255ul.blogs4funny.com/26-large-fat

Im having a tiny issue. I cant get my reader to pick-up your rss feed, Im using google reader by the way.

# RGIBqXBbwzx 2019/05/10 2:29 https://www.mtcheat.com/

Only wanna comment on few general things, The website design is perfect, the articles is very fantastic.

# yizvyyJaBGf 2019/05/10 6:55 https://bgx77.com/

Thanks-a-mundo for the blog.Really looking forward to read more. Much obliged.

# MQYuBsEiMYHKVF 2019/05/10 8:20 https://rehrealestate.com/cuanto-valor-tiene-mi-ca

Wow that was odd. I just wrote an really long comment but after I clicked submit my comment didn at show up. Grrrr well I am not writing all that over again. Anyhow, just wanted to say superb blog!

# cOxStrJItbLS 2019/05/10 9:11 https://www.dajaba88.com/

So happy to get located this submit.. Liking the post.. thanks alot So happy to possess identified this post.. So pleased to get found this submit..

# TIQavyqxurSOoFlHT 2019/05/10 17:09 https://my.getjealous.com/switchtoy2

You have brought up a very superb details , thankyou for the post.

# fCLmMvbxPTTDB 2019/05/10 19:01 https://cansoft.com

Woah! I am really enjoying the template/theme of this

# ukvyqdHVLyusjQ 2019/05/10 23:40 https://www.youtube.com/watch?v=Fz3E5xkUlW8

This rather good phrase is necessary just by the way

# InfGDpmUlyX 2019/05/11 8:42 http://dandy-shoes.ru/bitrix/redirect.php?event1=&

It as going to be finish of mine day, except before end I am reading this great post to increase my experience.

# wUuJrREWgragvtrJJmv 2019/05/12 21:53 https://www.sftoto.com/

You should take part in a contest for top-of-the-line blogs on the web. I all advocate this web site!

# dMHPHiptwZXcGxoe 2019/05/13 1:41 https://reelgame.net/

Somewhere in the Internet I have already read almost the same selection of information, but anyway thanks!!

# dRudDglVZsDxGlBNE 2019/05/13 19:15 https://www.ttosite.com/

that you just shared this helpful information with us.

# IaDGnSsiMpUOoNYLRzF 2019/05/13 20:47 https://www.smore.com/uce3p-volume-pills-review

Most of these new kitchen instruments can be stop due to the hard plastic covered train as motor. Each of them have their particular appropriate parts.

# goLfATCOwWeBIjiKquw 2019/05/14 5:21 http://www.whynotad.com/ad/services/libros-para-em

lol. So let me reword this.... Thanks for the meal!!

# TzwsVzfcAYySUVEp 2019/05/14 17:22 https://creamcotton49.kinja.com/

I think this is a real great article. Keep writing.

# IcoKtBBExfzsEGZ 2019/05/14 18:37 https://www.dajaba88.com/

Thanks-a-mundo for the article post.Really looking forward to read more.

# OyYTTjuIIjYox 2019/05/14 20:28 https://bgx77.com/

these camera look like it was used in star trek movies.

# eWKVndVzWffXDfgNmpX 2019/05/14 23:17 https://totocenter77.com/

You are my intake, I own few web logs and very sporadically run out from brand . Analyzing humor is like dissecting a frog. Few people are interested and the frog dies of it. by E. B. White.

# sREozhOOycllgTt 2019/05/15 1:09 https://www.mtcheat.com/

Thanks so much for the blog. Really Great.

# eXNgBvDkTMOMEvZS 2019/05/15 1:15 http://orlando4843on.buzzlatest.com/i-look-across-

I will right away clutch your rss feed as I can not find your email subscription hyperlink or e-newsletter service. Do you ave any? Kindly permit me recognize in order that I may subscribe. Thanks.

# GRKCQgQVwop 2019/05/15 7:47 http://nadrewiki.ethernet.edu.et/index.php/Ideas_A

Touche. Solid arguments. Keep up the amazing effort.

# GMQVkcMQxeKejrNqtW 2019/05/16 0:28 https://www.kyraclinicindia.com/

I wish people would compose much more about this while you have done. This is something which is very essential and possesses been largely overlooked through the world wide web local community

# qKpesPUGnoxJ 2019/05/16 21:34 https://reelgame.net/

This is a good tip especially to those fresh to the blogosphere. Simple but very precise info Thanks for sharing this one. A must read article!

# VDBrGRrSLvSaGLZbCqQ 2019/05/16 23:29 https://www.mjtoto.com/

Wow, amazing blog layout! How long have you been blogging for? you make blogging look easy. The overall look of your web site is fantastic, as well as the content!

# ysbKfqeqIx 2019/05/17 2:24 https://www.sftoto.com/

These are in fact fantastic ideas in concerning blogging.

# SBTwIVnSioHcGXEQX 2019/05/17 2:56 https://mendonomahealth.org/members/doubtangle5/ac

Major thankies for the post.Really looking forward to read more.

# sIKgZtZeDBKDUq 2019/05/17 6:15 https://www.youtube.com/watch?v=Q5PZWHf-Uh0

I value the article.Really looking forward to read more. Want more.

# WKprRLmTuNRalRiC 2019/05/17 19:10 https://www.youtube.com/watch?v=9-d7Un-d7l4

Wow, great blog.Really looking forward to read more. Want more.

# simfrJXNIYCPLLE 2019/05/17 21:41 http://cort.as/-I5QA

It absolutely not agree with the previous message

# rxhOnkDgJCbWuJM 2019/05/17 22:34 http://bgtopsport.com/user/arerapexign302/

Your web site is really useful. Many thanks for sharing. By the way, how could we keep in touch?

# TInIUeaSpNziYdftT 2019/05/18 0:43 http://food2go.com/__media__/js/netsoltrademark.ph

Some genuinely choice content on this site, bookmarked.

# SinZvfZJmjbkvB 2019/05/18 7:24 https://totocenter77.com/

Sn xut tng chn nui ong vi phng php truyn thng

# JSfSIJotKqZtdKDMvUe 2019/05/18 9:44 https://bgx77.com/

When some one searches for his vital thing, therefore he/she wishes to be available that in detail, therefore that thing is maintained over here.

# CnLAMDvJcpZ 2019/05/18 11:12 https://www.dajaba88.com/

You ave made some really good points there. I checked on the web to find out more about the issue and found most individuals will go along with your views on this website.

# jlNMnsKUUzSSOZ 2019/05/20 17:13 https://nameaire.com

Perfectly written content , appreciate it for information.

# vEPRoOnnBcbONqFiIo 2019/05/20 21:28 http://www.hhfranklin.com/index.php?title=User:And

you can always count on search engine marketing if you want to promote products online.

# hrZdijSVlQ 2019/05/22 16:24 https://my.getjealous.com/santaronald0

Thanks for the blog article.Really looking forward to read more. Want more.

# wPIgYcSBDBlTASNHgjx 2019/05/23 0:01 https://totocenter77.com/

Thanks-a-mundo for the article. Much obliged.

# vHYrzNztbwNkZB 2019/05/23 6:01 http://georgiantheatre.ge/user/adeddetry720/

Why people still make use of to read news papers when in this technological world everything is available on web?

# XbavcDzjiT 2019/05/23 16:54 https://www.ccfitdenver.com/

Just wanna input that you have a very decent web site , I love the design and style it actually stands out.

# AJqrMAVRSDj 2019/05/24 3:44 https://www.rexnicholsarchitects.com/

I think other web site proprietors should take this site as an model, very clean and wonderful user genial style and design, as well as the content. You are an expert in this topic!

# XDeAuoSvRATFSftYj 2019/05/24 5:24 https://www.talktopaul.com/videos/cuanto-valor-tie

Post writing is also a fun, if you know afterward you can write or else it is complex to write.

# VqqwuoBmsO 2019/05/24 19:25 http://bgtopsport.com/user/arerapexign424/

Thanks a lot for the blog post.Really looking forward to read more. Great.

# KluPpztArb 2019/05/24 22:17 http://tutorialabc.com

Wanted posting. Loads of excellent writing here. I wish I saw it found the site sooner. Congrats!

# UryEuaMtZSf 2019/05/25 12:11 https://www.liveinternet.ru/users/bloch_langballe/

Im thankful for the article post.Much thanks again. Really Great.

# uSetOszutmXgroHaWaE 2019/05/27 3:02 http://vinochok-dnz17.in.ua/user/LamTauttBlilt574/

Major thankies for the article.Thanks Again. Really Great.

# uGCANVMnfDSOasUxD 2019/05/27 21:45 https://totocenter77.com/

Wow, incredible blog layout! How long have you been blogging for? you made blogging look easy. The overall look of your website is fantastic, let alone the content!

# JTXpHHvkIHveOqJSKt 2019/05/27 23:42 https://www.mtcheat.com/

Some really select content on this site, saved to fav.

# BDcEzhZAPzFgTzjh 2019/05/28 2:45 https://ygx77.com/

Television, therefore I simply use internet for that reason,

# oSGqUrLlsB 2019/05/29 17:14 http://creativeworld.ru/bitrix/rk.php?goto=https:/

Really appreciate you sharing this article post.Much thanks again. Really Great.

# ZZWfbHthdW 2019/05/29 21:34 https://angel.co/chris-byars

So pleased to possess found this publish.. Respect the admission you presented.. Undoubtedly handy perception, thanks for sharing with us.. So content to have identified this publish..

# zsroozAyLuDy 2019/05/29 22:19 https://www.ttosite.com/

You should participate in a contest for the most effective blogs on the web. I will suggest this site!

# wrdqMerdtTcLCDpeBA 2019/05/30 1:30 http://totocenter77.com/

I will right away grasp your rss as I can not find your email subscription hyperlink or e-newsletter service. Do you have any? Please allow me recognize so that I may subscribe. Thanks.

# fLSAbIrJLh 2019/05/30 2:35 https://perry97rask.webs.com/apps/blog/show/467458

It as not that I want to copy your website, but I really like the style and design. Could you let me know which style are you using? Or was it especially designed?

# horufEpctBO 2019/05/30 3:32 https://www.mtcheat.com/

Wonderful article! We will be linking to this great article on our site. Keep up the good writing.

# emGOktGoQf 2019/05/30 6:04 http://bongdapluz.com/bongdaso/profile.php?id=2802

This is a really great study for me, Ought to admit that you just are a single of the best bloggers I ever saw.Thanks for posting this informative post.

# uaYaKlryRVfD 2019/05/30 6:33 https://ygx77.com/

Major thanks for the blog post.Thanks Again. Awesome.

# kGKRSgrwUms 2019/05/31 3:20 http://agnoetigal.mihanblog.com/post/comment/new/6

Pity the other Pity the other Paul cannot study on him or her seriously.

# PhXbmbcbZQF 2019/05/31 16:14 https://www.mjtoto.com/

Looking forward to reading more. Great post.Much thanks again. Really Great.

# mWFOoSwIsf 2019/06/03 18:49 https://www.ttosite.com/

longchamp le pliage ??????30????????????????5??????????????? | ????????

# MoIJShsVeUwxt 2019/06/04 2:47 https://www.mtcheat.com/

This very blog is really awesome as well as amusing. I have picked a bunch of handy advices out of this amazing blog. I ad love to return again soon. Thanks a lot!

# pJOAdEWLXF 2019/06/04 5:21 http://nifnif.info/user/Batroamimiz129/

Im obliged for the blog post. Fantastic.

# OQxwiLUzrpVvy 2019/06/07 2:13 https://www.minds.com/blog/view/983314384011632640

Major thanks for the blog article.Really looking forward to read more. Really Great.

# AfczDelvzCOb 2019/06/07 20:11 https://www.mtcheat.com/

I will also like to express that most individuals that find themselves without having health insurance can be students, self-employed and those that are not working.

# hVWGKDymOSmkP 2019/06/07 23:26 http://totocenter77.com/

You need to You need to indulge in a contest for just one of the best blogs online. I am going to recommend this web site!

# WHKZwEAxqh 2019/06/08 1:09 https://www.ttosite.com/

It'а?s really a great and helpful piece of information. I'а?m glad that you just shared this helpful information with us. Please stay us up to date like this. Thanks for sharing.

# tjTGggQgmfpSp 2019/06/08 3:41 https://mt-ryan.com

mac makeup sale cheap I think other site proprietors should take this site as an model, very clean and wonderful user friendly style and design, let alone the content. You are an expert in this topic!

# hBKbZnGoGgYrC 2019/06/08 7:47 https://www.mjtoto.com/

In order to develop search results ranking, SEARCH ENGINE OPTIMISATION is commonly the alternative thought to be. Having said that PAID ADVERTISING is likewise an excellent alternate.

# BqIcEuVqPQG 2019/06/10 18:06 https://xnxxbrazzers.com/

Online Article Every so often in a while we choose blogs that we read. Listed above are the latest sites that we choose

# hlxRjIUVXC 2019/06/11 2:55 http://www.introrecycling.com/index.php?option=com

That is a good tip particularly to those new to the blogosphere. Brief but very accurate information Many thanks for sharing this one. A must read post!

# NYUIShQKITRUlbG 2019/06/12 5:33 http://bgtopsport.com/user/arerapexign485/

Thanks for the good writeup. It if truth be told was a amusement account it. Glance complex to far introduced agreeable from you! By the way, how could we be in contact?

# qQVAOzsssEGqrgOS 2019/06/12 20:22 https://www.buzzfeed.com/blaunt79we

This site is the bomb. You have a new fan! I can at wait for the next update, bookmarked!

# RwSaRhZGrobnmqpzaF 2019/06/13 1:33 http://adep.kg/user/quetriecurath146/

Your style is so unique in comparison to other folks I ave read stuff from. I appreciate you for posting when you ave got the opportunity, Guess I will just bookmark this blog.

# sIVLBmYAMkj 2019/06/15 18:32 http://bgtopsport.com/user/arerapexign601/

Thanks for sharing, this is a fantastic blog.Really looking forward to read more. Fantastic.

# LfKIShmhxizXRmdWg 2019/06/17 20:06 https://www.pornofilmpjes.com

Pretty! This has been an extremely wonderful article. Many thanks for providing these details.

# kMJrgiZWMug 2019/06/17 23:43 http://panasonic.microwavespro.com/

It is best to take part in a contest for top-of-the-line blogs on the web. I will suggest this web site!

# APAfaZQoftDsXSyiS 2019/06/18 0:58 https://squareblogs.net/pulldress4/sub-zero-wine-f

Yeah bookmaking this wasn at a risky conclusion great post!.

# bBslkuKolOicA 2019/06/18 6:03 https://vimeo.com/alnisecfis

Than?s for your maаА аБТ?vаА а?а?lаА аБТ?us posting!

# IBOtuswkYotLbxYSgF 2019/06/18 21:09 http://kimsbow.com/

There is clearly a lot to know about this. I assume you made various good points in features also.

# CbXEyZjtusQ 2019/06/22 2:07 https://www.vuxen.no/

shannonvine.com Shannon Vine Photography Blog

# yYlPyseuWdVPvGMDgC 2019/06/22 2:07 https://www.vuxen.no/

I went over this website and I believe you have a lot of good info , saved to bookmarks (:.

# ktWrGDjxjSnlhrliafS 2019/06/22 5:55 https://abidpena.de.tl/

It as nearly impossible to find educated people for this topic, but you sound like you know what you are talking about! Thanks

# eRKYUKkPWvxjYiVG 2019/06/24 1:57 https://skylineuniversity.ac.ae/elibrary/external-

Only a smiling visitor here to share the love (:, btw outstanding style.

# LNWVqDLsTwTgTIXXIpf 2019/06/24 4:14 http://alexis7878kv.trekcommunity.com/the-gallery-

Very good blog article.Much thanks again. Keep writing.

# OXwLzSsUluFIelGw 2019/06/24 13:33 http://marketplacewhj.eblogmall.com/explore-our-va

Nearly all of the opinions on this particular blog site dont make sense.

# jGthESpAabVAOA 2019/06/26 3:26 https://topbestbrand.com/บร&am

Only wanna state that this is very beneficial , Thanks for taking your time to write this.

# KbDZoTnMgfHUlKf 2019/06/26 19:31 https://zysk24.com/e-mail-marketing/najlepszy-prog

It as not that I want to replicate your web site, but I really like the style. Could you tell me which theme are you using? Or was it custom made?

# DPYFPgfPBPXILib 2019/06/26 22:06 http://2.gp/PsV9

Thanks, I have recently been seeking for facts about this subject for ages and yours is the best I ave discovered so far.

# LPAsxSmkvsCuPog 2019/06/29 6:08 http://travianas.lt/user/vasmimica331/

Merely wanna say that this is very helpful, Thanks for taking your time to write this.

# I don't know whether it's just me or if perhaps everyone else experiencing problems with your website. It seems like some of the written text within your posts are running off the screen. Can someone else please provide feedback and let me know if this 2021/08/09 14:04 I don't know whether it's just me or if perhaps ev

I don't know whether it's just me or if perhaps
everyone else experiencing problems with your website. It seems
like some of the written text within your posts are running off the screen. Can someone else please provide feedback
and let me know if this is happening to them as well?
This may be a problem with my web browser because I've had this happen previously.
Kudos

# http://perfecthealthus.com 2021/12/24 6:27 Dennistroub

https://innagufovicky.blog.fc2.com/

タイトル
名前
URL
コメント