[Binari] to make the non-skiing people jealous...

http://www.trinum.com/ibox/menuires/Images/image_00001.jpg We'll be having to you guys from there next week! :D Sofie

*Waving! Sofie Van Landeghem wrote:
http://www.trinum.com/ibox/menuires/Images/image_00001.jpg
We'll be having to you guys from there next week! :D
Sofie _______________________________________________ Binari Intellectuals Need And Require Insanity https://maillist.psb.ugent.be/mailman/listinfo/binari
-- Sofie Van Landeghem PhD Student VIB Department of Plant Systems Biology, Ghent University Bioinformatics and Evolutionary Genomics Technologiepark 927, 9052 Gent, BELGIUM Tel: +32 (0)9 331 36 95 fax:+32 (0)9 3313809 Website: http://bioinformatics.psb.ugent.be

#!/usr/bin/perl =head1 DESCRIPTION Kenish will be ready! Capture the skitrip webcam. =cut use strict; use LWP::Simple; # init vars .. $| = 1; # please print to stdout even when the buffer is not full .. my $put_dir = "~/images/menuires/"; while (1) { my $content = get("http://www.trinum.com/ibox/menuires/Images/image_00001.jpg"); (my $date = localtime(time)) =~ s/ /_/g; print "$date\n"; open(OUT, '>', "$put_dir/$date.jpg") && do { print OUT $content; close OUT; }; sleep 600; # sleep 10 minutes } On Wed, 7 Jan 2009, Sofie Van Landeghem wrote:
*Waving!
Sofie Van Landeghem wrote:
http://www.trinum.com/ibox/menuires/Images/image_00001.jpg
We'll be having to you guys from there next week! :D
Sofie _______________________________________________ Binari Intellectuals Need And Require Insanity https://maillist.psb.ugent.be/mailman/listinfo/binari
--

