Audioscrobblerとプラグインを使えば今現在WMPやiTunesで聴いている音楽をRSS配信できる。これを動的にMovableTypeで紹介する。

前提
PHPが使えるサーバーでMovableTypeが動作してる
MovableTypeをPHP化してる

前準備
  • Audioscrobblerでアカウントを取得する
  • 使っているメディアプレイヤーのプラグインを入手してインストールする
インストール
  • XML_RSSを使うのでコンソールに入れるのなら
    pear install XML_RSS
    
    入れなければここからダウンロードしてBlog公開ディレクトリに保存する
  • 以下をaudioscrobbler.phpとして保存する
    <?php
    require_once("RSS.php");
    
    $user = "USER_NAME";
    $encode = "utf-8";
    $truncate = 20;
    $dateformat = "M j, Y G:i:s";
    $rdf = "http://ws.audioscrobbler.com/rdf/history/$user";
    $user_page = "http://www.audioscrobbler.com/user/$user/";
    $rdf_file = "temp/audioscrobbler.rdf";
    $cache_time = "10";
    $timeout = "5";
    
    if(!file_exists($rdf_file) || (filectime($rdf_file) < (time() - $cache_time))) {
        $array = parse_url ($rdf);
        $host = $array['host'];
        $cache = true;
        if (isset($array['port'])) {
            $port = $array['port'];
        } else {
            $port = 80;
        }
        $path = $array['path'];
    
        error_reporting (0);
        $fp = fsockopen ($host, $port, $errno, $errstr, $timeout);
        if (!$fp) {
            echo "server is busy: $errstr($errno)";
        } else {
            fputs ($fp, "GET $path HTTP/1.0\r\nHost: $host\r\n\r\n");
            $response = null;
            while (!feof($fp)) {
                $response .= fgets ($fp, 4096);
            }
            fclose ($fp);
            $cache = false;
    
            $data = split("\r\n\r\n", $response, 2);
    
            if ($data != null) {
                $temp = @fopen($rdf_file,"w") or die("ファイルが開けません");
                flock($temp, LOCK_EX);
                fputs($temp, $data[1]);
                fclose ($temp);
            }
        }
    }
    
    $rss =& new XML_RSS($rdf_file);
    $rss->parse('utf-8');
    
    $lastget = date($dateformat, filectime($rdf_file));
    
    $lastplay = null;
    echo "<ul>\n";
    foreach ($rss->getItems() as $item) {
        if ($lastplay==null) {
            $lastplay = date($dateformat, parse_w3cdtf($item['dc:date']));
        }
    
        $link = $item['link'];
        $description = mb_convert_encoding($item['description'], $encode, 'auto');
        list($artist, $title) = split(' - ', $description);
        if ($truncate > 0) {
            if (mb_strlen($title, $encode) > $truncate) {
                    $title = mb_substr($title, 0, $truncate, $encode).'...';
            }
            if (mb_strlen($artist, $encode) > $truncate) {
                    $artist = mb_substr($artist, 0, $truncate, $encode).'...';
            }
        }
        
        $artist = htmlspecialchars($artist);
        $title = htmlspecialchars($title);
    
        echo "<li class=\"track\">\n";
        echo "<div class=\"title\"><a href=\"" . $link . "\">" . $title . "</a></div>\n";
        echo "<div class=\"artist\">" . $artist . "</div>\n";
        echo "</li>\n";
    }
    echo "</ul>\n";
    echo "<p class=\"link\"><a href=\"" . $user_page . "\">my Audioscrobbler</a></p>\n";
    echo "<p class=\"lastplay\">last play:". $lastplay . "</p>\n";
    echo "<p class=\"lastupdate\">last update:". $lastget . "</p>\n";
    
    function parse_w3cdtf ( $date_str ) {
        # regex to match wc3dtf
        $pat = "/(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})?(?:([-+])(\d{2}):?(\d{2})|(Z))?/";
        if ( preg_match( $pat, $date_str, $match ) ) {
            list( $year, $month, $day, $hours, $minutes, $seconds) =
            array( $match[1], $match[2], $match[3], $match[4], $match[5], $match[6]);
    
            # calc epoch for current date assuming GMT
            $epoch = gmmktime( $hours, $minutes, $seconds, $month, $day, $year);
    
            $offset = 0;
            $tz_mod = "";
            $tz_hour = 0;
            $tz_min = 0;
            if ( isset($match[10]) && $match[10] == 'Z' ) {
                # zulu time, aka GMT
            } else {
                if (isset($match[8])) {
                    $tz_mod = $match[8];
                }
                if (isset($match[9])) {
                    $tz_hour = $match[9];
                }
                if (isset($match[10])) {
                    $tz_min = $match[10];
                }
                //list( $tz_mod, $tz_hour, $tz_min ) =
                //array( $match[8], $match[9], $match[10]);
                # zero out the variables
                if ( ! $tz_hour ) { $tz_hour = 0; }
                if ( ! $tz_min ) { $tz_min = 0; }
                $offset_secs = (($tz_hour*60)+$tz_min)*60;
                # is timezone ahead of GMT?  then subtract offset
                if ( $tz_mod == '+' ) {
                    $offset_secs = $offset_secs * -1;
                }
                $offset = $offset_secs;
            }
            $epoch = $epoch + $offset;
            return $epoch;
        }
        else {
            return -1;
        }
    }
    ?>
    
    XML_RSSをpearコマンドでインストールしていなければ
    require_once("XML/RSS.php");
    
    require_once("RSS.php");
    
    に変更
    $user = "USER_NAME";
    
    を自分のアカウントに変更 audioscrobblerのサイトが非常に重いのでキャッシュファイルを使うようにしてる。キャッシュファイルを保存するディレクトリtempを新規作成してパーミッションを777としておく
  • インデックスなり表示したいページに
    <?php include("audioscrobbler.php") ?>
    
    で埋め込む

追記: 2004/09/15 18:34 文字列をhtmlentities()でエンコードし忘れ。

追記: 2004/09/16 09:59 htmlentities()じゃ文字化けするのでhtmlspecialchars()でエンコード。

              

              

トラックバック(0)

トラックバックURL: http://mt.hide-k.net/mt-tb.cgi/23

コメント(285)

