|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3406 ] | Alias-i |
|---|---|
| Organisation name | Alias-i, Inc. |
| Short name or acronym | Alias-i |
| Organisation type | Private company |
| Activity type | Lang+Speech Technology provider |
| Address | 181 North 11th St, #401 |
| Postal Code | 11211 |
| City | Brooklyn, NY |
| Country | United States |
| Phone | + +1 718 290 9170 |
| Fax | + +1 718 290 9171 |
| carp_(on)_aliasi.com | |
| Organisation URL | http://www.aliasi.com/ |
| Logo | Description |
![]() |
Alias-i develops products to extract information from natural language texts. We also distribute the open-source LingPipe natural language toolkit.
|
| Contact | |
| Name | Bob Carpenter |
| Function | Research Scientist / Software Architect |
| Department | |
| carp_(on)_alias-i.com | |
| Phone | + |
| Fax | + +1 718 290 9170 |
|
|
Last update: 2004-08-27 20:12:32 #!/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" |