|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3001 ] | Voice Futures |
---|---|
Organisation name | Voice Futures |
Short name or acronym | Voice Futures |
Organisation type | Company |
Activity type | Recruitment |
Address | Suite 45 Surbiton Business Centre, 46 Victoria Rd |
Postal Code | KT6 4JL |
City | Surbiton |
Country | United Kingdom |
Phone | + +44 870 300 0250 |
Fax | + +44 20 8390 4513 |
VoiceFutures_(on)_visionrecruitment.com | |
Organisation URL | http://www.voicefutures.com |
Logo | Description |
![]() |
Voice Futures is the leading provider of specialist personnel for the speech recognition industry covering the UK, Europe and the US. Expertise in managing the recruitment of a diverse range of speciaist personnel including scientists (ASR/TTS/NLP etc), senior executives (Technical Director, Chief Scientist, Product Manager..), linguists as well as more technical staff in SW development. Our unique approach to recruitment and our broad, international candidate network means we are best placed to provide an excellent service for companies growing within this area. |
Contact | |
Name | Mr Steven Houston |
Function | Recruitment |
Department | Recruitment - Voice technologies |
VoiceFutures_(on)_visionrecruitment.com | |
Phone | + +44 870 300 0250 |
Fax | + +44 20 8390 4513 |
![]() |
Last update: 2004-03-12 14:17:51 #!/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" |