Happy New Year and Best wishes to all readers in 2008 !
Sochi is welcoming the new year just few minutes after midnight of January 1st:
Just DataparkSearch weblog
Happy New Year and Best wishes to all readers in 2008 !
Sochi is welcoming the new year just few minutes after midnight of January 1st:
You can get the ispell data for Lithuanian language to use with DataparkSearch here: ftp.akl.lt/ispell-lt/.
FreeBSD port www/dpsearch has been updated to the 4.48 version of DataparkSearch.
A new version of DataparkSearch, 4.48, has been released. Changes since previous release are:
In processing of the search request "Australia’s most renowned", The Google begins erroneously highlight all "s" in URL of the documents found (marked green in SERP).
In processing of the search request "Australia’s most renowned", The Google begins erroneously highlight all "s" in URL of the documents found (marked green in SERP).
void * dps_memcpy(void *dst0, const void *src0, size_t length) {
if (length == 0 || dst0 == src0) /* nothing to do */
return dst0;
if ((unsigned long)dst0 < (unsigned long)src0) { /* copy forward */
register size_t n = (length + 7) / 8;
register char *dst = dst0, *src = src0;
switch( length % 8 ) {
case 0: do { *dst++ = *src++;
case 7: *dst++ = *src++;
case 6: *dst++ = *src++;
case 5: *dst++ = *src++;
case 4: *dst++ = *src++;
case 3: *dst++ = *src++;
case 2: *dst++ = *src++;
case 1: *dst++ = *src++;
} while(--n > 0);
}
} else { /* copy backward */
register size_t n = (length + 7) / 8;
register char *dst = dst0 + length, *src = src0 + length;
switch( length % 8 ) {
case 0: do { *--dst = *--src;
case 7: *--dst = *--src;
case 6: *--dst = *--src;
case 5: *--dst = *--src;
case 4: *--dst = *--src;
case 3: *--dst = *--src;
case 2: *--dst = *--src;
case 1: *--dst = *--src;
} while(--n > 0);
}
}
return dst0;
}
N.B.: Code is under GPL.
Addendum: A faster version of memcpy
According to the company press release, on the August 23rd, the Yandex.Direct started public testing for personalized advertisings.
The system tracks user behavior on the Yandex search engine and on the partner sites where Yandex.Direct advertising is showing. That new technology expected to bust better targeted advertising even for pages where pure contextual system was fail.