|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3087 ] | Newfound |
---|---|
Organisation name | Newfound Communications, Inc. |
Short name or acronym | Newfound |
Organisation type | Company |
Activity type | |
Address | 15 Union St. Suite 409 |
Postal Code | 01840 |
City | Lawrence, MA |
Country | United States |
Phone | + 978.794.3878 |
Fax | + 978.794.1791 |
info_(on)_newfoundcomm.net | |
Organisation URL | http://www.newfoundcomm.net/ |
Logo | Description |
![]() |
Newfound Communications, Inc. offers technology, tools, and professional services to fuel the speech recognition revolution. By working with Newfound, companies and developers bypass the largest impediment to creating speech-driven applications--the proper utilization of large complex grammars. For Newfounds customers, the combination of available grammar management software, technology and expertise provides unparalleled value; speeding voice application development, cutting development costs, improving applications and increasing customer satisfaction. Also available from Newfound is it's Natural Language Processing software including a Part Of Speech Tagger, as well as custom NL Parsing technologies. |
Contact | |
Name | Manager of Business Development James Loeber |
Function | |
Department | Sales |
jloeber_(on)_newfoundcomm.net | |
Phone | + 978.794.3878 |
Fax | + |
![]() |
Last update: 2002-09-10 19:44:56 #!/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" |