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 SkipVought 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. MikeLacey

    R & Python Integration

    Hi, I've used R for statistical analysis and graphing and it's hard to beat for this. However, I'm from a general programming background and starting to miss those capabilities, process control, data transformation etc. I'm starting to look at rpy2 which runs R in a Python process, it seems...
  2. MikeLacey

    Thank you for the R forum

    :) Thank you Mike
  3. MikeLacey

    R Programming Forum

    Excellent, thanks @SamBones :) Mike
  4. MikeLacey

    R Programming Forum

    Hi, I don't seem to be able to find a forum for R programming, am I missing something obvious? (Posting here because Python is often used with R) Mike
  5. MikeLacey

    Help catching STDIN in background

    My answer (above) is complete twaddle... I don't think you can *quite* do what you're asking, but there's probably a way around it. Can you start the process on the end of a pipe and then block until there's something to read? open(P, 'scanner_proc |') while(<P>){ # do whatever you're going...
  6. MikeLacey

    Help catching STDIN in background

    Hi Rick, I've not written this kind of Perl script for Windows but you do something similar to this in *nix when you write a daemon process - you close and then reopen stdin, stdout and stderr. I'll have a look around. Mike
  7. MikeLacey

    Corruption of GIF image in email via MIME::Lite

    Nice one... Mike
  8. MikeLacey

    print array name

    @1DMF That should be $arg0 surely :) Mike
  9. MikeLacey

    HTML::Template causing odd ODBC error in output

    That's a shame - good detective work on your part though Mike
  10. MikeLacey

    SSH with file handle

    Try something like this open(my $ssh, "| ssh -T $onlineon >a_file 2>&1"); print $ssh "/usr/sbin/vxassist -g $dg listtag | $awk -F= '/activebase/ { print \$2 }'"; close($ssh) or die "$!"; open(A_FILE,"a_file"); while(<A_FILE>){ # process each line from the file, just print it in this example...
  11. MikeLacey

    Google App Script?

    Thanks both :) Mike
  12. MikeLacey

    Google App Script?

    Hi there, I've just stumbled over Google Apps Script and, initially, I'm quite taken with it. Is this the forum to learn about it and ask questions or does it differ enough from standard Java script to make it need its own forum really? Mike
  13. MikeLacey

    Writing Log files

    Speed really isn't the issue, opening and closing the log file each time will work on every Perl platform, all of them. You're right about the Unix boxes of course. But you shouldn't be writing fast scripts anyway :) you should be writing scripts that you can read, that work and can be made to...
  14. MikeLacey

    Writing Log files

    Hello V create your log file when the script starts, like this open(LOG,">>logfile.txt") or die; print LOG "Log file opened\n"; close LOG; Each time you want to log something, open the file (for append, like above), write to and close the file. Like this open(LOG,">>logfile.txt") or die...
  15. MikeLacey

    How to convert this script to perl

    Nicely done, so far as I can see. Does it behave as you expect so far? I particularly like the clear layout of the script, v cool and easy to read. Two things. 1 - the variable $2009, I don't know if that (a variable name made all of digits) will work or not, change to something starting with...
  16. MikeLacey

    Open image

    What do you want to do with the files when you've opened them? Mike http://www.myspace.com/micahhowzat
  17. MikeLacey

    memory fault (coredump) error when I run a perl script

    I think you need to check your DBI & DBD installation. Mike http://www.myspace.com/micahhowzat
  18. MikeLacey

    Problem getting to Windows Update site

    Ok, thanks everyone for the common sense advice. The one that did the trick for me was goom's http://www.snapfiles.com/get/winsockxpfix.html All seems to be working nicely - thanks again to everyone and esp. to goom for the advice that worked in thos particular case. Mike Mike...
  19. MikeLacey

    Problem getting to Windows Update site

    hi all & thanks for taking the time to reply. I'm working through the advice & will report back. Thanks again, much appreciated. Mike Mike http://www.myspace.com/micahhowzat
  20. MikeLacey

    Problem getting to Windows Update site

    Hello All, I'me having trouble connecting to http://www.windowsupdate.com/ It resolves and then is redirected to http://update.microsoft.com/windowsupdate/v6/thanks.aspx?ln=en&&thankspage=5 but the server doesn't respond. I am using IE 8 v8.0.6001.18702 The page ieframe.dll/dnserror.htm is...

Part and Inventory Search

Back
Top