@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23



Comments:

<0> bod: This is the one we already have: http://www.sinar.ch/sinar/kamera/e_html/e_p3.htm
<1> ***ualy har***ment!
<2> Kulrak: and what do you think I use to present my photos on the web??
<1> Thwaps?
<1> http://en.wikipedia.org/wiki/thwaps
<3> bod: I have several perl programs that use mplayer
<3> and mencoder
<4> so yeah integral do something... before I do, thanks.
<2> Kulrak: that's anout as tenuous as my link...
<5> Daveman: Beautifully coloured fish that
<0> Younix: If you continue to spew you are likely to get banned.
<3> bod: agreed
<1> I have diabetes. Don't drop anything on me.



<2> arrrgh
<4> integral, fish wavelet analysis completed.
<1> Yaakov, not by you.
<5> huh? He hasn't done *anything* for minutes and minutes and minutes
<1> So hush.
<1> See there.
<1> I'm a good boy. :)
<2> install missing plugins my arse
<4> Your actions say otherwise.
<1> ...
<5> look, the next person who says something meta about this channel gets banned, ok?
<1> Saying lrep excessivley?
<0> bod: They have some kind of 360 degree image.
<1> Wow.
<1> Nice reason to be banned.
<4> panorama++
<1> Now shut your face, Daveman.
<1> You too Yaakov.
<4> :O
<4> rut roh
<0> Younix: Seriously, cut it out.
<1> Yaakov, /ignore.
<1> Thanks.
<1> Uhh oh.
<1> That ****s.
<0> OK, than STOP.
<1> Stop what?!
<0> The NTS.
<0> perlbot: nts
<6> Newbie Talking Syndrome, where people type constantly on the channel for no purpose other than to shout I am HERE! or when your right pinky does all the work
<4> :)
<1> Oh?
<0> Younix: Chill out.
<1> I really don't know anything about perl anyway. I used Net::IRC to make an IRC bot one day.
<1> That's about it.
<0> bod: That camera is amazing. I love view cameras and that one is a 22mp really nice one.
<2> that's a medium format digital?
<2> I thought that was the last bastion of film
<5> medium format digital? is that just the sensor proportions, or is it really a sensor _that_ m***ive?
<0> It is a digital with a sensor that exceeds film resolution and uses a medium format camera body.
<4> yay pics almost ready
<0> The sensor is close to 4x5.
<5> ah ha! <LI> tags contain %flow; which is (%block; | %inline;)
<2> nice
<4> :P
<0> bod: Sometime I have to do some good macro stuff with it for fun.
<0> bod: I need a good subject.
<0> I was thinking of the H2 :)
<4> heh
<0> If we have it long enough I'll take some shots.
<5> (The Fountain Overflows)++; radio4++
<4> o.O
<4> Yaakov :)
<4> omfg this one pics is awesome
<4> sweet
<0> Auto photogs love the P3. Lots of studios that shoot cars have them.
<4> yes



<0> You can get the entire side of a car sharp while still shooting wide open.
<0> Daveman: As in audio?
<4> As in, yes :p
<0> Daveman: No. I have almost no audio equipment.
<4> heh
<2> I must admit that I don't really think of macro in that format... more long exposure landscape
<0> Daveman: I have my (very small) CD collection an old Kenwood integrated amp I use as a heaphone amp and my AKG studios.
<1> Net::IRC owns you.
<2> it does?
<1> No.
<0> bod: You can shoot a macro shot an inch from the lense and with completely controlled depth of field.
<4> Excellent.
<2> procedural, rather than event-driven
<2> aaaarrrh
<0> bod: We have one of these: http://www.sinarbron.com/bron/slamps/fibrolite.php
<0> And: http://www.sinarbron.com/bron/lightsoft/minicumulite.php
<0> And: http://www.sinarbron.com/bron/slamps/ringflash.php
<7> rabbits have only two natural enemies: their instinctual self-loathing, and robots.
<0> I ought to turn the lab into a studio after hours for extra cash!
<2> stop, stop, already... I'm getting toy envy
<0> Heh
<7> their page has a typo in it >>
<0> Elly: Sinar?
<7> Ringflash can produce perfectly shadowless lighting or tje unique cross shadow effect popular in today's fashion work.
<0> Elly: I dislike the Sinar site, and the H***elblad one.
<0> Elly: Note the end of the URL and cease wondering.
<4> damn I gotta post these pics :p
<8> hi
<9> anyone know how to get perl to not search for .pmc files when it searches @INC ?
<9> I thought it was a compile-time flag, but I can't find it.
<8> I'm searching for a simple regexp that would change the string after the last "." of a variable. (would like to avoid substr)
<7> elshaa: s/\.[^\.]*$/something/g
<3> Elly: * is greedy
<8> Elly: thanks a lot. (not simple as that in fact :)
<10> why /g?
<3> *? maybe
<10> Kulrak: huh? why?
<11> Kulrak: would it matter with the [^\.] ?
<3> pravus: it would if there is more than one .
<3> *? matches as few as possible
<10> Kulrak: no, it wouldn't
<11> Kulrak: yeah, but it should only grab everything after the last '.' since you have indicated that a '.' cannot be matched until end of string
<3> ah, so that would work unless there's something between the . and the end of the string
<11> or have i reverted to my crack smoking ways?
<9> $str =~ s/^(.+)\..*$/$1.newvalue/
<9> ?
<10> jorvis_: eww
<9> haha
<10> $str =~ s/[^.]*\z/newstring/; for great justice
<7> what is this \z busines
<7> *business
<7> you can just use $
<10> in this case, yes, but not in general
<10> I prefer \z because it simply matches the end of the string, period
<7> so does $
<9> In the release notes I found this: "Introduced a new preprocessor symbol, PERL_DISABLE_PMC, to disable the loading of .pmc files if defined."
<10> Elly: no, it doesn't
<9> where do I put that preprocessor symbol?
<10> $ matches at end-of-string or before newline at end-of-string
<10> with /m it matches at each embedded newline
<0> perlbot: ignorance
<5> hah! safari handles display: inline-block and firefox doesn't
<5> jorvis_: ./Configure -DPERL_DISABLE_PMC I believe
<0> perlbot: ignorance is Never use ignorance as a reason not to learn something.
<6> added ignorance to the database
<5> I was just talking about this here the other day
<9> pmc?
<5> yes.
<0> PMC is Pretty Moo Cow.
<5> it's a compiled .pm
<0> They are files used to define various cows.
<3> apt-get moo


Name:

Comments:

Please enter the result of the sum 63 + 46 (to avoid spam):






Return to #perl
or
Go to some related logs:

undefined reference to `_zval_ptr_dtor_wrapper'
fluxbox mounter
#php
adaptec AVC-2310 Ubuntu
sed pattern negate bash
#web
Called dyn_compile gentoo error qtparted
#gentoo
Fatal error: mysql.user table is damaged or in unsupported 3.20 format gentoo
domain whoises



Home  |  disclaimer  |  contact  |  submit quotes