Kenny Billiau schreef:
#!/usr/bin/perl
=head1 DESCRIPTION Kenish will be ready! Capture the skitrip webcam.
=cut
use strict; use LWP::Simple;
# init vars .. $| = 1; # please print to stdout even when the buffer is not full .. my $put_dir = "~/images/menuires/";
while (1) { my $content = get("http://www.trinum.com/ibox/menuires/Images/image_00001.jpg");
(my $date = localtime(time)) =~ s/ /_/g; print "$date\n";
open(OUT, '>', "$put_dir/$date.jpg") && do { print OUT $content; close OUT; };
sleep 600; # sleep 10 minutes }
Short evaluation learns us that the image probably refreshes every 20min. It would be nice if, in two weeks, you merged all the pics into one gif animation... T.
On Wed, 7 Jan 2009, Sofie Van Landeghem wrote:
*Waving!
Sofie Van Landeghem wrote:
http://www.trinum.com/ibox/menuires/Images/image_00001.jpg
We'll be having to you guys from there next week! :D
Sofie _______________________________________________ Binari Intellectuals Need And Require Insanity https://maillist.psb.ugent.be/mailman/listinfo/binari
-- ================================================================== Thomas Van Parys Tel:+32 (0)9 331 36 95 fax:+32 (0)9 3313809 VIB Department of Plant Systems Biology, Ghent University Technologiepark 927, 9052 Gent, BELGIUM thomas.vanparys@psb.ugent.be http://bioinformatics.psb.ugent.be ==================================================================

Thomas Van Parys schreef:
Kenny Billiau schreef:
#!/usr/bin/perl
=head1 DESCRIPTION Kenish will be ready! Capture the skitrip webcam.
=cut
use strict; use LWP::Simple;
# init vars .. $| = 1; # please print to stdout even when the buffer is not full .. my $put_dir = "~/images/menuires/";
while (1) { my $content = get("http://www.trinum.com/ibox/menuires/Images/image_00001.jpg");
(my $date = localtime(time)) =~ s/ /_/g; print "$date\n";
open(OUT, '>', "$put_dir/$date.jpg") && do { print OUT $content; close OUT; };
sleep 600; # sleep 10 minutes }
Short evaluation learns us that the image probably refreshes every 20min.
Nevermind... it's 10min. T.
It would be nice if, in two weeks, you merged all the pics into one gif animation...
T.
On Wed, 7 Jan 2009, Sofie Van Landeghem wrote:
*Waving!
Sofie Van Landeghem wrote:
http://www.trinum.com/ibox/menuires/Images/image_00001.jpg
We'll be having to you guys from there next week! :D
-- ================================================================== Thomas Van Parys Tel:+32 (0)9 331 36 95 fax:+32 (0)9 3313809 VIB Department of Plant Systems Biology, Ghent University Technologiepark 927, 9052 Gent, BELGIUM thomas.vanparys@psb.ugent.be http://bioinformatics.psb.ugent.be ==================================================================

On Wed, 7 Jan 2009, Thomas Van Parys wrote:
Thomas Van Parys schreef:
Kenny Billiau schreef:
#!/usr/bin/perl
=head1 DESCRIPTION Kenish will be ready! Capture the skitrip webcam.
=cut
use strict; use LWP::Simple;
# init vars .. $| = 1; # please print to stdout even when the buffer is not full .. my $put_dir = "~/images/menuires/";
while (1) { my $content = get("http://www.trinum.com/ibox/menuires/Images/image_00001.jpg");
(my $date = localtime(time)) =~ s/ /_/g; print "$date\n";
open(OUT, '>', "$put_dir/$date.jpg") && do { print OUT $content; close OUT; };
sleep 600; # sleep 10 minutes }
Short evaluation learns us that the image probably refreshes every 20min.
Nevermind... it's 10min.
T.
It would be nice if, in two weeks, you merged all the pics into one gif animation...
That's possible of course. I'll start the script on midas as soon as you people leave :) Maybe make a visibly large enough letter so we can see it on the webcam .. one for each screenshot :) (so you don't have to wave for 10 minutes) ( B I N A R I ? ) -Kenny
T.
On Wed, 7 Jan 2009, Sofie Van Landeghem wrote:
*Waving!
Sofie Van Landeghem wrote:
http://www.trinum.com/ibox/menuires/Images/image_00001.jpg
We'll be having to you guys from there next week! :D
--

Kenny Billiau wrote:
On Wed, 7 Jan 2009, Thomas Van Parys wrote:
Thomas Van Parys schreef:
Kenny Billiau schreef:
#!/usr/bin/perl
=head1 DESCRIPTION Kenish will be ready! Capture the skitrip webcam. =cut use strict; use LWP::Simple; # init vars .. $| = 1; # please print to stdout even when the buffer is not full .. my > $put_dir = "~/images/menuires/"; while (1) { my $content = > get("http://www.trinum.com/ibox/menuires/Images/image_00001.jpg"); (my $date = localtime(time)) =~ s/ /_/g; print "$date\n"; open(OUT, '>', "$put_dir/$date.jpg") && do { print OUT $content; close OUT; }; sleep 600; # sleep 10 minutes }
Short evaluation learns us that the image probably refreshes every 20min.
Nevermind... it's 10min.
T.
It would be nice if, in two weeks, you merged all the pics into one gif animation...
That's possible of course. I'll start the script on midas as soon as you people leave :) Maybe make a visibly large enough letter so we can see it on the webcam .. one for each screenshot :) (so you don't have to wave for 10 minutes) ( B I N A R I ? )
-Kenny
T.
On Wed, 7 Jan 2009, Sofie Van Landeghem wrote:
*Waving! > Sofie Van Landeghem wrote: http://www.trinum.com/ibox/menuires/Images/image_00001.jpg > > > We'll be having to you guys from there next week! :D
You mean in the style of "YMCA"? -- ================================================================== Jonathan Gordon Tel:+32 (0)9 331 37 58 fax:+32 (0)9 3313809 VIB Department of Plant Systems Biology, Ghent University Technologiepark 927, 9052 Gent, BELGIUM jogor@psb.ugent.be http://www.psb.ugent.be ==================================================================

On Wed, 7 Jan 2009, Jonathan Gordon wrote:
It would be nice if, in two weeks, you merged all the pics into one gif animation...
That's possible of course. I'll start the script on midas as soon as you people leave :) Maybe make a visibly large enough letter so we can see it on the webcam .. one for each screenshot :) (so you don't have to wave for 10 minutes) ( B I N A R I ? )
-Kenny
You mean in the style of "YMCA"?
Yes! But maybe make it a bit more about who we are? BEG, BINARI, PCR, BIOINFORMATICS .. ;)
participants (4)
-
Jonathan Gordon
-
Kenny Billiau
-
Sofie Van Landeghem
-
Thomas Van Parys