Short URLs
When using twitter, or other mobile devices where space is a premium, it is quite common to use shortened URLs. Many people will not be keen on typing http://www.openstreetmap.org/?lat=51.5073&lon=-0.1278&zoom=14&layers=M, and will prefer something like http://osm.org/go/euu4gY@w- instead 1.
The URLs for my articles are automatically generated from the title. There is a little function that uses translit's transliterate() function to ASCII-ify the titles. It transforms for example "pfcongrez, P2P Конференция, php|tek, PHP Vikinger, DPC and eZ Conference and Awards" to "pfcongrez-p2p-konferenciya-phptek-php-vikinger-dpc-and-ez-conference-and-awards" with code similar to:
$titleShort = transliterate( $fullTitle,
array(
'cyrillic_transliterate', 'lowercase_latin',
'normalize_ligature', 'diacritical_remove',
'normalize_punctuation', 'remove_punctuation',
'spaces_to_underscore', 'compact_underscores'
),
'utf8', 'us-ascii'
);
However, http://derickrethans.nl/pfcongrez-p2p-konferenciya-phptek-php-vikinger-dpc-and-ez-conference-and-awards.html is hardly a short URL. What we want is something short and descriptive. First of all, I thought it would work to generate short URLs automatically, following the following algorithm:
-
Strip out all chars that are not
A-Z,a-z,0-9,., space and-. -
Split the title up in words, splitting on space.
-
If the sanitized URL is shorter than 14 chars: join the words back together with a "-", otherwise:
-
Loop over each word, replacing each word with the first letter of the word, unless it is one of the important words (such as "php" or "xdebug").
-
Add a marker for the date, to ensure that short URLs are unique. The date marker is generated like:
-
Format the date as
two digit year,ISO weekandISO weekday -
Convert the created number to base 36 with:
php -r "echo date_create( '20090410' )->format( 'yWN' );" 09155 php -r 'echo base_convert("09155", 10, 36), "\n";' 72b -
Our long title from above, then turns into pp-p-php-vdaecaa-72b. Although relatively short, it is still not a descriptive URL. To be honest, it's a bit difficult to come up with a short, descriptive URL for this title, so let us examine another one, of a more recent post.
The title "64-bit integers in MongoDB" is converted into "6iim-7yp", which is again short, but not very informative; and "Xdebug 2.1 Released" is converted into "xdebug-2.1-7x2", which does make sense.
Because I did not get very good results with automatically converting titles into sort URLs, I decided that for all new articles I will just define my own.
Now, once we have the short URLs, they need to be used. Instead of my long main domain http://derickrethans.nl, I registered a new one just for short URLs: https://drck.me to reduce the URL length even more. For the current article, the length of the URL shrinks from 39 to 26 characters. The short URL is also embedded in the HTML source with a rev=canonical tag and a rel=shortlink tag, such as:
<link rev="canonical" type="text/html" href="https://drck.me/shrturl-8ju"> <link rel="shortlink" type="text/html" href="https://drck.me/shrturl-8ju">
This tag is meant to provide alternative URLs for the current one. For more information on rev=canonical see http://revcanonical.appspot.com/ or Chris Shiflett's entry, and for rel=shortlink see the microformats site. The shortlink specification also recommends the use of the HTTP Link: header:
Link: <https://drck.me/shrturl-8ju>; rel=shortlink
The two tags and the HTTP header make it possible for services that prefer an as short as possible URL to automatically discover a shorter version. Sadly, it doesn't see that the twitter home page does this. I hope they will add support for that in the future. From my side, I am going to implement this in Haunt, my twitter client build in PHP-GTK.
Comments
I made an extension for Habari the other week that does this, but it embeds it in the source using link rel="shortlink" instead, which based on my research at the time was the way forward. I might be wrong, though!
@Michael: Thanks! I was not aware of that. I've added both rel=shortlink and the Link: HTTP header to the post, as well as to the software running this website.
-
1
This actually uses a very clever form of shortening geo-locations: http://wiki.openstreetmap.org/wiki/Shortlink
Life Line
I've finished reading This Way Up. It's about maps, that went wrong.
It's a good read, but htyerr were several chapters that were written in a novel way (as a video transcript, a series of letters), and I found distracting from the a tail content. It'll have worked better in a produced video.
No mention of @openstreetmap though :-(
Updated a bench
Created a tree; Updated 3 humps and a waste_basket
The Early Cormorant Catches the Eel
Sorry, not the best photo! But I caught this Cormorant catching this large eel when looking for Bank Swallows, right next to Eel Pie Island in the Thames.
#Birds #BirdPhotography #BirdsOfMastodon #Photography #London
Updated an estate_agent office
I went to my nieces' birthday party yesterday.
The theme was pink, and that included all the food, mostly died with beet root.
Shock and horror this morning when doing number two. Not only was my turd dark red, it was also glittering at me. Apparently the carrot cake had edible glitter...
So now I know what's worse than glitter.
😂 ✨ 💩 🟣Long-Tailed Tit on a Branch with Lichen
I've been spending some time in random London local nature reserves.
Sitting and listening, and in fifteen minutes you spot countless species.
This one was in Ham Lands Local Nature Reserve near Teddington.
#london #BirdPhotogaphy #BirdsOfMastodon #Birds #LichenSubscribe
A Colourful Mandarin
In The Long Water in Kensington Palace Gardens, London.
Created 7 benches
Created 2 benches
Created a bench
I walked 7.3km in 2h28m39s
Added a note about a duplicate Papersmiths
I walked 4.1km in 49m02s
Fixed website
fix typo
Updated a bench
I walked 1.6km in 20m26s
I walked 1.1km in 11m49s
The Yellow Eye
A blue heron's head, with its very yellow stare-y eye.
#BirdPhotography #Photography #BirdsOfFediverse #BirdsOfMastodon #London
My little Lego box is telling me it really is quite warm outside.
Created a bicycle_parking and a crossing
I walked 3.3km in 41m56s








Shortlink
This article has a short URL available: https://drck.me/shrturl-8ju