Archive

Archive for the ‘Blog Adventures’ Category

Blog Traffic With BlogMad

December 22nd, 2005 ^Lestat 2 comments

A new service is about to launch similar to the services of Blog Explosion. I’m not quite sure what’s all involved in it. They are allowing free signups right now before the launch, promising credits before the launch. I’ll give it a go and report on it. Click the banner to get in now.

BlogMad!

BlogMad, Blog Traffic

Categories: Blog Adventures, General Site Maint Tags:

Add a puzzle to your site

December 20th, 2005 ^Lestat 1 comment

Thanks to TDavid for finding this cool game at Custom Quizilla!. Have a little fun with this Blog Explosion Puzzle. It’s real easy. You can upload an image, or link to one if you like. Fill in the blanks, and viola! They give you the code to paste!

Puzzle

WP Spam Comment Plugin

December 17th, 2005 ^Lestat 6 comments

So I gave the Battle of the blogs a go over at BlogExplosion. IT was fun. I won some, and lost some. The cool thing was that it definately brought traffic my way. The bad news is that it brought traffic my way. Saturday morning when I logged in, I found 79 comments waiting for moderation. Each and every one was spam. I’ve had comments like that before, but not 79 of them!! It was time for action!

I downloaded and installed Spam Karma 2.0. The install was pretty typical. Unzip the package, and install it in your plugins folder. Then access, and activate it in the plugins screen of the WP manager. I noticed it listed all previous comments that I marked as spam, the date it occurred, and the comment. Honestly, it’s way over my head… but all Iknow is that for now, it works.

Wordpress plugins, comment spam

Book Publishers Sue Google

October 20th, 2005 ^Lestat 2 comments

From InternetWeek

Google Inc. on Wednesday was sued by a major publishing association for digitizing library books without the permissions of copyright holders, the second such suit filed against the search engine giant

I didn’t even know about Google Print(Still in Beta) until I read this. So I went and checked it out. It pretty much looks and works like the google web search, except it searches for books.

I thought I would give it a run. I typed in ‘cats’. The usual list pops up including a color photo of the front cover of each book. I randomly chose a book about why cats paint. (Didn’t know they could). From there I could see a few pages. Table of contents, and a couple of other pages. From there you could search even deeper into the book. I typed in ‘color’. I was presented with about 10 links to several pages within the book. After being prompted to login with my google account, each link would show me a page, and a page or 2 forward or backward in the book. I’m not sure how far is too far with copyrighted content.

They do reference the author, the publisher, and a few links to where one could buy the book. I can only imagine that they have the permission of the publishers and authors. It is duly noted on this page:

Library books still in copyright: For books that we have scanned from a library which are still in copyright, you will only be able to view the bibliographic information and a few short sentences of text around your search term.

I seriously doubt that google wouldn’t have covered those bases before they attempted this endeavor.

I wrote an entry about a similar service called codefetch{ that allows you to search for books on programming code. These also would show a few excerpts of each authors pages. (A handy tool BTW!).

If anything you would think authors might even persue google, to plan how and what content would be shown. What a great way to advertise, and get books sold!

I’m thinking we haven’t seen the end of this topic, or copyright rules and laws.

google, google print, lawsuit, publisher, books, internet

Categories: Computing, General Site Maint, Internet Tags:

Plugin: Add Dynamic php Inside Posts

October 20th, 2005 ^Lestat No comments

I found a simple plugin for WordPress called Exec Plugin from Priyadi’s Place. It will allow you to add dynamic php to your posts. Download the .txt file. Change the extension to .php and upload it to your wp-content/plugins dir. Use the Word plugin manager to activate it and off you go.

To use php in your posts just use the tags <phpcode> and </phpcode>. Then code away inside of there as if it were your favorite text editor. eg:


< ?php
$var = 'hello world';

print("$var"); 

if($var){
include("somefile.php" /* or ANY php parsable file extension*/);
}
?>

Pretty simple! I used it to include() an index page of links for my hurricane chronicles.

Exec Plugin

WordPress, plugin, php, code, snippet,

Categories: Blog Adventures, Plugins, Wordpress Tags: