The Mona Information Technology Services (MITS) Department of the University of West Indies (UWI) has decided to charge for .jm domains.
I am happy for this so long as it results in better service, including quicker turnaround time. However I find this statement in the article puzzling.
"The charge for .jm would remain competitive with international rates, as low as US$35 ($2,310) per year, said Samuels."
Internationally the highest rates are US$35 per year in most jurisdictions while costs can be as low as US$2 per year, if not less.
I would like some clarification on this.
There is another statement that is also interesting, although I am not sure they can actually do it what it says. The actual statement of interest is "analysing 'hits' to a given website". The full statement is below.
"Besides registering and administering all .jm domain names, MITS also conducts website research including domain name searches and analysing 'hits' to a given website."
Again clarification on this would be good. Privacy invasion.
Web related issues such as design, programming, search engine optimisation, database, revenue generation, streaming. This is also my area to give back to the internet community that has given me so much.
Wednesday, August 30, 2006
Thursday, August 24, 2006
Minimum Character length and MySQL Full Text
Every now and then you come across some nusiance
Mysql Full Text search is lovely but it has some weaknesses. One of which is its Minimum Character length requiremnet.
Happily, the fix is fairly easy if you have access to the .cnf file
Changing the Minimum Character length
1. check what .ini/.cnf your mysql is reading
2. change your my.ini/.cnf like this:
[mysqld]
ft_min_word_len=3
ft_stopword_file="C:\\MySQL\\stop.txt"
3. restart your mysqld
4. reindex your table using REPAIR TABLE tbl_name QUICK;
Useful Resources
http://dev.mysql.com/doc/refman/4.1/en/fulltext-query-expansion.html
http://dev.mysql.com/doc/refman/4.1/en/fulltext-search.html
http://mysql.com/doc/refman/5.0/en/fulltext-search.html
http://dev.mysql.com/tech-resources/articles/full-text-revealed.html
OThers
http://jeremy.zawodny.com/blog/archives/000576.html
http://mysql.com/doc/refman/5.0/en/fulltext-stopwords.html
http://www.onlamp.com/pub/a/onlamp/2003/06/26/fulltext.html
Mysql Full Text search is lovely but it has some weaknesses. One of which is its Minimum Character length requiremnet.
Happily, the fix is fairly easy if you have access to the .cnf file
Changing the Minimum Character length
1. check what .ini/.cnf your mysql is reading
2. change your my.ini/.cnf like this:
[mysqld]
ft_min_word_len=3
ft_stopword_file="C:\\MySQL\\stop.txt"
3. restart your mysqld
4. reindex your table using REPAIR TABLE tbl_name QUICK;
Useful Resources
http://dev.mysql.com/doc/refman/4.1/en/fulltext-query-expansion.html
http://dev.mysql.com/doc/refman/4.1/en/fulltext-search.html
http://mysql.com/doc/refman/5.0/en/fulltext-search.html
http://dev.mysql.com/tech-resources/articles/full-text-revealed.html
OThers
http://jeremy.zawodny.com/blog/archives/000576.html
http://mysql.com/doc/refman/5.0/en/fulltext-stopwords.html
http://www.onlamp.com/pub/a/onlamp/2003/06/26/fulltext.html
Subscribe to:
Posts (Atom)
Generate PFX file using OPENSSL on Windows
Had a situation where a client needed a PFX with password for a particular setup. This is something I have not done before, so here are the ...