This page seems to get a good ammount of visitors. How do you advertise it? It offers a nice individual spin on things. I guess having something real or substantial to say is the most important factor.

Most people, when they criticize, whether they like it or hate it, they're talking about product. That's not art, that's the result of art. Art, to whatever degree we can get a handle on (I'm not sure that we really can) is a process. It begins in the heart and the mind with the eyes and hands.

I appreciate you for posting such a wonderful website. Your weblog was not only informative but also very inventive too. We find very few bloggers who can create technical articles that creatively. I keep looking for information regarding something like this. We ourselves have gone through many websites to build up on information regarding this.I will keep coming back !!

I am running a blog but never got any valuable comment form my readers. Hope your tips will help me to get some good and encouraging comments from my visitors.Thanks for sharing such beautiful tips.

Thank you for present highly wonderful informations. Your internet is fantastic, I am happy by the material which you have on this blog. It exhibits how very well you have an understanding of this subject. Bookmarked this page, will arrive again for a whole lot more. You, my close friend, I observed just the details I already searched all over the place and just couldn’t obtain. What a perfect web site. Such as this web page your site is one particular of my new favorites.I such as this info proven and it has provided me some type of contemplation to possess good results for some purpose, so retain up the decent work!

Without difficulty, the post is really the best on this deserving topic. I agree with your results and will thirstily look onward to your approaching updates. Saying many thanks will not just be enough, for the tremendous ability in your writing. I will instantly pick up your rss feed to stay privy of any updates. Very good work and a lot success in your future!

I’m having a strange problem I cannot make my reader pick up your feed, I’m using google reader by the way.

Do you have an rss feed? I couldn't find it. Sorry, but I am not blonde ;)

I love it. I find your blog very fresh. Not sure how you have the time to keep it up to date.

It’s way too hard to find sharp sites on this topic, but you sound like you know what you are talking about! Thanks.

I love it. I find your blog very refreshing. Good job on keeping it current.

Hello there, I like the post! I've been reading your blog for a short time now and i'm definitely enjoying it. I actually had a couple of questions in relation to your post though. Do you think it could be feasible for me to contact you further to discuss it? Maybe set up a chat on e-mail or an instant messanging application? In any other case, cheers anyway and I am going to continue to read and comment.

A colleague of mine and I have outlined this specific subject matter. Your site content help settled our argument. I'll keep reading much more articles! With thanks.

Hey thanks for the reading.

I located your blog using yahoo and I must say, this is no doubt one of the best well drafted articles I have noticed in a long time.

I uncovered your blog using bing and I must say, this is among the best well written articles I have experienced in a long time.

This is a very informative blog. But I am having problems trying to view it on my new MAC using Chrome browser. Any suggestion?

This is a very informative blog. But I am having problems trying to view it on my new MAC using Chrome browser. Any suggestion?

This is a very informative blog. But I am having problems trying to view it on my new MAC using Chrome browser. Any suggestion?

This is a very informative blog. But I am having problems trying to view it on my new MAC using Chrome browser. Any suggestion?

This is a very informative blog. But I am having problems trying to view it on my new MAC using Chrome browser. Any suggestion?

This is a very informative blog. But I am having problems trying to view it on my new MAC using Chrome browser. Any suggestion?

Just before taking Klonopin, tell your health practitioner if you have kidney or liver disease, glaucoma, any breathing problems, or a historical past of depression, suicidal thoughts, or addiction to medications or alcohol. Klonopin no prescription

There are actually hundreds of 1000's of documented circumstances exactly where a particular person finds total relief from their ailment with the support of nothing at all but herbal health supplements. Human Growth Hormone releaser.

Levitra is generally taken only when necessary, about 60 minutes prior to sexual activity. The medication can support obtain an erection when sexual stimulation happens. An erection will not take place just by getting a pill. Comply with your doctor's directions. Order Levitra no prescription.

I found your blog using Yahoo and I must say this is one of the most informative blogs I have read in a while. I will make sure I come back to read your future posts.

See the button that says Submit? Don’t ever click on it ever again. The Web thanks you.

Glad i found your blog, the internet has revolutionised the way we learn and now it is changing the way write

Ambien can lead to facet effects that might impair your thinking or reactions. You might nevertheless experience sleepy the morning right after taking the medicine. Ambien no prescription.

Prior to using Valium, inform your physician if you have glaucoma, asthma or other respiration difficulties, kidney or liver condition, seizures, or a heritage of medicine or alcohol habit, mental illness, depression, or suicidal ideas. Valium without rx

It has an effect on chemical substances in the thoughts that may well turn out to be unbalanced and trigger strain and anxiousness. Xanax without prescription

Rolling Stone summed the album up as "repulsive, obnoxious and ridiculously catchy." It debuted at range 1 on the Billboard 200. Cd track "Blah Blah Blah" debuted in the leading ten in the US, Canada, Australia and New Zealand in the similar week as the cd due to powerful digital product sales."Tik Tok", possessed by now topped the charts in eleven nations and set quite a few data in the US. Discount Kesha tickets

protracted account you retain

May sound like, if you happen to can!|t combat , link up with !.

Seems like, if you should can!|t defeat , join !.

You completed several nice points there. I did a search on the theme and found most folks will consent with your blog.

We've been looking through your content on this web site for at some time. This is my first comment. Your current weblog has been very useful for me and yes it offers excellent articles.

We've been reading through your articles on this site for at some time. This is certainly our first comment. Your blog has been very beneficial for me and it also offers very good subject material.

Hello, magnificent web site. Each of the topics you created on have been really interesting. I attempted to provide in the RSS feed to my personal news reader. Thanks

The patented RoboScreensâ?¢ are an working experience in itself as they are choreographed to transfer with the music and onstage manufacturing. cheap Bon Jovi tickets

Hello, awesome webpage. All of the subjects you published on were very helpful. I attempted to include in your RSS feed to my news reader. Thanks

Hello, awesome web site. The entire topics you created on were very intriguing. I attempted to provide in the Feed to my personal news reader. Thanks

Thanks with the wonderful topic. I will bookmark this article for future visits. Infact your theme integrates with the topic.

Thanks with the terrific issue. I am going to bookmark the following web site for future visits. Infact your theme integrates with all the issue.

