5 Cent tip for today [ forum online check ]
Posted: Sat Mar 06, 2004 12:45 am
;
; A non regexp users online grabber
; (pre-historic, a little shaving could work)
;
; when inside newlisp a quick check with 'forum to
; see if the registered guru's are online :)
; Does not display "who" actualy, its in the make...
(define (forum)
(set 'buff (get-url "http://www.alh.net/newlisp/phpbb/index.php" ))
(set 'buff (slice buff (find "In total" buff)))
(set 'buff (slice buff 0 (find "Most" buff)))
(set 'buff (slice buff 0 (find "\n" buff)))
(set 'buff (replace "<b>" buff ""))
(set 'buff (replace "</b>" buff ""))
buff)
Enjoy..Norman.
; A non regexp users online grabber
; (pre-historic, a little shaving could work)
;
; when inside newlisp a quick check with 'forum to
; see if the registered guru's are online :)
; Does not display "who" actualy, its in the make...
(define (forum)
(set 'buff (get-url "http://www.alh.net/newlisp/phpbb/index.php" ))
(set 'buff (slice buff (find "In total" buff)))
(set 'buff (slice buff 0 (find "Most" buff)))
(set 'buff (slice buff 0 (find "\n" buff)))
(set 'buff (replace "<b>" buff ""))
(set 'buff (replace "</b>" buff ""))
buff)
Enjoy..Norman.