|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2332 ] | 3F Ltd. |
---|---|
Organisation name | 3F Ltd. |
Short name or acronym | 3F Ltd. |
Organisation type | Company |
Activity type | Speech technology |
Address | PO Box 245 |
Postal Code | DH1 3TT |
City | Durham |
Country | United Kingdom |
Phone | + +44 191 386 5552 |
Fax | + +44 191 386 1091 |
help_(on)_3f.co.uk | |
Organisation URL | http://www.3f.co.uk |
Logo | Description |
![]() |
3F Ltd., a UK company, was registered in 1995. 3F was a spin-off company from the University of Durham's Department of Computer Science and is based at the University's Science Park. The Natural Language technology on which 3F's product suite is based has been under development for more than ten years. 3F was founded with the mission of becoming the technology leader in Natural Language Processing, and to satisfy the demand for technology and products with user friendly dialog interfaces, knowledge extraction from documents, and smart text response systems. In addition to Natural Language Processing, 3F has also pioneered innovations in specialist applications of speech recognition technology. 3F is now owned by Mindmaker, Inc. (www.mindmaker.com). |
Contact | |
Name | |
Function | |
Department | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |