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 strongm 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: *

  1. swan2925

    Recursion Problem

    sub fibonacci { $arg = $_[0]; if ($arg < 2) { return $arg; } else { return(fibonacci($arg - 1) + fibonacci($arg - 2)); } } $input = <STDIN>; print fibonacci($input); ------------------------------------------------------------ My little recursion script...
  2. swan2925

    Keeping PPPoE Internect Connection alive while logging out?

    How to keep a PPPoE Internet Connection on my .NET Server 2003 alive when a one of the user logging out (maybe from console, maybe from remote desktop client) The Internet Connection would be disconnected once a user log out, what can I do if I want to keep it? I would be very graceful if...

Part and Inventory Search

Back
Top