Probably the most interesting thing, about domain extensions, are the activities of the supporting communities of the domain extensions.
It basically does not matter, how your domain extension looks like, for it to be successful:
What depends and matters, is how it is promoted.
Follow the history of .com, and you will understand, how and why it got strong and popular.
You can follow the history of promotion and forum-support of any domain extension, and you might be able to discover parallels of smart endeavours, time (-line) and success. (Only love, provided by a fan community, is not enough, to make a domain extension succesfull. See .mobi, for example. It is viable, respectively still alive, because of the love it gets, but to be able to be sucessful, it will need some more support, by the powerful companies, that are supposed to be backing it up. And so, same with .tel...)
Basically, it is always common sense, that saves you, a project, or anything in progress that happen to be in a awkward situation.
What counts, are costly and smart pomoting, time and common sense, that must always be used.
The non usage of common sense and brains, it the death to anything.
The non usage of money, won't help promote, because promoting costs.
The cultivation of plein stupidity may be bad, in times, may be good in other times, because people are sometimes stupid, and trained by media and advertising, not to think, but only to consume, what is offered. The language of stupidity is a language, mankind has learned over the years, and understands. Whatever way you are able to make your self understood: You can earn money, if people understand, what you are selling.
The mixture, of intelligence, stupidity, sex, common sense, etc., is what sells.
Try to sell a perfect and usefull product, only by explaining how it functions, and for it is good: Consumers are not used, only to get dry facts served. They are spoiled, and used to get a daily dosis of adverts, that contain sex, crazyness, stunning effects, etc., and where they do not have to think, but only consume.
And now, here you are with the dot tel domain, in our world today: How are you going to sell it?
The „Love Train“ was popular, because it is funny and sexy, and only explained a minimum of the technology, idea, and features about .tel.
If you will, the „Love Train“ is a promotion video for dummies, that just want a good lough, and some sexual stimulation. Well, the „Love Train“ did the trick, and worked for a short while, and only for a few.
But who are the consumers of .tel?...: All sorts of people and groups. Speak to them (and about their needs and dreams) individually. Make ten completly different videos, addressed to ten different groups of consumers...
.
Anyway:
Here is the code for implementing the (premium qualitiy version of the) video within your blog (however, it is still a stunner and a eye catcher, and nevertheless, a lot of fun):
(Just copy and paste...):
.
.
Wednesday, 30 December 2009
Monday, 28 December 2009
How to place advertising with Perl and WebService-Telnic module (Solution for Linux and Mac OS)

