|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3121 ] | Inhouse Training |
---|---|
Organisation name | Inhouse Training |
Short name or acronym | Inhouse Training |
Organisation type | Private company |
Activity type | Other expertise relevant for Lang+Speech Technology |
Address | 14 Northbrook ave |
Postal Code | Ranelagh |
City | Dublin 6 |
Country | Ireland |
Phone | + 00 353 86 8478042 |
Fax | + 00353 1 4912160 |
info_(on)_inhousetraining.ie | |
Organisation URL | http://www.inhousetraining.ie |
Logo | Description |
![]() |
Inhouse Training is the only objective training available in Europe for people involved or learning about biometrics and associated technologies. The courses cover areas including eGovernment, eSecurity, Privacy/legal issues and methods of distribution - smartcards and databases. A constant difficulty for vendors is that clients and decision makers are not familiar with the technology. Inhouse Training can act to introduce the basics of authentication/identification and create a platform for understanding from which both client and vendor can build a future. |
Contact | |
Name | Ms Aine Ni Fhloinn |
Function | Managing Director |
Department | |
info_(on)_inhousetraining.ie | |
Phone | + |
Fax | + |
![]() |
Last update: 2004-10-21 17:15:36 #!/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" |