search for: lrange

Displaying 4 results from an estimated 4 matches for "lrange".

Did you mean: range
2007 Jul 17
2
SLLOOOWWW function ...
...s anybody have any insight into how to make this faster? I suspect, that the rounding going on may be an issue, as is the stepping through data frame rows using integers ... If you have the patience to teach a noob, he will highly appreciate it ;0) Joh digit <- 4 for (minute in seq(from=25,to=lrange[2])){ # Extract all data associtaed with the current time (minute) frame <- subset(mylist,mylist[["Time"]] == minute) # Sort by Intensity frame <- frame[order(frame[["Intensity"]],decreasing = TRUE),] # Establish output frame using the most intense candidate ne...
2004 Jan 17
0
Remote reloading Cisco phones...
Here's a simple small expect script ... I call it "phreboot", usage: phreboot IP $ phreboot 10.99.1.1 -- cut here -- #!/usr/bin/expect -f set timeout -1 spawn $env(SHELL) match_max 10000 send -- "telnet [lrange $argv 0 0]\r" expect -exact "word :" send -- "cisco\r" expect -exact "Phone> " send -- "reset\r" send -- ""
2020 Apr 06
2
Branch is not optimized because of right shift
On Sun, Apr 5, 2020 at 6:34 PM Stefanos Baziotis < stefanos.baziotis at gmail.com> wrote: > Hi Craig, > > > Adding a nuw to the add -8 is incorrect. > Yeah, I didn't mean to say it was correct. It was just an observation that > with nuw the optimization was happened and I asked if someone thought it > was somehow connected. > > > From the perspective of the
1997 Sep 28
0
[IPD] Internet Probe Droid
...reading the simple script mf uses, called "login.exp": ---------------------------------------------------------------------- #!/usr/bin/expect -- set host [lindex $argv 0] ;# host is taken from the command line set account [lindex $argv 1] ;# ditto the account name set pw [lrange $argv 2 end] ;# the rest are potential passwords set timeout 60 foreach password $pw { puts "\n\nExpect: using $account $password -----------------------------" spawn telnet $host expect "ogin:" send "$account\r" expect "assword:" send...