| action | Khisanth wonders why the Ubuntu installer is checking for packages to remove |
| Khisanth | wonders why the Ubuntu installer is checking for packages to remove |
| ology | bad sign |
| Khisanth | German language files .... why the hell did it install that in the first place?! |
| zOrK | how can I recognize if a var doesn't have info inside, this seems to be failing: chomp($content); if ($content ne "") { |
| revdiablo | eval: $content = ""; $content ne "" ? "true" : "false"; |
| buubot | revdiablo: false |
| revdiablo | zOrK: ne means not equal. Your if statement will execute if $content has a value other than the empty string. |
| zOrK | revdiablo, yup, but I've got an else { which is somehow not working, please: take look a this: it's a web descriptor extractor |
| revdiablo | I hope you're not about to paste a buncha code =) |
| action | Shaine_ was afraid of that too |
| Shaine_ | was afraid of that too |
| zOrK | nonono, pastebin |
| digitok | eval: $_ = NULL; $_ ne '' ? 'true' : 'false'; |
| buubot | digitok: true |
| zOrK | http://pastebin.ca/484186 |
| buubot | The paste 484186 has been copied to http://erxz.com/pb/2637 |
| revdiablo | digitok: That's a bareword string |
| digitok | > ? |
| revdiablo | eval: $_ = NULL; [$_] |
| buubot | revdiablo: ['NULL'] |
| digitok | oh eval: $_ = $false; [$_] |
| buubot | digitok: [undef] |
| digitok | eval: $_ = $false; $_ ne '' ? 'true' : 'false'; |
| buubot | digitok: false |
| digitok | heh |
| tybalt89 | eval: $_ = undef; $_ ne '' ? 'true' : 'false'; |
| buubot | tybalt89: false |
| revdiablo | undef stringifies to an empty string |
| digitok | $false doesn't |
| revdiablo | $false is a scalar, it stringifies to whatever value it holds at the time eval: $false = "Hi"; \$false |
| buubot | revdiablo: \'Hi' |
| digitok | eval: $_ = undef; \$_ |
| buubot | digitok: \undef |
| digitok | eval: $_ = undef;[$_] |
| buubot | digitok: [undef] |