Thanks for sharing this specific great written content on your site. I discovered it on the internet. I am going to check to come back once you post extra aricles.

I am delighted that I discovered this web blog , precisely the right information that I was looking for! .

Thanks pertaining to giving this good content material on your site. I noticed it on google. I am going to check back again if you post much more aricles.

Thanks for discussing this particular wonderful content material on your web site. I noticed it on the internet. I am going to check back again when you publish additional aricles.

Awesome information. Will come back to read more.

A little government and a little luck are necessary in life, but only a fool trusts either of them.

Do not consider Cialis if you are allergic to tadalafil, or if you are also making use of a nitrate drug for chest discomfort or cardiovascular system issues, including nitroglycerin (Nitrostat, Nitrolingual, Nitro-Dur, Nitro-Bid, Minitran, Deponit, Transderm-Nitro), isosorbide dinitrate (Dilatrate-SR, Isordil, Sorbitrate), and isosorbide mononitrate (Imdur, ISMO, Monoket), or recreational medication such as amyl nitrate or nitrite ("poppers"). Buy cheap Cialis.

As far as me being a member here, I am glad though that I am a member. When the article was published I received a notification, so that I could participate in Comments, so perhaps that is it. But we're certainly all intellectuals.
You should consider starting an monthly news letter. It would take your site to its potential.
Great artical, I unfortunately had some problems printing this artcle out, The print formating looks a little screwed over, something you might want to look into.
I learned alot by reading your article. I have been reading your blog alot over the past few days and it has earned a place in my bookmarks.
Yups, its so realistic.Thanks for your great post.
I was very encouraged to find this site. The reason being that this is such an informative post. I wanted to thank you for this detailed analysis of the subject. I definitely savored every little bit of it and I submitted your site to some of the biggest social networks so others can find your blog.
I ran into this page on accident, surprisingly, this is a wonderful website. The site owner has done a great job writing/collecting articles to post, the info here is really and helpful when i do research. Now i am going to bookmark this internet site so that I can revisit in the future.
Thanks for providing such a great article, it was excellent and very informative. It’s my first time that I visit here. I found a lot of informative stuff in your article. Keep it up. Thank you.
You completed a few good points there. I did a search on the topic and found a good number of folks will consent with your blog.
It seems too advanced  and very general for me to comprehend.

Just thought I would comment and say cool theme, did you create it on your own? Its really really good!

Apple now has Rhapsody as an app, which is a great start, but it is currently hampered by the inability to store locally on your iPod, and has a dismal 64kbps bit rate. If this changes, then it will somewhat negate this advantage for the Zune, but the 10 songs per month will still be a big plus in Zune Pass' favor.

I cling on to listening to the reports talk about getting free online grant applications so I have been looking around for the most excellent site to get one. Could you advise me please, where could i acquire some?

The new Zune browser is surprisingly good, but not as good as the iPod's. It works well, but isn't as fast as Safari, and has a clunkier interface. If you occasionally plan on using the web browser that's not an issue, but if you're planning to browse the web alot from your PMP then the iPod's larger screen and better browser may be important.

As a Newbie, I am always searching online for articles that can be of assistance to me. Thank you

This is getting a bit more subjective, but I much prefer the Zune Marketplace. The interface is colorful, has more flair, and some cool features like 'Mixview' that let you quickly see related albums, songs, or other users related to what you're listening to. Clicking on one of those will center on that item, and another set of "neighbors" will come into view, allowing you to navigate around exploring by similar artists, songs, or users. Speaking of users, the Zune "Social" is also great fun, letting you find others with shared tastes and becoming friends with them. You then can listen to a playlist created based on an amalgamation of what all your friends are listening to, which is also enjoyable. Those concerned with privacy will be relieved to know you can prevent the public from seeing your personal listening habits if you so choose.

Awesome site you have btw

Cheap Tramadol tablets on-line with no prescriptionBuy Tramadol drug

Eccentricity is not, as dull people would have us believe, a form of madness. It is often a kind of innocent pride, and the man of genius and the aristocrat are frequently regarded as eccentrics because genius and aristocrat are entirely unafraid of and uninfluenced by the opinions and vagaries of the crowd.

I attempted to submit a remark earlier, however it hasn't shown up. I believe the spam filter might be broken

You completed a few fine points there. I did a search on the matter and found nearly all persons will agree with your blog.

If at first you don't succeed, find out if the loser gets anything.

jpbbkngranmesrhhdkegkqqlopetiq

I was equally impressed with Vincent Cassel at Thomas.

a very good read very good blog will be looking out for more of these blogs

nice revealing best wishes.

Nice thinking that person. And thus suggest everyone!

This is a extremely cool blog, thanks a great deal for this! I've read a great deal about this topic in the past and I agree with you.

The new Zune browser is surprisingly good, but not as good as the iPod's. It works well, but isn't as fast as Safari, and has a clunkier interface. If you occasionally plan on using the web browser that's not an issue, but if you're planning to browse the web alot from your PMP then the iPod's larger screen and better browser may be important.

Superukash Türkiye %100 Yasal hem ucuz hem guvenli Ukash Kart satışı yapmaktadır. Ucuz ukash, ukash, ukash al, ukash destek.

AdSense isn’t the unstoppable revenue engine for every eBusiness. Before I am taken out and flogged by the eCommerce pundits — please let me explain what I mean in my defense.

This really answered my problem, thank you!

I frankly learned about nearly all of this, but having said that, I still assumed it was helpful. Sweet work!

isnt it a shame we cant afford to go to live matches like we did in the old days, i miss the atmasphere and you could see what support was there ? there is nothing like the real thing shame.

The only place you'll find success before work is in the dictionary

I have to say that Im really unimpressed with this. I mean, sure, youve got some very interesting points. But this blog is just really lacking in something. Maybe its content, maybe its just the design. I dont know. But its almost like you wrote this because everybodys doing it. No passion at all.

There are certainly a lot of details like that to take into consideration. That is a great point to bring up. I offer the thoughts above as general inspiration but clearly there are questions like the one you bring up where the most important thing will be working in honest good faith. I don?t know if best practices have emerged around things like that, but I am sure that your job is clearly identified as a fair game.

