Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: sfi
  • Order by date
  1. sfi

    Obfuscation Challenge

    What else would one call a hamburger?
  2. sfi

    Obfuscation Challenge

    Cellulose encrusted bovine disc. Where dos the ham come from?
  3. sfi

    Perl editor recommendation...

    Don't forget about jEdit.
  4. sfi

    Good thinking Batman

    Even better than Laaaaance is what he says "So. What your theooooory Darwin
  5. sfi

    What is the difference?

    I assume you mean Australian EST.
  6. sfi

    When to use eq and ==

    if all the characters in the string are numeric use ==, else use eq.
  7. sfi

    Correct use of apostrophes.

    Shouldn't it be "the '80's" since the complete thing actually is "the period 1980 a.d. to 1989 a.d", or perhaps "the decade starting in 1980 a.d."?
  8. sfi

    snmp traps

    You could also check out the PERL area
  9. sfi

    Eats, Shoots & Leaves

    Australian's have a similar punch line for wombats. I wonder which came first?
  10. sfi

    Threads and parallel processing

    Unless you've got multi-processors, conveting to threads would be slower because of the context switching.
  11. sfi

    Practical FCAPS examples

    Try a better search, you are not in the right area.
  12. sfi

    PERL Script calling a TELNET Session

    Try something like ... @response = $telnet->cmd( $cmd); pop @response; # drop the first part of the prompt print @response;
  13. sfi

    Searching an Array for multiple items at specified locations

    Hows about this... (I've been doing PERL lately so forgive the syntax errors) boolean find( char *theString) { int size = 0; char *temp = theString; int nChars = 2; char theChars[] = ('a', 'b'); int nSpots = 2; int theSpots[][nChars] = ((0,3), (4,6)); while...
  14. sfi

    Possible to poll for SNMP traps

    Since UDP may drop messages, some vendors have a series of private OIDs that are used to check for dropped TRAPS. ie. check out the private MIB.
  15. sfi

    Small perl code help!!!

    Try using gmtime(), time(), and localtime() See perlfunc.
  16. sfi

    TFTP transfer mode problem, files unreadable

    What brand of radio are you accessing? I know that most have binary data in their performance files.
  17. sfi

    telnet through perl

    Try something like ... $port = new Net::Telnet (Timeout => 10, Errmode => "Return", Prompt => $prompt); $port->open( $computer); $port->login( $username, $passwd);
  18. sfi

    Design Process for Standalone Developer

    I found that sticking to the last methodoloy used is best.ie it is still fresh and saves the angst of researching an other method. The trick with documentation is to stop once ones thoughts have reached a conclussion, then start implementing.
  19. sfi

    perl/snmp set_request

    To get the results try ... $value = $result->{$oid1}; if (defined( $value)) { print "$count $oid1=$value \n"; } This will also show any protocol/connection errors. Can you actually ping the destination?
  20. sfi

    perl/snmp set_request

    Try something like ... my( @list); push( @list, ($oid1, $type1, $value1)); push( @list, ($oid2, $type2, $value2)); push( @list, ($oid3, $type3, $value3)); push( @list, ($oid4, $type4, $value4)); $result = $snmp_port->set_request( -varbindlist => [@list]);

Part and Inventory Search

Back
Top