@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
Page: 1 2 3 4



Comments:

<0> @confess filter [[:<:]]usa[[:>:]]
<1> [22043] i hate the usa germany is much better
<0> i need to install a kegerator in my office
<0> or something
<2> mmm, kegerator
<0> how's it goin metallic
<3> metallic!!!!
<3> whats up my crazy thin bro!
<3> anyone here using voip?
<0> i will be next month
<3> which service?
<3> not vonage i hope
<4> isn't vonage about to go tits up?
<3> dunno.. alot of my guys have left the likes of them
<3> if you arent using vonage and have your own setup.. let me know.. i can let you push your tollfree traffic through me



<0> yeah, vonage isn't doing so hot
<4> why doesn't twc just list their damned prices online
<4> that's all i want
<3> twc?
<5> evulish: you get my postcard?
<4> timewarner cable
<4> Stoned4Life: nope
<4> you get mine?
<5> no
<3> spox: if you got a linux box around.. just load up asterisk
<5> but you should get mine either today/tomorrow. the other one i sent to another friend arrived yesterday
<4> hrm
<4> we'll see!
<4> wow. $40 for digital phone via time warner
<5> you have roadrunner and cable though don't you?
<4> yeah
<5> you can add digital phone for the bundle price, which should be cheaper.. ?
<4> yeah i know i don't actually want it, though
<4> +,
<3> whats a digital phone?
<4> voip
<5> just get skype
<4> hrm.
<6> how much does skype cost ?
<5> Zero
<4> what's the best way to return something auto generated in query in oracle
<5> skype's free as long as you have speakers and a microphone
<4> the only thing i can think of is to run two queries really quickly :P
<5> double the fun
<4> but what happens, if for some freaky-reason, two things are added right after each other
<6> Stoned4Life, i mean calling to a conventional phone
<5> uhh
<5> http://us.accessories.skype.com/direct/skypeusa/welcome.jsp
<5> top left, $99.. prolly could get cheaper off somewhere else. but, that's not really the point of skype
<3> why dont you just get a damn pap2 and install asterisk
<3> your calls can become super cheap
<3> $60 for the spa2002.. and you can get to choose as many providers as you want
<7> my phone bill is like, $8/mo
<4> i don't have a phone bill.
<4> i'm on my folks cell family plan and they still pay it
<7> $5 fixed for a DID, the rest for usage (dont use my home phone much)
<4> so until they complain, i'm fine
<7> heh
<7> its voip, i think i pay $0.012/min or something like that
<7> asterisk+freepbx on my mythtv box (which i'd have anyways), and $60cdn or whatever i paid for a PAP2 that i unlocked
<0> http://www.shopblt.com/cgi-bin/shop/shop.cgi?ACTION=Enter&thispage=012000002002_BE01877P.shtml&ORDER_ID=!ORDERID!
<8> hello there, i just found out that my cgi folder on my server is empty. i can't send emails using php mail() function
<8> is there anyway i can get back what i had in that directory?
<9> i didn't think the mail() function depended on the cgi folder
<8> i think it use CGI
<9> did you RTFM on mail()?
<8> RTFM?
<8> it used to work just fine
<8> i think i've deleted the cgi files by mistake
<8> since then the mail function is not working
<8> i m at netfirms
<6> ask them
<8> i sent them an email
<8> but they take ages to reply



<6> sometimes they use validation
<6> ouuff
<6> everywhere the same
<9> http://www.php.net/manual/en/ref.mail.php
<9> RTFM^
<8> thanks for the url
<8> i ll check it out
<10> hey guys... is there an ini setting that allows you to NOT have to write php code with <?php, but omit the 'php' part of it...
<10> ie. <? phpinfo(); ?>
<10> not, <?php phpnifo(); ?>
<6> i should allow both forms
<10> ya, it's not evaluating w/out it
<9> i think it might be something in the apache config
<10> using iis6
<6> http://ar2.php.net/manual/en/ini.php
<9> that maybe uses the file extension of ".php"
<9> to ***uem that <? is the start of some php ****
<9> i should have known this was IIS when you said "ini"
<10> http://ar2.php.net/manual/en/ini.core.php#ini.short-open-tag
<10> thanks guys
<9> why not just add the php
<10> it's annoying
<11> evening peoples
<12> eveming comcor
<12> 'lo ansi
<13> sup fellas
<12> ****.
<11> indeed
<11> I'm coding again, and boy does it feel good.
<9> oooh
<13> good deal
<11> I'm also impressed with SourceForge
<9> i added a stupid theme to an oscommerce cart
<9> and my brain hurts now
<13> i did a layout yesterday
<11> they've made some good changes in the nearly 2 years since I've used them
<13> :>
<11> I finally switched my project back over there
<12> is oscommerce cart good?
<13> that i need to play with some more today
<11> laffo
<11> Technobabble: you make me sad
<9> .... i get that a lot...
<12> lol. so is it?
<13> nope
<9> comcor, you make my kitty scared sometimes
<12> what is a good shopping cart ?
<9> OSC!
<14> Hello. Witch php function I can use to check if a string contains just hexadecimal characters (0123456789 ABCDE and F)?
<11> Technobabble: I try
<9> it works
<14> (my php isn't compile for perl regular expression)
<11> Mick_Fanning: preg_match("/^[0-9a-fA-F]$+/", $string)
<14> comcor: allright.. I'll try it
<14> ty
<11> whoops
<11> that should be
<14> preg_match or preg_match_all?
<11> Mick_Fanning: preg_match("/^[0-9a-fA-F]+$/", $string)
<11> depends on what you expect in your string
<11> that regex is for the entire string
<11> but one occurrence
<11> so it won't match "aksdjkasjd C0FFEE ksajdkajsd"
<11> but it will match "C0FFEE"
<14> ic
<11> if you are trying to extract hex numbers from a string, you might use something like:
<11> preg_match_all("/([0-9a-fA-F]+)/", $string, $matches_array);
<14> hmm.. no I just want to check if the typed data is correct...
<11> then the first one is likely going to work for you
<14> BUT, then, I must separate a whole string like 0a00124b into two-char-strings.. like str1=0a, str2=00, str3=12 str4=4b
<14> okay.. preety thankful
<11> good luck
<12> ok so really, what's a good cart ?
<11> I thought oscommerce was decent? I've not used it since around 2000


Name:

Comments:

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






Return to #php
or
Go to some related logs:

#kl
#chat-world
#kl
#india
#netcafe
indian netcafe
nauthy
dr dre is dead
bekir ok
#india



Home  |  disclaimer  |  contact  |  submit quotes