::The Chilp blog::

Fresh from the Chilp Media Group

Archive for May, 2009

Maintenance work: 28.05.2009, 03.00-03.30 (GMT+1)

Dear all,

our provider informed us about an important network maintenance happening  on the 28th of May 2009 between 03.00 and 03.30 (GMT+1) which might cause brief interruptions.

These interruptions are indeed supposed to be very short and should not be longer than a few seconds.
Most Chilp it! users will not even notice these upgrades.
Well, if you’re running into timeouts feel free to try again after a few seconds.

We like to apologize in advance for any inconvenience this might cause.

Anyway, keep on shortening and have a fine day.

Cheers,
Zalt

Comments are off for this post

About:Blank

Random fact:

The short URL for “About:Blank” has been clicked a couple of hundred times.
The question is only: Why?

:-)

http://s.chilp.it/?b1135a

Comments are off for this post

Create short URLs on the fly with WordPress

Social media networks like Twitter.com are a fantastic way to share news, information or blog posts. Since every message has a maximum lenght of 140 characters the best way sharing links is with the help of URL shortening services.

This  php code adds a “Share this on Twitter” – shortcut to your WordPress site and helps creating short links on the fly.

Open your functions.php and paste this into the file:

function getchilpUrl($url) {
$chilpurl = file_get_contents(“http://chilp.it/api.php?url=”.$url);
return $chilpurl;
}

Paste this into your sidebar.php or wherever you like the link to appear:

<?php
$curl = getchilpUrl(get_permalink($post->ID));
echo ‘<a href=”http://twitter.com/home?status=I liked ‘.$curl.'” target=”_blank”><abbr title=”Share this on Twitter”>Share this on Twitter</abbr></a>’
?>

That’s it! :-)

The link will look like this:

share

It directs to Twitter and enables one to directly post that shorter link:

twitter

Feel free to use this script for developing other ways of integrating Chilp it! URL shortening into your website, blog or application. The script can also easily be  changed to support other social networks like Friendfeed or Facebook.

Have fun!

Comments are off for this post

Create short URLs with Google Docs

You may have the need to convert regular web addresses into shorter URLs within your docs automatically.
Get ready,  it’s fairly simple to setup and way easier than you think.

Log into Google Docs, create a new document or open an existing one and use the following formula for shortening:

=importData(concatenate(“http://chilp.it/api.php?url=”,A2))

Copy the formula and paste it into the fields you want to use.

You need to change the field “A2” to the corresponding long URL field. After entering the long URL in the chosen field, the magic happens and the formula creates a short URL.

Your done. Easy does it.

:-)

Let us know if you’re having trouble setting this up.

godocs2

Comments are off for this post