|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1130 ] | Professor Dr. Francisco Marcos-Marin |
---|---|
Name | Marcos-Marin, Professor Dr. Francisco |
Job Title | Professor |
Organisation | University of Texas at San Antonio |
Address | One UTSA Circle |
Postal Code | 78249 |
City | San Antonio |
Country | United States |
Phone | +1 2106145689 |
Fax | +1 2104585672 |
Mobile | + |
francisco.marcos.marin_(on)_uam.es [@ replaced for spam protection] | |
Organisation URL | http://www.utsa.edu |
Personal URL | http://fmarcosmarin.blogspot.com |
Membership | ACL ALLC, CH, TEI |
Languages | English Spanish, French, German, Italian, Portuguese |
Specialism | Callcenter:
encoding Innovation Management Knowledge Management Management Consulting Process Documentation Project Management Service Design Strategic Planning Speechtechnology: Computational Lexicography Computational Linguistics Computer Assisted Language Learning Corpora and Dialogue Annotations Data Corpus Collection Discourse analysis Discourse Theories Evaluation general linguistics Grammar Information dissemination Information Retrieval Language Identification Language Learning Language Resource Production Language Resources Language Translation Large speech corpora Linguistics Multilinguality Natural Language Semantics Phonology Semantics Spanish Phonetics/Phonology Spoken Language Resources and Evaluation Syntax Word meaning |
Photograph | Description or CV |
http://www.elsnet.org/expertcvs/blank.html | |
Update your profile | Last update: 2015-07-29 12:14:31 #!/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" |