Hello dude,i like Your homepage ideal a lot. attain u have suggestion for my website? thanks for Ones attention

I have been trying to find anyone to compose a article like this. I have ultimately found it after searching Google. Thanks!

I was very pleased to find this site!I wanted to thank you for this great read!!!! I definitely enjoyed it and I have you bookmarked to check on new stuff you post!

hey I’m not able subscribing to your RSS feed. Can you help or do you know why? thanks for the assistance.

Super-Duper site! I am loving it!! Will come back again. I am bookmarking your feeds also

http://www.geeklands.com/member.php?u=5080

This is getting a bit more subjective, but I much prefer the Zune Marketplace. The interface is colorful, has more flair, and some cool features like 'Mixview' that let you quickly see related albums, songs, or other users related to what you're listening to. Clicking on one of those will center on that item, and another set of "neighbors" will come into view, allowing you to navigate around exploring by similar artists, songs, or users. Speaking of users, the Zune "Social" is also great fun, letting you find others with shared tastes and becoming friends with them. You then can listen to a playlist created based on an amalgamation of what all your friends are listening to, which is also enjoyable. Those concerned with privacy will be relieved to know you can prevent the public from seeing your personal listening habits if you so choose.

I want to thankx for the efforts you have made in writing this blog. I am hoping the same high-grade blog post from you in the upcoming as well. In fact your creative writing skill has inspired me to get my own blog now. Really the blogging is spreading its wings rapidly. Your write up is a good example of it.

continue with the the good work on the blog. I like it. Could use some more frequent updates, but i'm sure you have got better or other things to do like we all do. =p

sorry ive been neglecting twitter but this michael jackson game for the wii have been my life this weekend.

I'm commenting to make you understand what a notable encounter our daughter experienced going through your web page. She realized several things, including how it is like to have a marvelous helping spirit to get a number of people without hassle completely grasp chosen extremely tough things. You undoubtedly exceeded her expected results. I appreciate you for distributing the interesting, trusted, edifying and even cool tips about that topic to Sandra.

I’m not sure where you're getting your information, but great topic. I needs to spend some time learning more or understanding more. Thanks for fantastic information I was looking for this information for my mission.

Apple now has Rhapsody as an app, which is a great start, but it is currently hampered by the inability to store locally on your iPod, and has a dismal 64kbps bit rate. If this changes, then it will somewhat negate this advantage for the Zune, but the 10 songs per month will still be a big plus in Zune Pass' favor.

Ricky Martin is typically a Puerto Rican pop singer and actor who achieved prominence, 1st as getting a member from the Latin boy band Menudo, then as currently being a solo artist pondering that 1991. Buy Ricky Martin tickets

Its like you read my mind! You appear to know a lot about this, like you wrote the book in it or something. I think that you can do with a few pics to drive the message home a little bit, but other than that, this is great blog. A great read. I will certainly be back.

Well I truly liked studying it. This tip offered by you is very helpful for good planning.

How does someone extend the range of the Wireless N router? We have an Xtreme N the now necessary wireless router (Dlink). I need to extend the reach belonging to the wireless signal. I have learned to do it for a G signal. I have to know how to do the idea for an N signal. Is it possible make use of regular N routers while repeaters. If so, learn how to configure them. Thanks to the information.

She rose to fame with the generate of her second solitary "I Kissed a Lady" in 2008, which went on to leading rated intercontinental charts. Buy Katy Perry tickets

Valium ought to be utilized for only a quick time. Do not acquire this medicine for extended than four months with out your doctor's assistance. Do not cease using Valium out of the blue without first speaking to your physician. Valium no prescription

Ambien is applied for the quick-phrase treatment of insomnia (trouble falling or staying asleep). This treatment leads to rest to assist you drop asleep. Order Ambien no rx.

The blue pill can lessen blood move to the optic nerve of the eye, leading to sudden vision loss. This has occurred in a little amount of people using Viagra, most of whom also had center disease, diabetes, higher blood stress, large cholesterol, or specific pre-existing eye problems, and in those who smoke or are over 50 years aged. Buy Viagra medication

There is obviously a lot to know about this. I think you made some good points in the Features also.

The points you provided here are really useful. It absolutely was such an enjoyable surprise to get that awaiting me once i woke up now. They are often to the point as well as simple to understand. Warm regards for the clever ideas you've got shared here.

Ver good site! I am loving it!! Will come back again - taking your feeds also. Thanks.

A interesting post right there mate . Thank you for posting .

Can you email me with a few tips about how you made your blog site look like this, I would be thankful.

I'm getting a browser error, is anyone else?

I want it to be a thing that really has no relevance to the current topic at hand. Some think it as just plain odd to allow these kinds of things to happen alas it happens anyway and without any consent but what can you do.

How can i extend the range of the Wireless N router? We have an Xtreme N handheld router (Dlink). I must extend the reach from the wireless signal. I learn how to do it for the G signal. I need to know how to do that for an N sign. Is it possible to apply regular N routers when repeaters. If so, just how do i configure them. Thanks for that information.

Did a search on Google and found this page at no.1. Congratulations. Great post and keep it up

Im impressed, I have to admit. Really rarely will i visit a blog thats both educational and entertaining, and without a doubt, you have hit the nail on the head.

Awesome post . Thanks for, visiting my blog page dude. I shall email you again. I did not know that!

Hey, very nice blog! Beautiful and Amazing. I will bookmark your blog and take the feeds also

Way cool, some wonderful points! I appreciate you making this post available, the rest of the site is also well done. I hope you have a great day.

Ver good site! I am loving it!! Will come back again - taking your feeds also. Thanks.

I generally don't comment in Blogs but your writing forced me to, wonderful work.

Hi, I apologize for inquiring this question here, but I can’t find a contact form or something so I assumed I could I leave my query here. I run a blogengine blog but I am receiving bigger amounts of spam. I see u use wordpress, is it unproblematic to regulate spam with wordpress or doesn’t it make any difference? I hope you will respond to my comment or maybe send me an email with your answer if you don’t want to approve the comment. Best regards

I'm still learning from you, but I'm trying to reach my goals. I certainly enjoy reading all that is written on your site.Keep the posts coming. I liked it!

