Posted in Uncategorized | June 18th, 2010 3 Comments »
Here you are how to install libextractor 0.6.x on FreeBSD:
1. Make sure you have libtool updated to the version 2.2.6b (/usr/ports/devel/libtool22)
2. Then execute this command in the root of libextractor 0.6.x distribution:
CFLAGS="-I/usr/local/include" ./configure --with-ltdl-include=/usr/local/include \
--with-ltdl-lib=/usr/local/lib
3. Run make && make install as usual.
Popularity: 4%
Posted in Algorithms and technologies | May 9th, 2010 3 Comments »
My solution for Problem C “Theme Park” of Google Code Jam 2010 qualification round (in C language):
Read the rest of this entry »
Popularity: 6%
Posted in Internet | March 16th, 2010 4 Comments »
At first sight, the home page of memoid.ru looks similar to those less than ordinary news aggregation sites which collect and group news headlines and then lead you to a page with news text accepted via RSS or other syndication protocol.
But a landing page of memoid.ru is appended by an encyclopaedic article which gives additional information about the main topic of the news. According to the rumours came from project owners, the “Poiskovye Tekhnologye” (The Technologies of Search) company, which is partially owned by Ashmanov & Partners company, well known for their antagonism to the Wikipedia, these academic articles are written by expects in their field and corrected by professional editors, both yet unknown (sic!), and thus are of better quality than Wikipedia.
Also the rumours say the functionality of the site hasn’t implemented in full yet. E.g. it will have a search functionality which will lead users directly to academic articles according to the user queries.
I guess the combination of a news article and an academic article in one web page is an attempt to accept more traffic from both news and organic search engines. Likely alternative solutions of combining news feeds with the Wikipedia will follow.
Popularity: 9%
Posted in Algorithms and technologies | February 9th, 2010 No Comments »
Even faster strncpy has a caveat of nonpadding by 0′s if the length of source string is less than the length specified by a function parameter. The version below has this issue fixed, but it’s still faster than standard version of strncpy, if the code is compiled with optimization on a modern processor.
Read the rest of this entry »
Popularity: 21%
Posted in DataparkSearch | January 31st, 2010 No Comments »
FreeBSD’s port www/dpsearch has been updated to the latest version of DataparkSearch Engine released, 4.53.
Popularity: 22%
Posted in DataparkSearch | January 24th, 2010 No Comments »
A new version, 4.53, of DataparkSearch Engine has been released. Changes since version 4.52 are:
Read the rest of this entry »
Popularity: 22%
Posted in Google, Other Engines | January 18th, 2010 2 Comments »
NoBrandSearch is a new project of Hakia. It’s intended to be an one more blind comparison of search engines. Unfortunately, it has a flaw in non-Latin characters display for Google results (and, in particular, that fact has led me to vote for Bing’s results which displays Cyrillic correctly):
Read the rest of this entry »
Popularity: 23%
Posted in Context ads | January 18th, 2010 No Comments »
Begun, the second large Russian context ads network introduces templates for context ads, as it’s been stated at corporate site.
A template of context ads is a basic form of ads in which Begun inserts search keywords automatically according to user queries. E.g., the ad template heading “#foreign# cars sale” will appear as “Audi cars sale” for the user query “Audi cars”, which would attract attention of potential customers who are interested in cars of this particular car maker.

Thus an advertiser can use single template for a bunch of keywords or promoted products, which will show ads relevant to a particular search query.
Templates can be used as in ad heading as in ad description but only once in each section.
Popularity: 23%
Posted in Yandex | December 27th, 2009 1 Comment »
15455788.1732105.1261865371.d7b254696f78ac63f2067e2815cf80c3
Popularity: 28%
Posted in Algorithms and technologies | December 20th, 2009 2 Comments »
Below is a faster implementation of the memcpy function (previous version is here). The comparison of the old, the new, the FreeBSD’s version in C language and the standard implementation on the test:
test0: FreeBSD memcpy in C 2.7686
test1: <new dps_memcpy> 0.43485
test2: <old dps_memcpy> 2.50218
test3: <standard memcpy> 0.456584
ratio(1/2): 0.17
ratio(1/0): 0.16
ratio(2/0): 0.90
ratio(1/3): 0.95
Read the rest of this entry »
Popularity: 29%