View Comments

Why I Love the TechCrunch Comments

From MG Siegler‘s post entitled “Social Profiling“:

picture-1Awesome.

As far as the post’s actual subject on the ridiculous number of social profiles we have out there, I have some thoughts on the matter since I have added to the mess to some degree.  I’ll try to make time to work something up later this week.

View Comments

Hell Yeah Bitch! .com is Rocking Disqus Comments Now

Since moving my personal blog to WordPress, I’ve found that is (2.5-2.6) is the first release of WordPress or MovableType that I’ve been really happy with…except for the commenting system.  It was boring, and had really no features and was a bitch to edit or play with because of the crazy WordPress code (that and the whole freaking reason I’m using WordPress is because I want to come home and NOT have to code a blogging platform!).

Disqus has been an option for a while, but the fact they “trap” your comments didn’t sit well with me.  Today they released their big 2.0 version, and finally I’m on board!  The comments pass through to WordPress, and I also get all the fancy Disqus features, all with the ease of a WordPress plugin.

Note to the Disqus guys: I would have loved this for ToastedRav.com but I’ve already written my own system that I like a lot…however, if you get your API up and documented, I or more likely other big sites in our corporate group could take a hard look at you for sites that don’t revolve around comments like ToastedRav does.  You gotta get that API up though, so I can recreate this great WordPress functionality in our custom environment!

Note: ALL of the old comments are missing until they are exported fully into the Disqus system.  Suck.  Hopefully it will be done and they will all come back soon.

View Comments

Six Apart Makes VideoComments Plugin Official

Our amazingly popular video comments and the associated Movable Type plugin got legitimized recently as the plugin is now listed on Six Apart’s ProNet Plugin Directory (Its in the Rich Media section).

It seemed more exciting before I wrote it.

Link: http://www.sixapart.com/pronet/plugins/plugin/video_comments.html

View Comments

Hell Yeah Bitch! .com Launches Video Comments

Think of it like a youTube at the end of every article. Starting…now! You can make a video of yourself and post it up on any of our articles to augment your written comment. This way I can see your face when you call me an asshole, or we can all see your body as you slowly strip down to nothing, thanking me for being so god damn awesome it makes your sexy girl-parts hurt. As that ideal situation still floats around your head, I do want to make that point that when posting video, we all expect to still have text to go along with it. Some don’t have flash, some don’t want to watch or hear your video, and some of us are blind, and although I assume all blind people eventually get super powers Daredevil-style, they probably still can’t see video on a computer screen. Your video should be there as a fun helper, not the whole statement. …unless you are making fun of blind people, then video is the way to go.

As far as instructions go, just go down and comment like usual and then after the comments, there is a new VIDEO option. Click Browse, upload your video and wait. You are uploading and encoding video so it can take a min or so. Be patient. Once the page refreshes, your video will be there. Watch it yourself and chuckle at your topical wit. Wait for people to tell you that your are wrong. If something breaks or sucks or you love it, let me know in the comments or any of these ways

A Note on Video Encoding:
For now, you can upload windows video (wmv) and quicktime video (mov) including H.264. However, if you are on a Mac and encoding your comment with H.264, you can’t use AAC audio as of this writing, but I’m working on this. The problem is, its very tough to get FFMPEG encoded as I need it while working within Dreamhost’s shared server rules.

Sadly there are restrictions. For one, please god don’t upload some obnoxiously long video of you putting different outfits on your cat. Size matters, but in the reverse way that women usually tell me it does. The smaller your video the better. These are meant to be quick, not epics, please keep that in mind. I’ll get in to a full on techplanation, including the code, later but for now I’ll tell you that, like youTube, all videos uploaded are converted to flash video for a variety of reasons. What does that mean? Well not every format is going to work, so try to stick with the basics: avi, wmv, mov. One last thing, I NEVER remove any written comments that aren’t spam, and I intend to keep it that way, however video leads down a path to possible copyright infringement, and although uploading other’s works is the exact opposite intent for my work, if someone does upload something that could get me sued, it will come down.

Other than that, try it out. I wanted to get the code running here for a day or two before I release the 1st version to the world at large, so help me test it and make something entertaining!

View Comments

Video Comments Movable Type Plugin

What?

This plugin allows a Movable Type blog to give the readers the chance to comments via video. The video is uploaded and encoded into flash video (like on youTube) and then displayed in the comments of an article with the use of an open source flash video player.

Requirements

This plugin isn’t as straight forward and many others. The reason is, you need to have FFMPEG installed on your websever in order to encode the video correctly. However, installing FFMPEG is only the beginning, because you can / should also compile FFMPEG with any number of extras in order to handle the myriad of different video types out there.