Have you ever thought about including somewhat bit extra than just your ideas? I imply, what you say is important and everything. However its obtained no punch, no pop! Maybe if you added a pic or two, a video? You could possibly have such a extra highly effective weblog for those who let people SEE what youre speaking about as a substitute of just studying it. Anyway, in my language, there usually are not much good supply like this.

Well done is richer reconsider than well said.

There are actually plenty of details like that to take into consideration. That may be a great level to convey up. I provide the thoughts above as general inspiration but clearly there are questions like the one you deliver up where crucial factor will likely be working in honest good faith. I don?t know if finest practices have emerged round things like that, but I'm sure that your job is clearly identified as a good game. Anyway, in my language, there are usually not a lot good source like this.

You made some good points there. I did a search on the subject and found nearly all persons will agree with your blog.

Glad to be one of several visitors on this awing web site : D. What do you think about this here

Very efficiently written post. It will be beneficial to anybody who employess it, as well as me. Keep doing what you are doing - looking forward to more posts.

Very nice post,Excellent post with some good info

As a Newbie, I am constantly searching online for articles that can be of assistance to me. Thank you

I was questioning if you need to be a guest poster on my web site? and in change you would embody a link your put up? Please reply while you get an opportunity and I will ship you my contact details - thanks. Anyway, in my language, there will not be much good source like this.

Can I make a suggestion? I feel youve bought something good here. But what should you added a couple links to a web page that backs up what youre saying? Or possibly you would give us one thing to take a look at, one thing that may connect what youre saying to something tangible? Only a suggestion. Anyway, in my language, there aren't a lot good source like this.

Did a search on Google and found this page at no.1. Congratulations. Great post and keep it up

Very nice post,Excellent post with some good info

Very good conntent I will recommend it to my friends.

Did a search on Google and found this page at no.1. Congratulations. Great post and keep it up

There are a lot of strange comments on here. People must be using SCRAPEBOXLIST.COM

How do you manage to come up such a informative blog...great job!!!

Hi, this blog is very usefull and i like this blog so much.i'll share this blog on my facebook page.

In search for sites related to web hosting and comparison hosting plans, your site came up.

Seriously, I absolutely enjoyed reading your blogpost. You have convinced me to subscribe to your blog, but where can I find the RSS feed?

This is a perfect post. I like your writing style. Will look around your website :)

Did a search on Google and found this page at no.1. Congratulations. Great post and keep it up

I hope you will keep updating your content constantly as you have one dedicated reader here.

As a Newbie, I am continuously searching online for articles that can be of assistance to me. Thank you

Hi-ya every one, stunning forum I have found It amply accommodating and it has helped me alot. I hope to give something back & support other users like this board has helped me

@Dan I get your drift on where you were going there. I often think of my past and use it as a means to analyze where I am and where I want to get to. Where I struggel is balancing it all out. How do you guys balance things out?

This is a perfect post. I like your writing style. Will look around your website :)

Assistant solutions are beginning to become increasingly more preferred.

Sorry for the huge review, but I'm really loving the new Zune, and hope this, as well as the excellent reviews some other people have written, will help you decide if it's the right choice for you.

There is visibly a bundle to realize about this. I consider you made certain nice points in features also.

actually liked the article that you published actually. it really is not that simple to find good text toactually read (you know.. READ! and not simply going through it like some uniterested and flesh eating zombie before going to yet another post to just ignore), so cheers man for not wasting any of my time! :p

How do you make your blog look this cool!? Email me if you want and share your wisdom. .

Need autoaprove lists? Try SCRAPEBOXLIST.COM

Need autoaprove lists? Try SCRAPEBOXLIST.COM

I thought it was heading to become some boring old post, however it really compensated for my time. I will post a website link to this web page on my weblog. I'm certain my guests will find that incredibly helpful.

Need autoaprove lists? Try SCRAPEBOXLIST.COM

Good luck getting people behind this one. Though you make some VERY fascinating points, youre going to have to do more than bring up a few things that may be different than what weve already heard. What are trying to say here? What do you want us to think? It seems like you cant really get behind a unique thought. Anyway, thats just my opinion.

I'll gear this review to 2 types of people: current Zune owners who are considering an upgrade, and people trying to decide between a Zune and an iPod. (There are other players worth considering out there, like the Sony Walkman X, but I hope this gives you enough info to make an informed decision of the Zune vs players other than the iPod line as well.)

Need autoaprove lists? Try SCRAPEBOXLIST.COM

Thank you for taking the time to write this!

Thank you for taking the time to write this!

It is tough to discover educated males and females on this topic, however you seem like you realize anything you could be talking about! Thanks

What I want to know is why I should care? I mean, not to say that what youve got to say isnt important, but I mean, its so generic. Everyones talking about this man. Give us something more, something that we can get behind so we can feel as passionately about it as you do.

Thanks for the post. One other thing is that hiring a website development company is a good option if you can afford the expenses. It is a fact that specialist web design firms can very expensive. A lot of people prefer self employed who charge a lot lower cost as compared to a website design company.

You have some honest ideas here. I done a research on the issue and discovered most peoples will agree with your blog. After that early period, the Beatles evolved considerably over the years.

I thought you were going to chip in with some decisive insigth at the end there. Not leave it with 'we leave it to you to decide'

Could not thank you adequately for the blogposts on your site. I know you put a lot of time and effort into them and truly hope you know how much I enjoy it. I hope I am able to do the identical thing for someone else one of these days.

Wow! Thank you. I always wanted to write in my site something like that. Can I take part of your post to my blog?

It is really rare to find a specialist in whom you may have some faith. In the world of today, nobody really cares about showing others the answer in this matter. How fortuitous I am to have actually found a wonderful blog as this. It is people like you that make a real difference in this world through the ideas they discuss.

I don’t usually reply to posts, but I will in this case. Good job. I look forward to reading more

keep up the good work on the site. I appreciate it. Could maybe use some more updates more often, but i am sure that you got better things to do like we all have to do unfortunately. =p

I appears that you’ve put a good amount of effort into your article and I require a lot more of these on the web these days!! I sincerely got a kick out of your post:) I do not have a bunch to to say in reply, I only wanted to register to say tremendous work!

This article gets a 2 thumbs way up from over here.

i have begun to visit this blog a few times now and i have to tell you that i find it quite good actually. it'll be nice to read more in the future! ;)

