|
|
|
Expert profile: Mr. Diglio Simoni
| [ ID = 1026 ] |
Mr. Diglio Simoni |
| Name |
Simoni, Mr. Diglio |
| Job Title | Information Scientist |
| Organisation |
RTI International |
| Address | 800 Park Offices Drive |
| Postal Code | 27709 |
| City | Research Triangle Park, NC |
| Country | United States |
| Phone | + (919) 485-5667 |
| Fax | + |
| Mobile | + (315) 383-6643 |
| Email |
dsimoni_(on)_rti.org
[@ replaced for spam protection] |
| Organisation URL |
http://www.rti.org |
| Personal URL |
http://www.simoni.org |
| Membership |
|
| Languages | English Spanish, Italian |
| Specialism |
Speech Technology:
Bioinformatics
Adaptive Filters
Artificial Neural Networks
Bayesian Theory and Applications
Cognitive Engineering
Corpus statistics
Developer Tools
Information Retrieval
Language Processing
Lexicons
Machine Learning Algorithms
Multimodal Human-Machine Communication
Natural Language Semantics
Neural Networks
NLP
Search Engines
Search Strategies
Statistical Pattern Recognition
User Interface Design
Vector Quantization
Web Applications |
| Photograph | Description or CV |
 |
http://www.simoni.org
|
Update your profile
|
Last update: 2005-06-30 14:07:39
#!/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"
|
|