|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0274 ] | CEO Sherrie Adcock |
---|---|
Name | Adcock, CEO Sherrie |
Job Title | CEO |
Organisation | Voice Security Systems Inc. |
Address | 24591 Seth Circle |
Postal Code | 92629-1095 |
City | Dana Point |
Country | United States |
Phone | +1 949-493-4030 |
Fax | + |
Mobile | + |
sherrie_(on)_voice-security.com [@ replaced for spam protection] | |
Organisation URL | http://www.voice-security.com |
Personal URL | http://www.voice-security.com |
Membership | Pronet/ CCR/The Biometric Consortium's Discussion List |
Languages | English |
Specialism | Application Software Development
Automotive Applications Computer Telephony Integration Control Systems Detecting speech in noise Development and Implementation of Speech Technology Applications Digital Speech Processing Embedded Systems Functional Languages in Language Processing Interactive Voice Response (IVR) Internet Language Identification Microphones Multilingual Speech Recognition Robust Speech Recognition Robust Speech Understanding Speaker Identification Speech Applications Speech Processing Speech Technologies Speech Understanding System Integration Technology Technology Implementation Very low bit rate coding Voice Biometrics (Speaker Verification, Identification, Voice Identification Web Applications |
Photograph | Description or CV |
http://www.voice-security.com | |
Update your profile | Last update: 2008-08-27 15:16:47 #!/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" |