02-10-2009
Yeah, i think you are right. I am now playing around with the -l to tune the script more. thanks.
10 More Discussions You Might Find Interesting
1. UNIX for Dummies Questions & Answers
How do I limit the amount of idle time an account gets on solaris?
Thanks.
VJ (2 Replies)
Discussion started by: vancouver_joe
2 Replies
2. AIX
Hello, we had a situation where an account was locked out due to too many failed login attempts. From the logs (failedlogin, etc) it appears that AIX 'remembered' the failed login attempts from the past month or so. does anyone know where this is set, or how long it will remember the number of... (2 Replies)
Discussion started by: zuessh
2 Replies
3. Shell Programming and Scripting
Hello Folks,
I have been asked to write a test script which can be run by students. the script should have a time limit.
I have almost completed it except the bit of timing!
I've seen something like this:
on_timeout()
{
echo "$USER $score " >> theresult.txt
echo "Time out!... (2 Replies)
Discussion started by: SultanKSA
2 Replies
4. Programming
Hi all,
I've been searching for ldapsearch function these few days. Still I couldn't found the solution.
I would like to translate this query
ldapsearch -x -LLL -h new_IP -p new_Port -D "cn=jw" -w "dummy" -b
"id=2311,o=WC,c=jp" -s sub
to ldap_search_ext_s() function in C program.
... (0 Replies)
Discussion started by: tailangong
0 Replies
5. UNIX for Dummies Questions & Answers
Never knew of this command ldapsearch, but I would like to use it to lookup a single user and return where their office is.
Is this possible?
I'm totally starting from scratch. I already saw some of the gurus say read the man page, which is pretty greek when you don't know the details of... (1 Reply)
Discussion started by: srhadden
1 Replies
6. UNIX for Dummies Questions & Answers
Hello everyone.
I am trying to do a parallel computation and the computation continues for like an hour and then it stops with the error:
slurmd: *** JOB 785385 CANCELLED AT 2012-02-08T20:18:42 DUE TO TIME LIMIT ***
Please can anyone tell me what is going on and how to fix the error...I... (0 Replies)
Discussion started by: lebphys78
0 Replies
7. Solaris
Hi all, I'm using to Solaris machine. When I run a simple script this messenger come out:"limit: stacksize: Can't remove limit". Any one know the way to resolve this problem without reboot the machine?
Thanks in advance. (3 Replies)
Discussion started by: Diabolist9
3 Replies
8. UNIX for Advanced & Expert Users
Is there a time limit ifconfig wlan0 down? I used that command to take my wireless down.
sudo ifconfig wlan0 downWhen I came back about 6 hours later it was working without me bringing my wireless back up. I am the only one that uses my computer or that knows the root password. (0 Replies)
Discussion started by: cokedude
0 Replies
9. Red Hat
Hi
I'm not familiar with ldap and I hope someone to help me.
I need to get some attribute value from ldap DB.
When i run the following command is OK:
ldapsearch -h localhost -p 16611 -x -D cn=user -w passwd -b msisdn=359502479649,dc=MSISDN,DC=C-NTDB "(objectClass=SUBINNSS)" refinmocNAME
the... (0 Replies)
Discussion started by: vasil
0 Replies
10. Red Hat
We are having issues with our Postfix. The POP and IMAP services randomly stops working an sent e-mails return a "Command time limit exceeded".
We've found out that running these command fix the problem:
service cyrus-imapd stop
rm /var/lib/imap/tls_sessions.db*
rm... (2 Replies)
Discussion started by: GustavoAlvarado
2 Replies
LEARN ABOUT DEBIAN
sdlx::controller::interface
pods::SDLx::Controller::Interface(3pm) User Contributed Perl Documentation pods::SDLx::Controller::Interface(3pm)
NAME
SDLx::Controller::Interface - Interface Physics and Rendering with the Controller with callbacks
CATEGORY
Extension, Controller
SYNOPSIS
use SDL;
use SDLx::App;
use SDLx::Controller::Interface;
#SDLx::App is a controller
my $app = SDLx::App->new(width => 200, height => 200 );
my $ball = SDLx::Controller::Interface->new( x=> 10, y => 50, v_x => 10, v_y=> 20 );
#Set the initial state of the ball's physics, this is optional
$ball->set_acceleration(
sub {
my ($time, $current_state) = @_;
return( 0, -10, 0 ); # Return accelerations (x,y,rotation)
}
);
my $ball_render = sub {
my $state = shift;
$app->draw_rect( undef, 0 );
$app->draw_rect( [$state->x, $state->y, 10,10], [255,0,0,255] );
$app->update();
};
$ball->attach( $app, $ball_render, @params );
$app->run();
$ball->detach(); #can be called at anytime (for example when ball 'dies')
DESCRIPTION
METHODS
set_acceleration
Allows you to set the acceleration callback for defining the interface's behaviour in terms of x,y and rotation.
$interface->set_acceleration (
sub {
my ($time, $current_state) = @_;
return ( $accel_x, $accel_y, $torque );
}
);
These accelerations are arbitrary and can be set to any frame of reference. Your render callback will handle how to interpret it.
The callback will receive the time and the current state as a "SDLx::Controller::State" element.
attach
Attaches the interface to a controller with a render callback
$interface->attach( $controller, $render, @params );
Where $render is a callback that receives the interpolated "SDLx::Controller::State".
my $render = sub {
my ($state, @params) = @_;
# draw the current $state.
};
The @params are any extra parameters you would like to pass to the $render callback.
current
my $current_state = $interface->current();
Returns the current state of the interface as a "SDLx::Controller::State".
previous
my $previous_state = $interface->previous();
Returns the previous state of the interface as a "SDLx::Controller::State".
detach
$interface->detach();
If $interface has been "attach()"'ed to any controller it will be detached now.
OTHER METHODS
Don't use these unless you really really want to.
acceleration
Call the acceleration callback once.
interpolate
Interpolate the current state
evaluate
Evaluate the new current and previous state.
update
Update the states by integrating with time.
AUTHORS
See "AUTHORS" in SDL.
perl v5.14.2 2012-05-28 pods::SDLx::Controller::Interface(3pm)