404Checkr – a fast and free bulk link checker

404checkr_logoThis article is dedicated once again to a small self-creation. So it’s about a little tool of mine, which I have created acouple of days ago, as in most cases, out of necessity. So I was recently looking for a opportunity to check a large list of links as easy as possible to identify the dead links out of it.
The initial situation
At least if you have to check 20 or more links for their validity by hand, you realize that ther must be a better and faster solution. Therefore I have written a small program in C#, which helps you to check as many links/urls as you like for their validity. I have named the tool “404Checkr”, whereby 404 refers to the HTTP statuscode 404, which says that a page/file could not be found.
What does the 404Checkr?
The 404Checkr can handle an […]

The Restart Page – restart as the whim takes you

Some time ago, Falk (who is also responsible for NetzBlogR.com) shared a link on Facebook to a site which got my attention. Although it’s a small site, it’s very entertaining. The page is called “The Restart Page” and does not more or less, than it’s title promises.
Currently 17 operating systems are offered. By clicking on the respective “Restart” button for the OS, a realistic restart animation/simulation is offered.
the_restart_page
Whether the whole thing makes sense and offers great value, I doubt it. But anyway it’s nice to see it and thus all got a great job at such a gray Sunday like today.
What I would find interesting: Did Apple’s Rhapsody really started such slow? Because if so, you could cook a barrel of coffee and install Windows x-times, until Rhapsody is started. Phew, I love my Windows 8 – cold booting […]

globalCompositeOperation copy fix – how to paint transparent on JS canvas

Below there is again a very special article. I think the people who are affected will understand what it is about. All others must be said that the next article will be for a wider audience again.
Some time ago I wrote an article about small progress bar script of mine, which is implemented entirely in JavaScript. Particular attention I had laid in part to the nice rounded corners. (See the following screenshot)
Javascript only Progressbar
Originally, I had realized the transparent corners using own paths, which I created and filled as shown below.

ctx.globalCompositeOperation = "copy";
ctx.fillStyle = "rgba(0,0,0,0.0)";
ctx.fill();

Unfortunately I had to recognize that the script was not working correct any longer. But the JavaScript console of different browsers (IE, FF, Chrome) curiously gave me no errors or warnings.
After some googling I found out that the globalCompositeOperation “copy” is not correctly implemented/supported anymore. […]

wpSuggest – find the right keywords for your WordPress articles

Google SuggestToday I want to present you a WordPress plugin once again. But let us start with a short introduction.
Google’s autocomplete feature called Google Suggest should be known by everyone who uses Google. (And that should probably be the most.)  It is really convenient if you do not have to type in the complete search phrase everytime, because Google already suggests, what you actually wanted to write/search.
However, Google Suggest offers even more. Because if you do not know which keywords you need to use exactly, or want to know what is popular, so you just type a few letters or a word and then Google is proposing all suitable or relevant search phrases. And here we come to the WordPress plugin, that I want to introduce you today.
Uwe Ramminger from seo4wp.de namely has developed a small WordPress plugin called […]