The Plugin File: videoComment.pl (Update: Dreamhost made some change with their servers, so I had to remove the .pl extension. Download the file at the updated link and add the .pl extension yourself. Sorry.)
FFMPEG: http://ffmpeg.mplayerhq.hu/
Flash Video Player: http://www.jeroenwijering.com/?item=Flash+Video+Player

Features

This first release features:

  • Upload and auto-encoding to a directory of your choice.
  • Zero code changes to any Movable Type scripts, just modify the comment form on your template.
  • Zero additions to the Movable Type database.
  • When a comment is deleted in the Movable Type interface, its associated video content and screenshot is removed automatically.

Demo

As of right now, no demo is available at Hell Yeah Bitch! .com. I will post on tonight, after Dreamhost fixes their network connectivity issues. (No use in demoing a video upload, with the speeds are this slow.)
Update: Dreamhost seems to have gotten us to move at least a little faster. You can now see a demo in the comments form of every post, but please use this article’s comments for discussion and testing.

Install

  1. Check to see if your web server or web host has FFMPEG installed and configured. If not, you will need to do this yourself or request that your system administrator install it for you. For help configuring and installing FFMPEG with all the video decoding ability your site needs, see http://ffmpeg.mplayerhq.hu/ and http://hellyeahbitch.com/archives/2006/09/081009
  2. Download the Flash Video Player, and “install” by putting the flash player file in the root of your web directory.
  3. Now, download the plugin file, and place it in your $MT_DIRECTORY/plugins directory
  4. Modify the plugin file at the top to set the directories that you want your video comments to reside and where the plugin should place the temporary files before they are deleted.
  5. Modify the HTML form in your comments template to accommodate the uploading of the video file. To do this, modify your form to this general example:
    [Your current form's contents]

    < input tabindex="6" name="video" type="file" / >
    [Submit button]
  6. Lastly, the plugin will give you two new tags for use in your comments templates. They are for use in between your tags. They are: < MTIfVideo >, <$MTShowVideo$>. The first is used to check to see if the comment being displayed has video content with it, the second is used to show said content. So in your comments showing area of your template, you would put something like

    < MTIfVideo >
    <$MTShowVideo$>
    < /MTIfVideo >

    After the rest of your comment tags.

  7. Your done.
  8. Like I said, its not as straight forward as most plugins are, but with a little work on the FFMPEG install, you can get your video comments working just fine.

Hopes and Dreams

- Hopefully Dreamhost will fix the problem tonight and I can post up a demo.
- Hopefully I will figure out how to install faad2 on my Dreamhost shared server account so that you can upload video with AAC encoded audio for use with the comment system.
- Hopefully I’ll get at least enough response and bug reports to tap out a new version sometime soon and possibly figure out a way to kill a few steps in the install process.

View Comments

Comments on the Mobile Blog Viewer

Some recent comments from bloggers on our Mobile Blog Viewer:
Craig Burton:

I received a comment about my efforts to create a mobile feed from my web site. Here is the comment.
Try this: http://hellyeahbitch.com/mobile Makes a mobile version of any site with a RSS feed, just plug in the URL. No logins or anything.
Wierd url but it seems to work. What can I say?

Doc Searls has the same quote on his blog today as well.

We also received a comment from Make Magazine’s Phil Torrone on his flickr post:

… – neat, thanks!

Phil Torrone thinks its neat. Seriously, thats awesome.

Its great to see such a simple thing with minimal options do as well as it is. I mentioned to Craig on his blog that if the level of traffic keeps this high, I might be moved to giving it its own “proper” domain name. We’ll see if the traffic stays this high, but either way, its cool to see people using it and giving good feedback.

View Comments

Does Anyone Really Ever Preview Their Comment?

Hell Yeah Bitch! .com has been around for a while now. Actually over 3 years is really long in Internet Time! (Which by the way is 3.33 years to every 1…which explains why we all say: “Dial up! I haven’t used that in a decade!”) During all this time, like everyone else, we have always had a “Preview” button next to the submit button on the comment form. Its always there on nearly every blog and forum, but doesn’t anyone really every use it? I don’t. The last time I remember using the Preview button is when someone made the first AJAX-y style Preview, and I gave that a whirl (Its wasn’t all that exciting if you were wondering), thats it. So answer me this fair readers: Do you use the “Preview” button on comment forms?

What reason is there to use it? Checking spelling / grammar seems to be the most common response, but that makes little to no sense since you can re-read what you wrote in the text field just as easily as you can on a preview page. I guess “seeing what the final product will look like” is a valid response, but since most places don’t allow much, or any use of HTML code in comments, its not going to look all that different than when you wrote it, and if it does, you won’t be able to do anything about it anyway. So is there a point? Do we need this? Do we want this? Will you feel naked with out the useless Preview button staring at you while writing a comment?

Let me know what you think, I’m interested in the seemingly un-interesting today.

View Comments

Is It Ok To Delete Comments On Your Blog?

Richard Brownell is calling out John Dvorak on … well a lot of things, but one that drew the particular interest of Robert Scoble was that Dvorak moderates (By moderate, I mean delete posted comments or moderating comments to prohibit posting.) comments on his blog posts. Scoble goes on to surmise that with the new “cool site” coComment, you could “out” the bloggers that delete comments because coComment caches everything independently from the site. Other than declaring yourself a complete lunatic by researching your past comments to see if any were deleted, I don’t see any other reason to “out” anyone for deleting comments. More than likely, they know they deleted or moderated a comment, and most importantly, its their blog and they can do whatever they want. Anyone that wants to “out” someone or berate them about how they run their blog, is wrong.

Many of the top bloggers are on crusade to make everyone know that blogging can be just as effective as Mainstream Media. They champion the idea that blogs are in fact under the constantly growing media umbrella and because of that assertation they acquired the mind set that all blogs must go about their business as a Mainstream Media publication. However, those assertations are completely wrong. There are many blogs out there that have risen above the crowd and placed themselves right up there with major news and discussion sources in our modern world. We all know them, and they have a name: “A-List Bloggers” Those blogs and their writers, have managed to separate themselves from the glut of other sites out there and because of that have gained some level of public trust. Whether or not they actually deserve it is not the issue. Some sites have adopted that trust and have taken on the characteristics of mainstream media: Reporting the facts, Doing the required research, or in the case of those that have comments: Not stifling any of the voices of their readership. This is great, and I people have clearly responded to those sites. The problem is that those readers, and in particular, those writers have decided that those added responsibilities should apply to ALL blogs. That is where I draw the line. Let me state this very clearly:

Blogs, by definition, can never be treated as a major news source, nor should they ever be, and their authors should never be held to the standards, or garner the protections, of a mainstream media author.

This is not to say that no blog can ever be treated as a reputable source for news and no blog author can be considered a “reporter,” but just because someone started a blog does not mean that they are obligated to be forthright, research all the facts, and never delete anyone comments. Its their blog, they pay for hosting, and can, quite frankly, can do and write whatever they please. If they wish to take on the added responsibility of research, reporting both sides, never deleting comments (or allowing them in the first place) then that is their choice, and I think most would thank them for taking the extra time and putting in the extra effort, but no one should berate or question those that do not wish to hold themselves to those standards. They can do whatever they want, you don’t have to read them.

To Robert Scoble, to Richard Brownell, and to anyone else that agrees with them: We appreciate that you go the extra mile for your work on your blog, like many of us do, but stop dictating what others should do on their blogs and lets not think of McCarthian ways to “out” people for the way they operate their own blogs. However, if you want to talk about it, feel free to leave a comment here (I won’t delete it), link to this in your rebuttal, or send me an email. All comments and thoughts are, of course and like always, welcome.

Note: In case you were wondering, I don’t delete comments and I try my best to reply to any that question any aspect of this site. But we do reserve the right to stop comments on a particular article if the conversation is going nowhere or has little or no connection with the topic at hand. For proof of all of the above see the endless comments on this little peice I wrote a while back

View Comments

Learn How To Comment on a Site

I realize that no one really comments much on here. I always thought that it was because I say everything so wonderfully and completely that there is nothing for anyone else to add…or this site sucks. Turns out I was wrong on both counts! Maybe no one comments on any posts (other than the infamous Armstrong article of course) because no one knows how to do it correctly.

Lifehacker to the rescue with their post: Lifehacker’s guide to weblog comments
Here’s a quick tidbit from the article that I hope everyone out there starts following. It doesn’t happen on this site, but it happens a lot of other places and it is annoying as hell.

Don’t comment for the sake of commenting.

Commenters who only say “First!” or “Nice site” on an open thread have no business hitting that “Post” button at all. Further, only spammers comment for the sake of adding their name and URL to a web page. Useless comments will gain you the reputation for being a useless commenter.

Go read the article, empower yourself with the knowledge of how to comment correctly, then forget it and run out there and get as many “First Post!” comments you can get!