Telnic forum. Thread about advertising within .tel, for Linux and Mac OS:
Quote:
It looks like WebService-Telnic module from Peter Makholm is working.
Here is small KNOW-HOW, on how to place advertising on Dot Tel domain by using Perl, although part is hand made, part with Perl.
1. Use the supplied small script, where you will change on bottom the advertising title, URL, description and position priorities.
2. Run the script like this:
perl tel-putads2.pl -domain=yourdomainhere.tel -user=Z12345678 -pass=123pass111
Soon, you will be enjoying the placement of advertising on your Dot Tel, like here shown http://adresar.tel
If you need help, let me know, and I can help you on this simple task.
I don't know, but for some reason I really like Dot Tel. It has search engine power, and most of all, you don't need nothing but domain to run it.
-------------------
Who is on Mac or Linux, opens up terminal, and run the updated script attached below like this:
perl tel-putads2.pl -domain=example.tel -user=MyNameHere -pass=Incorrect -adtitle="Here comes the Blue Title" -adgreen="www.greenurl.com" -adurl="http://www.example.com" -addesc="Text description with not that much text." -position=bottom
This is not run over website. It is run locally on the computer. This script does not delete previous ads, it simply ads new advertising. Position can be specified as top, bottom or right.
--------------------
#!/usr/bin/perl
use strict;
use warnings;
use WebService::Telnic::Client;
use WebService::Telnic::Client::RR;
use List::Util qw(shuffle);
use Getopt::Long;
my ($endpoint, $domain, $user, $pass);
GetOptions(
'endpoint=s' => \$endpoint,
'domain=s' => \$domain,
'user=s' => \$user,
'pass=s' => \$pass,
);
die 'domain, user, and pass is all needed' unless
$domain && $user && $pass;
my $client = WebService::Telnic::Client->new(
endpoint => $endpoint,
domain => $domain,
user => $user,
pass => $pass,
);
my $qotd;
$qotd = WebService::Telnic::Client::RR->new(
type => 'TXT',
name => $domain,
owner => '_ad'
);
# Net::DNS::RR::TXT doesn't have a nice accessor?
$qotd->{'char_str_list'} = [
".tad", "1", "1", "1", "Thetabiz™ Offshore Services", "www.offshore-services.biz", "uri", "http://www.offshore-services.biz", "desc", "Global corporate registration provider with banking and financial resources."
];
$client->storeRecord($qotd);
-------------------------------------------
------------------------
#!/usr/bin/perl
use strict;
use warnings;
use WebService::Telnic::Client;
use WebService::Telnic::Client::RR;
use List::Util qw(shuffle);
use Getopt::Long;
my ($endpoint, $domain, $user, $pass, $adtitle, $adgreen, $adurl, $addesc, $position, $priority);
GetOptions(
'endpoint=s' => \$endpoint,
'domain=s' => \$domain,
'user=s' => \$user,
'pass=s' => \$pass,
'adtitle=s' => \$adtitle,
'adgreen=s' => \$adgreen,
'adurl=s' => \$adurl,
'addesc=s' => \$addesc,
'position=s' => \$position,
'priority=s' => \$priority
);
die 'domain, user, and pass is all needed' unless
$domain && $user && $pass;
if($position) {
unless($position ne 'top' or $position ne 'bottom' or $position ne 'right') {
die "Position not defined.\n";
} else {
if($position eq 'top') { $position = 1; }
if($position eq 'right') { $position = 2; }
if($position eq 'bottom') { $position = 3; }
}
} else {
$position = '1';
}
if($priority) {
unless($priority > 0 ) {
die "Priority not defined.\n";
}
} else {
$priority = '1';
}
my $client = WebService::Telnic::Client->new(
endpoint => $endpoint,
domain => $domain,
user => $user,
pass => $pass,
);
my $advert;
$advert = WebService::Telnic::Client::RR->new(
type => 'TXT',
name => $domain,
owner => '_ad'
);
print ".tad 1 $position $priority $adtitle $adgreen uri $adurl desc $addesc\n";
# Net::DNS::RR::TXT doesn't have a nice accessor?
$advert->{'char_str_list'} = [
".tad", "1", $position, $priority, $adtitle, $adgreen, "uri", $adurl, "desc", $addesc
];
$client->storeRecord($advert);
------------------------------------------
Source:
Telnic forum:
http://www.telnic.com/forum/showthread.php?t=464
.
.
Wednesday, 9 December 2009
Saturday, 5 December 2009
.Tel promotion via brick and mortar businesses
I think, that promoting the dot tel Internet domain, would work best, through brick and mortar businesses.
Especially via the mobile phone industry.
What is a brick and mortar business?:
Quote Wikipedia:
"Brick and mortar (B&M) refers to a company that possesses a building or store for operations[1]. The name is a metonym derived from the traditional building materials associated with physical buildings – bricks and mortar – in contrast with online stores, which have no physical presence.
In the jargon of eCommerce, brick and mortar businesses are companies that have a physical presence — a physical store — and offer face-to-face consumer experiences. This term is usually used to contrast with a transitory business or an internet-only presence, such as an online shop. An example would be the movie-rental shop Blockbuster Video, which has physical stores and is in competition with the newer online rental services offered by Netflix."
Why B&M, and not the Internet?:
The strongest and widest spread promotion for the dot tel domain had been done by registrars: Just google for .tel, and you can see, what I mean ("dot tel", or "dot tel domain", etc.).
But looking at most of that information and and most of those web pages, show, that the information is outdated.
B&M promotion can't get outdated. Because such a sales promotion has a beginning and a end.
Wheras Google only got cluttered up with old .tel information.
And still now: It is hard to separate the newest .tel info from the old .tel info, from a year, or nearly a year ago.
Basically anybody with a B&M shop presence could do .tel promotion, which would be much more effective, than most attempts to set up a website promotion on the web.
Financially spoken: Every sort of .tel promotion, that takes place online, will have a high opportunity cost, compared with promoting .tel offline.
Opportunity cost can be conceptualized as the amount of money one could have made by making a different promotion decision.
The difference between the value of the decision you did make and the value of the alternative is the opportunity cost.
In other words: We are loosing a lot of money, by not promoting the dot tel domain in a different way (offline, instead of online).
And so, therefor, promoting a product the right way, is about earning a lot of money.
Money and value, that would be simply lost, by staying with the old promotion concept.
About opportunity cost:
http://financial-dictionary.thefreedictionary.com/Alternative+cost
Further more, we would have to declutter Google, and delete all the outdated .tel info and promotion.
Respectively, tell all registrars and resellers, to either delete the old info, or to update their .tel promo pages.
Conclusion:
Tel promotion via brick and mortar businesses, and decluttering Google from outdated .tel info, would show significant and stunning results.
And: If we do not do it, we will continue loosing a lot of money in the mid and long term (opportunity cost).
Doing nothing, or spending a lot of money for online .tel promotion, is false economy.
.
Especially via the mobile phone industry.
What is a brick and mortar business?:
Quote Wikipedia:
"Brick and mortar (B&M) refers to a company that possesses a building or store for operations[1]. The name is a metonym derived from the traditional building materials associated with physical buildings – bricks and mortar – in contrast with online stores, which have no physical presence.
In the jargon of eCommerce, brick and mortar businesses are companies that have a physical presence — a physical store — and offer face-to-face consumer experiences. This term is usually used to contrast with a transitory business or an internet-only presence, such as an online shop. An example would be the movie-rental shop Blockbuster Video, which has physical stores and is in competition with the newer online rental services offered by Netflix."
Why B&M, and not the Internet?:
The strongest and widest spread promotion for the dot tel domain had been done by registrars: Just google for .tel, and you can see, what I mean ("dot tel", or "dot tel domain", etc.).
But looking at most of that information and and most of those web pages, show, that the information is outdated.
B&M promotion can't get outdated. Because such a sales promotion has a beginning and a end.
Wheras Google only got cluttered up with old .tel information.
And still now: It is hard to separate the newest .tel info from the old .tel info, from a year, or nearly a year ago.
Basically anybody with a B&M shop presence could do .tel promotion, which would be much more effective, than most attempts to set up a website promotion on the web.
Financially spoken: Every sort of .tel promotion, that takes place online, will have a high opportunity cost, compared with promoting .tel offline.
Opportunity cost can be conceptualized as the amount of money one could have made by making a different promotion decision.
The difference between the value of the decision you did make and the value of the alternative is the opportunity cost.
In other words: We are loosing a lot of money, by not promoting the dot tel domain in a different way (offline, instead of online).
And so, therefor, promoting a product the right way, is about earning a lot of money.
Money and value, that would be simply lost, by staying with the old promotion concept.
About opportunity cost:
http://financial-dictionary.thefreedictionary.com/Alternative+cost
Further more, we would have to declutter Google, and delete all the outdated .tel info and promotion.
Respectively, tell all registrars and resellers, to either delete the old info, or to update their .tel promo pages.
Conclusion:
Tel promotion via brick and mortar businesses, and decluttering Google from outdated .tel info, would show significant and stunning results.
And: If we do not do it, we will continue loosing a lot of money in the mid and long term (opportunity cost).
Doing nothing, or spending a lot of money for online .tel promotion, is false economy.
.
Friday, 2 October 2009
3 (.com) + 3 (.tel) = 18 possible .com pageviews:
3 (.com) + 3 (.tel) = 18 possible .com pageviews:
All businesses, who have a .tel domain, won't only have a .tel.
They will be using their .tel to point to their .com.
.Tel is only the working donkey, who directs the clients to the .com website.
If you have got a .com, you can set up a few donkeys: "i-aaaaa, ii-aaaa-iii-aaaaa...": One donkey is good, three donkeys, are even better:
Example:
fruitdish.com
fruitdish.tel (donkey directing to fruitdish.com)
allsortsfruit.tel (donkey2 directing to fruitdish.com)
fruitland.tel (donkey3 directing to fruitdish.com)
.
:blink:
.
If you wanna be big biz:
Get:
allsortsfruit.com
fruitland.com
And teach your positioned donkeys to direct to those websites as well (by adding them to your .tel's)
.
Conclusion:
If you got a few biz websites, get a few .tel's, and direct-direct (matching domain names), and cross-direct to your .com's (non-matching domain names).
.
If you where able to follow me: Here is another szenario:
Ok:
You have the tree (.com)'s, as well as the three (.tel)'s, and can do:
3 times direct-direct to .com's.
2 times cross-direct
antother 2 times cross-direct
and anoter 2 times cross-direct
That is pointing to three .com's: 9 times. By using three tel's.
Anyway:
You can set up more pointers:
How?:
Put a "Contact Us" .tel page, on each .com website:
This way, you simply repeat the szenario:
3 times direct-direct to .com's.
2 times cross-direct
antother 2 times cross-direct
and anoter 2 times cross-direct
And get totally 18 pointers to your three .com websites.
Take away 3 self pointers, and you got 15 useful pointers.
Conclusion:
By using "Contact Us" .tel pages, you can double your number of pointer links.
.
Recapitulation:
To get 15 pointer links, you have:
3 .com websites
3 .tel webpages
3. "Contact Us" .tel pages on the three existing websites.
Which give you: 3 direct hits, and 15 indirect pointer hits to .com websites, and a total of 18 posibilities to click on your 3 .com domains (here, you have 6 domains and 18 possibilities to get a click to one of your 3 .com websites.).
Without 3 .tel domains, you would only get 3 direct hits, instead of 18 hits to your 3 .com domains.
All businesses, who have a .tel domain, won't only have a .tel.
They will be using their .tel to point to their .com.
.Tel is only the working donkey, who directs the clients to the .com website.
If you have got a .com, you can set up a few donkeys: "i-aaaaa, ii-aaaa-iii-aaaaa...": One donkey is good, three donkeys, are even better:
Example:
fruitdish.com
fruitdish.tel (donkey directing to fruitdish.com)
allsortsfruit.tel (donkey2 directing to fruitdish.com)
fruitland.tel (donkey3 directing to fruitdish.com)
.
:blink:
.
If you wanna be big biz:
Get:
allsortsfruit.com
fruitland.com
And teach your positioned donkeys to direct to those websites as well (by adding them to your .tel's)
.
Conclusion:
If you got a few biz websites, get a few .tel's, and direct-direct (matching domain names), and cross-direct to your .com's (non-matching domain names).
.
If you where able to follow me: Here is another szenario:
Ok:
You have the tree (.com)'s, as well as the three (.tel)'s, and can do:
3 times direct-direct to .com's.
2 times cross-direct
antother 2 times cross-direct
and anoter 2 times cross-direct
That is pointing to three .com's: 9 times. By using three tel's.
Anyway:
You can set up more pointers:
How?:
Put a "Contact Us" .tel page, on each .com website:
This way, you simply repeat the szenario:
3 times direct-direct to .com's.
2 times cross-direct
antother 2 times cross-direct
and anoter 2 times cross-direct
And get totally 18 pointers to your three .com websites.
Take away 3 self pointers, and you got 15 useful pointers.
Conclusion:
By using "Contact Us" .tel pages, you can double your number of pointer links.
.
Recapitulation:
To get 15 pointer links, you have:
3 .com websites
3 .tel webpages
3. "Contact Us" .tel pages on the three existing websites.
Which give you: 3 direct hits, and 15 indirect pointer hits to .com websites, and a total of 18 posibilities to click on your 3 .com domains (here, you have 6 domains and 18 possibilities to get a click to one of your 3 .com websites.).
Without 3 .tel domains, you would only get 3 direct hits, instead of 18 hits to your 3 .com domains.
Wednesday, 30 September 2009
Saturday, 26 September 2009
New dashboard features for controlling your .tel domain
New function for the folder part of the .tel dashboard:
Changing names of subdomains:
Excursion:
About foders:
Folders functionality expands the navigation capability of your .tel domain.
If you have a lot of contact points, you probably want to spread them on several pages. This will provide a better visibility of your contact details in mobile devices with small displays. In this case, you should use the Folders option to logically group the contact information – like business details, favorite links, social media sites, professional information and more.
Technically, a folder is a sub-domain of your .tel domain. You can set a direct link to it.
Entering your folder name:
Enter the folder name. You can enter only letters, digits and hyphens in the subfolder name. A subfolder must contain at least one letter and its minimum length is 3 characters. The links to the folder in a browser will have initial capital letters and any hyphens will be converted to spaces. For example "my-business" will be visualized as "My Business". Once you are ready click on the Save button.
The Dashboard will only show the first level of sub-folders. If you want to view a deeper folder level, click on the corresponding subfolder. The contact information under the subfolders can be managed in the same way as under the main fodler.
End of Excursion.
Telnic has included a few more functions for de folders part of the dashboard:
They are only minor changes, but they can simplyfie handling nevertheless.
One is now able to change the the names of the subdomains at one single area of the dashboard.
When you hover with the mouse over the list of subdomains, you get to see icons, such a a pencil and a waste bin, with which you are able to do the different tasks.
You have to be very careful, with the deleting function:
In order to delete a folder, hover the mouse over its name and click on the Delete link. By deleting a folder you will permanently remove all of its sub-folders, the contact details and the corresponding items.
Accidentically deleting can have some serious consequenses...
Therefore, it would be wise, to have backuped the .tel domain before (for example, by using the .tel tool tel-machine, and its backup function).
New function for the .tel dashboard:
Changing the title of your .tel domain:
Till now, the domain name on the TelProxy of a .tel domain was quasi „given“, and pre configured, and corresponded with the name of the domain.
Now you are able to customise that title/name, and have 255 characters provided.
Which allows you to make a extensive title for your TelProxy.
According to the complexity of your title, the font size will be automatically adapted.
For each 10 character words, there will oviously be a own CSS tag: One for maximum 10 characters, one for 20 characters, one for 30 characters, and so forth...
The longer the title, the more the font size shrinks,
Furthermore, there will be implemented a sub title, with the same name, as your domain name.
Because the title of a TelProxy is important for search engines, as well: with this possibility, you have another SEO option, respectively, more SEO potential.
New function for the .tel dashboard:
New contact types:
The list of contact types, has been extended, as well, here:
Telnic only mentioned, that there is a new type of „user“...:
With this option, one should be able to, for example, deposit his username for online services or games, and can add a short comment, as well.
I did notice, when I over saw eveything, that there is also a typ, so called „Info“: Either, I had over seen that, up and till now, or it had been added, as new, as well.
For me, this typ is so far of interest, because one can integrate further text in to a .tel domain, with this. This text (maximum 255 characters) can be displayed on the TelProxy, according to your preferences.
With this feature, you have another option: next to integrating keywords, to integrate text on the TelPoxy.
Subscribe to:
Posts (Atom)













