@# 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



Comments:

<0> i know i shouldn't put my personal email address there
<1> why not?
<1> who told you that?
<0> well... i did it once
<0> long time ago
<1> does your email have spam filtering capabilities?
<0> i received lots of spam after that
<0> yes it has... but i am tring to leave it as clean as possible
<1> I put my email address everywhere
<1> and, I get spam a lot
<1> but I don't care
<1> because it goes into my spam box
<1> and not my inbox
<2> What I do is I setup a catch all for foo*@mydomain.com to go to a mailbox, and I put foo-www-slashdot-org@mydomain.com when putting my email into a site, that way I know who is selling my email addresses, and blocking it is as simple as blocking all mail to foo-www-slashdot-org@mydomain.com
<1> it's a lot easier than ****ing with "hiding" it
<0> oh yea.. but if you surf with 56 k, like 200 emails ion your mailbox does the different



<1> use a webmail account for it then
<3> @php echo preg_replace("/(.)/e", "sprintf(\"\\x%02X\", ord(\"\\1\"))", "abc@xyz.com");
<4> Result: \x61\x62\x63\x40\x78\x79\x7A\x2E\x63\x6F\x6D
<3> hmm
<0> thank you pizza_milkshake
<3> you're welcome
<1> that'll be $5
<0> :)
<2> umm
<2> that's wrong
<2> <3> @php echo preg_replace("/(.)/e", "sprintf(\"\\x%02X\", ord(\"\\1\"))", "abc@xyz.com");
<2> <4> Result: \x61\x62\x63\x40\x78\x79\x7A\x2E\x63\x6F\x6D
<2> little too many chars there
<2> \x2e\x63\x6f\x6d
<2> oh
<2> doh
<2> .com
<3> @php echo preg_replace("/(.)/e", "\"\\\\\\x\".dechex(ord(\"\\1\"))", "abc@xyz.com");
<4> Result: \x61\x62\x63\x40\x78\x79\x7a\x2e\x63\x6f\x6d
<5> \\\\\\
<5> awesome
<3> that one was fun to figure out
<1> @php echo "Test";
<6> this is kind of stupid.. but how do you check IF (foo=1 AND bar=2) {}
<7> @php-add Zenethian
<4> User has been added to PHP command: zenethian
<5> @php foreach("i like butt***" as $l) { printf("\x%02X", (int)$l); }
<4> PHP Warning: Invalid argument supplied for foreach()
<4> Result:
<5> oh **** you php
<5> grow up
<2> explode!
<6> is there an ampersand or something?
<5> chalupah: how's my script treating you?
<6> ahh, it's still broke
<0> pizza_milkshake, but if you add it in a link, when you press it, it cames encoded. is the email program be able to decode the string itself ?
<5> sounds like something i wrote
<6> it's trying to delete that same subdir on the ftp now
<5> the hell?
<6> seriously.. how do I check for two statements to be true in an IF?
<5> python or php?
<6> yeah, and ftp says.. nuh uh, it's a dir not a file
<6> php
<5> if(cond1 && cond2) { }
<6> damn
<5> if you use two of them together, it short-circuits early if cond1 is false
<6> I guessed right.. I was hoping that was why my script wasn't working
<5> because cond2 could not possibly influence the && after that
<5> same thing with ||, it'll bail early if the left side is true
<5> that's why
<6> || is or?
<5> mysql_query("zig") or die("foo");
<5> works
<5> yeah
<5> php can do "and" and "or" too
<2> isn't or the same as ||
<7> yeah
<7> and is &&
<5> In [3]: True and True