Hi! I discovered your blog on Google and have liked checking it out. Thanks for the useful and detailed posts. I will be bookmarking you.

really appreciated what that you have written actually. it just isn't that simple to find even remotely good text toactually read (you know READ! and not simply browsing through it like a zombie before going somewhere else), so cheers man for not wasting my time! :)

I’d come to engage with you one this subject. Which is not something I typically do! I enjoy reading a post that will make people think. Also, thanks for allowing me to comment!

SME Business Directory is a one stop SME information portal and Malaysia business directory for small and medium enterprises SMEs. smibusinessdirectory Malaysia Logistics Directory

We just couldnt leave your site before saying that I genuinely enjoyed the quality information you provide to your visitors? Will be again soon to check up on new posts

I have been checking out a few of your posts and it's pretty good stuff. I will surely bookmark your blog.

I was more than happy to find this net-site.I wished to thanks on your time for this wonderful learn!! I definitely having fun with each little bit of it and I've you bookmarked to check out new stuff you blog post.

Thank you for the well thought out post. I added you to Mixx. Keep up the good work.

Great post, you have pointed out some excellent points , I also believe this s a very fantastic website.

Hi! I found your blog on Bing and have enjoyed checking it out. Thanks for the useful and detailed posts. I will be subscribing to your RSS feed.

I love when you talk about this type of stuff in your blog. Perhaps could you continue this?

My fake plants died because I did not pretend to water them.

Pay no attention to what the critics say... Remember, a statue has never been set up in honor of a critic!

Pretty good post!! I just came across your site and wanted to say that I have really enjoyed reading your opinions:D Any way I'll be coming back and I hope you post again soon!

The Constitution gives every American the inalienable right to make a damn fool of himself.

Lovely website! I am loving it!! Will come back again. I am taking your feeds also

Congratulations on having one of the most sophisticated blogs Ive arrive across in some time! Its just incredible how very much you can take away from a thing simply because of how visually beautiful it is. Youve put with each other a good weblog space --great graphics, videos, layout. This is unquestionably a must-see weblog!

Please tell me that youre going to keep this up! Its so excellent and so important. I cant wait to read extra from you. I just really feel like you know so considerably and know how to make people listen to what you have to say. This blog is just as well cool to be missed. Wonderful stuff, definitely. Please, PLEASE keep it up!

Thanks for the article. Can you please send me few more ideas about this, I am really a fan of your blog. Thanks, Harriett Boon

Nice Post:) It’s really a very good article:) I noticed all your important points!! Thanks!!!!

ample almanac you keep

Im not going to say what everyone else has already said. but I do want to comment on your knowledge of the topic:D Youre truly well-informed:) I cant believe how much of this I just wasnt aware of!

Sick! Just obtained a brand-new Pearl and I can now read your weblog on my phone’s browser, it didn’t function on my aged 1.

This was a seriously incredibly excellent submit. In theory I’d like to write like this also - getting time and actual effort to make a good piece of writing… but what can I say… I procrastinate alot and by no means seem to obtain some thing done.

Hello. This is kind of an "unconventional" question :D but have other visitors asked you how get the menu bar to look like you've got it?

Thanks for share quite good informations. Your website is great.I am impressed by the material that you have on this blog. It exhibits how effectively you comprehend this subject.

I think youve produced some truly interesting points. Not also many people would really think about this the way you just did. Im genuinely impressed that theres so considerably about this topic thats been uncovered and you did it so nicely, with so a lot class. Beneficial 1 you, man! Definitely good things right here.

http://sckwashere.com

Hey - good website. just looking around some websites:) seems a pretty nice platform you are using. I'm currently using Wordpress for a few of my blogs but looking to change one of them over to a platform similar to yours as a trial run:)

I admire the beneficial info you offer inside your articles. I will bookmark your blog and have my youngsters test up here frequently. I am fairly positive they will learn a lot of new things here than anybody else!

I think youve produced some actually interesting points. Not as well many people would really think about this the way you just did. Im really impressed that theres so substantially about this subject thats been uncovered and you did it so nicely, with so substantially class. Very good one you, man! Really great things here.

Not a bad post in the slightest degree!

Let me start by saying nice post. Im not sure if it has been talked about, but when using Chrome I can never get the entire site to load without refreshing many times. Could just be my computer. Thanks

Keep up the wonderful postings:) Thanks

I think youve produced some truly interesting points. Not also many people would in fact think about this the way you just did. Im really impressed that theres so significantly about this topic thats been uncovered and you did it so properly, with so a lot class. Beneficial 1 you, man! Really excellent things right here.

I thought it was going to be some dull previous post, but it seriously compensated for my time. I will publish a website link to this page on my blog. I am positive my visitors will come across that incredibly helpful.

Congratulations on having one of the most sophisticated blogs Ive arrive across in some time! Its just incredible how a lot you can take away from one thing simply because of how visually beautiful it is. Youve put with each other a great blog space --great graphics, videos, layout. This is definitely a must-see blog!

Fantastic job right here. I seriously enjoyed what you had to say. Keep heading because you unquestionably bring a new voice to this topic. Not many people would say what youve said and still make it interesting. Properly, at least Im interested. Cant wait to see far more of this from you.

Good stuff, I anticipate reading more.

Pretty good post:) I just came across your site and wanted to say that I have really enjoyed reading your opinions:D Any way I'll be coming back and I hope you post again soon:)

Hey - nice weblog, just looking about some blogs, appears a pretty nice platform you're utilizing. I'm currently utilizing Wordpress for a few of my websites but looking to alter 1 of them more than to a platform similar to yours as being a trial run. Something in specific you'd suggest about it?

Wonderful job right here. I seriously enjoyed what you had to say. Keep going because you unquestionably bring a new voice to this subject. Not many people would say what youve said and still make it interesting. Well, at least Im interested. Cant wait to see extra of this from you.

Congratulations on having one of the most sophisticated blogs Ive come throughout in some time! Its just incredible how a lot you can take away from a thing simply because of how visually beautiful it is. Youve put together a excellent blog space --great graphics, videos, layout. This is undoubtedly a must-see weblog!