<5> Out[3]: True
<5> as can python
<6> I'll forward the error log on to you later
<6> I'm going to go debug this **** at the bar
<5> i'm strongly considering reimplementing it
<5> since it's giving you so much trouble
<6> I'm find with that if you want to
<6> it's got to be close though :P
<5> FTP just ****s
<5> if i could portably ask the server "hey, when was file zoop created"
<5> and have it give me a UNIX timestamp
<5> the code would drop complexity twofold
<3> @php echo preg_replace("/\[xX]([[:xdigit:]]+)/", "hexdec(\"\\1\")", "Some crappy email: \x61\x62\x63\x40\x78\x79\x7a\x2e\x63\x6f\x6d");
<4> Result: Some crappy email: abc@xyz.com
<6> mm, I think your way works fine
<6> why is it trying to delete stuff?
<3> those spambots will never get him
<5> it shouldn't...
<0> pizza_milkshake, but if you add it in a link, when you press it, it cames encoded. is the email program be able to decode the string itself ?
<5> ever...
<3> jackp10: in a mailto:?
<0> yes
<8> that was fun
<3> no, a mailto would have to be urlencoded, i think...
<6> forwarded the log on to you
<5> i don't have any delete logic coded in
<3> just % instead of \x
<5> if f in listing: ftp.delete(f)
<5> oh, wait, yes i do
<6> :P
<3> @php echo preg_replace("/(.)/e", "\"%\".dechex(ord(\"\\1\"))", "abc@xyz.com");
<4> Result: %61%62%63%40%78%79%7a%2e%63%6f%6d
<6> peace out, email me if you like
<5> k
<5> http://www.gamedev.net/gamejobs/default.asp?jobid=1057
<3> @php echo preg_replace("/%([[:xdigit:]]{2})/", "hexdec(\"\\1\")", "mailto:%61%62%63%40%78%79%7a%2e%63%6f%6d");
<4> Result: mailto:hexdec("61")hexdec("62")hexdec("63")hexdec("40")hexdec("78")hexdec("79")hexdec("7a")hexdec("2e")hexdec("63")hexdec("6f")hexdec("6d")
<5> should i apply for that
<3> yikes
<8> !op
<8> :(
<3> @php echo preg_replace("/%([[:xdigit:]]{2})/e", "hexdec(\"\\1\")", "mailto:%61%62%63%40%78%79%7a%2e%63%6f%6d");
<4> Result: mailto:979899641201211224699111109
<3> hmm
<8> !php op("fedt");
<8> wtf?
<5> ew, palm springs
<0> ehi pizza, i can see that you are quiet friendly with reg_exp
<3> yes, i like them
<3> when they work :/
<0> i need to learn them once for all
<3> oh, duh
<3> @php echo preg_replace("/%([[:xdigit:]]{2})/e", "ord(hexdec(\"\\1\"))", "mailto:%61%62%63%40%78%79%7a%2e%63%6f%6d");
<4> Result: mailto:5757575449494952574949
<3> argh
<3> @php echo preg_replace("/%([[:xdigit:]]{2})/e", "chr(hexdec(\"\\1\"))", "mailto:%61%62%63%40%78%79%7a%2e%63%6f%6d");
<4> Result: mailto:abc@xyz.com
<3> jackp10: get Mastering Regular Expressions by Jeffrey Friedl
<0> i am looking it now..
<9> wow. that was impressive
<9> in the time it took me to place my order, this tv show downloaded
<0> i will buy it for sure
<0> i am going to bed now...
<0> thank you pizza_milkshake again for you help
<3> jackp10: you're welcome
<0> good night to all
<8> nautilus crashed!?!??!?!??? AHHHHHHHHHHHH!!!!!!!!!!!
<3> fedt: ...
<8> :(
<10> http://www.infotecbusinesssystems.com/index.asp?op=company.videoUpdate
<11> findingOhio; uhhhhhhhhhh
<11> findingOhio; does it do anything?
<3> @php function a($a,$b,$x){while(ord($a[$i])||ord($b[$i])){$t=$a[$i]+$b[$i]+$c;if($c=$t>9)$t-=10;$a[$i]=$t;$i++;}$c&&$a[$i]=$c;$x=$a;}function fib($n){$f=array("0","1","1");for($i=2;$i<=$n;$i++){$j=$i%3;$k=($j+1)%3;$l=($k+1)%3;a($f[$k],$f[$l],&$f[$j]);}for($i=strlen($f[$j]);$i>=0;)echo$f[$j][$i--];}fib(100);
<4> Result: 354224848179261915075


Name:

Comments:

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






Return to #php
or
Go to some related logs:

#allnitecafe
Raunak Ritika
#india
#kl
#allnitecafe
radyo pls
serial number vegas5.0
#kl
#allnitecafe
#chat-world



Home  |  disclaimer  |  contact  |  submit quotes