Thank you for an additional great post. Where else could anyone get that type of information in these a ideal way of writing? I have a presentation subsequent week, and I'm on the appear for this kind of information and facts.

Just a fast hello and also to thank you for discussing your ideas on this web page. I wound up in your weblog right after researching physical fitness connected issues on Yahoo… guess I lost track of what I had been performing! Anyway I’ll be back as soon as once more within the future to test out your blogposts down the road. Thanks!

I appreciate the well written info:D

I thought it was heading to be some boring old publish, however it actually compensated for my time. I'll submit a link to this page on my blog. I'm certain my site visitors will find that very useful.

Dude, please tell me that youre going to write additional. I notice you havent written an additional weblog for a while (Im just catching up myself). Your blog is just too important to become missed. Youve obtained so significantly to say, these knowledge about this topic it would be a shame to see this blog disappear. The internet needs you, man!

First of all, allow my family appreciate a person's command during this matter. Even though this is certainly brand new , nevertheless soon after registering your site, this intellect has exploded extensively. Allow all of us to take hold of one's rss to help keep in touch with at all probable messages Sincere understand but will pass it on to help admirers and my private are living members

Resources such as the one you mentioned right here will be incredibly helpful to myself! I'll publish a hyperlink to this web page on my private weblog. I'm sure my site visitors will locate that very helpful.

Fantastic job right here. I genuinely enjoyed what you had to say. Keep going because you surely bring a new voice to this topic. Not many people would say what youve said and still make it interesting. Properly, at least Im interested. Cant wait to see much more of this from you.

I believed it was heading to be some boring old submit, however it genuinely compensated for my time. I'll post a link to this web page on my blog. I am sure my guests will find that extremely helpful.

Completely understand what your stance in this matter:D Although I would disagree on some of the finer details.

Great advice I recently encounter your blog and have been reading along. I thought I would leave my primary comment. I don’t know what toexposeexcept that I have enjoyed reading. Correct blog. I will keep visiting this blog very many.

I¡¯m delighted that I have observed this weblog. Finally anything not a junk, which we undergo incredibly frequently. The website is lovingly serviced and stored up to date. So it have to be, thanks for sharing this with us.

I thought it was going to be some boring old post, however it genuinely compensated for my time. I will publish a link to this page on my blog. I am positive my visitors will find that quite helpful.

We are able to argue that if the preferred approaches used by most bodybuilders have delivered the products for drug-free and genetically common bodybuilders there can be no should talk about options .The unhappy, but legitimate actuality is the well-liked training methods to create muscle mass rapidly have an interesting failure charge.

Congratulations on having 1 of the most sophisticated blogs Ive come throughout in some time! Its just incredible how very much you can take away from some thing simply because of how visually beautiful it's. Youve put together a fantastic blog space --great graphics, videos, layout. This is certainly a must-see weblog!

I'm usually to running a blog and i really recognize your content. The article has really peaks my interest. I am going to bookmark your web site and preserve checking for new information.

Thank you for the smart critique. Me & my neighbour were preparing to do some research about that. We obtained a excellent book on that matter from our local library and most books where not as influensive as your details. I am extremely glad to see these info which I was searching for a long time.

Regardless how putting it finding online stuff is getting tougher .

Ive been meaning to read this and just never received a chance. Its an issue that Im very interested in, I just started reading and Im glad I did. Youre a wonderful blogger, one of the best that Ive seen. This blog surely has some details on subject that I just wasnt aware of. Thanks for bringing this things to light.

Considerably, this post is really the sweetest on this notable topic. I harmonise with your conclusions and will thirstily look forward to your incoming updates. Saying thanks will not just be sufficient, for the phenomenal clarity in your writing. I will directly grab your rss feed to stay informed of any updates. Admirable work and much success in your business dealings!  Please excuse my poor English as it is not my first tongue.

Congratulations on having one of the most sophisticated blogs Ive arrive throughout in some time! Its just incredible how significantly you can take away from a thing simply because of how visually beautiful it is. Youve put together a terrific blog space --great graphics, videos, layout. This is definitely a must-see weblog!

Took me time to read all the comments, but I seriously enjoyed the write-up. It proved to become Quite helpful to me and I am sure to all the commenters here It's always great when you can not only be informed, but also entertained I'm sure you had fun writing this post.

Resources this kind of as the 1 you mentioned here will be incredibly useful to myself! I'll publish a hyperlink to this web page on my personal weblog. I'm positive my site visitors will uncover that quite effective.

This was a really extremely excellent publish. In theory I’d prefer to create like this also - getting time and actual effort to make a great piece of writing… but what can I say… I procrastinate alot and by no means seem to obtain some thing done.

Took me time to read all the comments, but I genuinely enjoyed the write-up. It proved to be Incredibly useful to me and I am certain to all the commenters right here It's always great when you can not only be informed, but also entertained I'm positive you had fun writing this write-up.

This was a genuinely really very good submit. In theory I’d like to create like this also - getting time and actual effort to make a fantastic piece of writing… but what can I say… I procrastinate alot and by no means appear to obtain anything done.

Hello! Quick question that's completely off topic. Do you know how to make your site mobile friendly? My website looks weird when browsing from my iphone 4. I'm trying to find a theme or plugin that might be able to fix this problem. If you have any recommendations, please share. Thank you!

Good article!! thank you! I just signed up to your blog RSS!!

I think youve created some truly interesting points. Not as well many people would actually think about this the way you just did. Im truly impressed that theres so substantially about this topic thats been uncovered and you did it so properly, with so significantly class. Excellent 1 you, man! Actually good stuff here.

Fairly insightful post. Never believed that it was this simple after all. I had spent a good deal of my time looking for someone to explain this subject clearly and you’re the only one that ever did that. Kudos to you! Keep it up

Youre so right. Im there with you. Your blog is surely worth a read if anyone comes across it. Im lucky I did because now Ive obtained a whole new view of this. I didnt realise that this issue was so important and so universal. You definitely put it in perspective for me.

Thank you for the auspicious writeup. It in fact was a amusement account it. Look advanced to far added agreeable from you! By the way, how can we communicate?

Good to become visiting your weblog once more, it has been months for me. Nicely this article that i've been waited for so lengthy. I require this write-up to complete my assignment inside the college, and it has same subject with your post. Thanks, good share.

I believed it was going to become some boring previous post, but it truly compensated for my time. I'll post a website link to this web page on my blog. I'm sure my site visitors will uncover that incredibly helpful.

Thank you for an additional good post. Where else could anybody get that kind of facts in this kind of a perfect way of writing? I have a presentation next week, and I am to the appear for this kind of info.

Good job right here. I seriously enjoyed what you had to say. Keep going because you definitely bring a new voice to this subject. Not many people would say what youve said and still make it interesting. Nicely, at least Im interested. Cant wait to see much more of this from you.

Good to become visiting your weblog again, it has been months for me. Properly this post that i've been waited for so lengthy. I will need this write-up to complete my assignment in the university, and it has same subject with your write-up. Thanks, wonderful share.

With all the doggone snow we have gotten recently I am stuck indoors, fortunately there is the internet, thanks for giving me something to do. :)

Yeah bookmaking this wasn't a high risk determination outstanding post! .your link on my blog here http://tinyurl.com/Convresources ,

I am searching for something different however this got my attention =)

Thank you for that sensible critique. Me & my neighbour were preparing to do some research about that. We obtained a very good book on that matter from our local library and most books where not as influensive as your information and facts. I am incredibly glad to see these data which I was searching for a long time.

I admire the useful information and facts you offer inside your articles. I will bookmark your blog and also have my youngsters examine up here often. I'm quite certain they'll discover a lot of new stuff right here than anyone else!

Congratulations on having one of the most sophisticated blogs Ive come throughout in some time! Its just incredible how much you can take away from anything simply because of how visually beautiful it's. Youve put collectively a terrific blog space --great graphics, videos, layout. This is certainly a must-see weblog!

thank for taking the time to discuss this, I feel strongly about it and love learning more on this topic. If possible, as you gain expertise, could you mind updating your site with more information? as it is extremely helpful for me.

Thank you for the sensible critique. Me & my neighbour were preparing to do some research about that. We acquired a excellent book on that matter from our local library and most books exactly where not as influensive as your info. I am very glad to see these facts which I was searching for a lengthy time.

I am looking forward to diggin more of your quality posts.

Hi, this can be a nice site. I am continually on the lookout for websites like this. Sustain the great work!

Hey, this can be a nice blog. I'm continually searching for sites resembling this. Sustain the great work!

Great job here. I genuinely enjoyed what you had to say. Keep going because you unquestionably bring a new voice to this subject. Not many people would say what youve said and still make it interesting. Properly, at least Im interested. Cant wait to see additional of this from you.

I must say, as a lot as I enjoyed reading what you had to say, I couldnt help but lose interest after a while. Its as if you had a wonderful grasp around the subject matter, but you forgot to include your readers. Perhaps you should think about this from a lot more than one angle. Or maybe you shouldnt generalise so substantially. Its better if you think about what others may have to say instead of just going for a gut reaction to the subject. Think about adjusting your personal thought process and giving others who may read this the benefit of the doubt.

I like this site its a master peace ! Glad I found this on google .

Extremely cool, some valid points! I appreciate you making this post available, the rest of the blog is also well done. I hope you have a wonderful day.

My neighbor and I have been simply debating this particular subject, he's normally looking for to show me incorrect. Your view on that is great and exactly how I really feel. I simply now mailed him this web page to point out him your individual view. After wanting over your web site I guide marked and might be coming again to learn your new posts!

Resources these as the 1 you mentioned right here will be incredibly helpful to myself! I'll publish a hyperlink to this web page on my particular blog. I'm positive my site guests will come across that very useful.

Nice to become browsing your weblog once more, it continues to be months for me. Well this post that i've been waited for so long. I require this article to complete my assignment inside the college, and it has exact same subject with your write-up. Thanks, fantastic share.

Please tell me that youre heading to keep this up! Its so superior and so important. I cant wait to read far more from you. I just really feel like you know so considerably and know how to make people listen to what you have to say. This weblog is just too cool to become missed. Terrific things, really. Please, PLEASE keep it up!

Thanks for taking the time to discuss this, I really feel strongly about it and appreciate understanding extra on this topic. If possible, as you gain expertise, would you mind updating your weblog with extra facts? It's very useful for me.

you are really a good webmaster. The website loading speed is incredible. It seems that you're doing any unique trick. Also, The contents are masterpiece. you have done a fantastic job on this topic!

I would wish to thank you for that efforts you might have produced in writing this post. I am hoping the same greatest work from you inside the future as well. Actually your inventive writing skills has inspired me to start my own BlogEngine weblog now.

Great view I recently stumble your blog and have been reading along. I thought I would leave my introductory comment. I don’t know what tolet it be knownexcept that I have enjoyed reading. Exact blog. I will keep visiting this blog very many.

I thought it was going to be some boring old publish, but it really compensated for my time. I will submit a link to this web page on my blog. I am positive my guests will locate that extremely useful.

How is it that just anybody can create a weblog and get as popular as this? Its not like youve said anything extremely impressive --more like youve painted a quite picture about an issue that you know nothing about! I dont want to sound mean, here. But do you truly think that you can get away with adding some pretty pictures and not actually say anything?

I have to say this post was certainly informationrmative and contains useful content for enthusiastic visitors. I will definitely bookmark this website for future reference and further viewing. cheers a bunch for sharing this with us!

Thank you for an additional good post. Exactly where else could anyone get that kind of details in this kind of a ideal way of writing? I've a presentation subsequent week, and I am to the appear for these data.

Thought Provoking opinons...I will give this blog some thought!!!

This is by far the best looking site I’ve seen:D It was completely easy to navigate and it was easy to look for the information I needed!! awesome layout and great content! Every site should have that:)

Your thoughts on this issue is very interesting...I never would have come up with something like this!!

How do ya manage to create such a wonderful post...wonderful job!!!

How do you manage to come up such a excellent post...wonderful job!!!

コメントする

プロフィール

このブログ記事について

このページは、hideが2004年9月14日 22:10に書いたブログ記事です。

ひとつ前のブログ記事は「MovableTypeのPHP化」です。

次のブログ記事は「ファイルシステムをext3からext2へ戻す」です。

最近のコンテンツはインデックスページで見られます。過去に書かれたものはアーカイブのページで見られます。