nohat
|
Registered User
|
|
2d |
comment |
Really “wow” them in the interview beta blockers++ |
|
2d |
comment |
Really “wow” them in the interview Ask your doctor for a prescription for metoprolol. |
|
Nov 11 |
comment |
How can I install several CPAN distributions at once? Why the downvote? |
|
Nov 6 |
answered | How can I install several CPAN distributions at once? |
|
Oct 14 |
comment |
Should I use $hash{”string”} or $hash{string} in Perl? $foo{baz} always means $foo{baz}. There isn't really any gotcha. I would say it's a gotcha if $foo{baz} sometimes meant something else, but it doesn't, so it's not. |
|
Oct 6 |
comment |
Php code formatter / beautifier and php beautificaton in general FWIW, this appears to be a closed-source app and is not available for Mac OS X. |
|
Oct 1 |
comment |
Should I use $hash{”string”} or $hash{string} in Perl? what gotchas exactly does always quoting avoid? |
|
Sep 30 |
comment |
How can I add a newline after X number of characters in Perl? 1. Addition is a mathematical operation in Perl, even on strings; you want the string concatenation operator '.'. 2. The 3rd argument to substr is the length of the substring, not the offset of the end of the substring. 3. Newline has to be in double quotes: "\n"; '\n' is the literal string \n. 4. The test in your while loop is backwards; it should be while(length($string)>$x). |
|
Sep 30 |
answered | How can I add a newline after X number of characters in Perl? |
|
Sep 24 |
comment |
Escaping a literal <?php and <? in a PHP script HTML encoding would only work if the output were HTML. It's not—it's a php.ini file |
|
Sep 23 |
asked | Escaping a literal <?php and <? in a PHP script |
|
Sep 14 |
comment |
How to pass variable number of arguments to a PHP function Is it possible to use call_user_func_array() with an object method call? |
|
Sep 14 |
comment |
How to pass variable number of arguments to a PHP function Yes, thank you. call_user_func_array() is exactly the function I was looking for. |
|
Sep 14 |
asked | How to pass variable number of arguments to a PHP function |
|
Sep 14 |
comment |
What factors could determine whether Clojure, Scala or Haskell will gain traction? Running on the JVM and .NET is attractive because it enables easy and deep integration with existing codebases on those runtimes. |
|
Sep 11 |
comment |
How to combine the keys and values of an array in PHP I accept this answer because it is straightforward, and how I ended up solving my problem. I am disappointed there is no way to do it in a single expression, avoiding the need for the temporary $out variable. |
|
Sep 11 |
comment |
How to combine the keys and values of an array in PHP array_map(), it seems, only gives you the array's values |
|
Sep 11 |
asked | How to combine the keys and values of an array in PHP |
|
Sep 4 |
awarded | ● Commentator |
|
Sep 4 |
comment |
PHP Constants Containing Arrays? I agree with John—PHP should allow array constants. Perl permits that, and array constants in Perl can be quite handy. |
|
Aug 27 |
awarded | ● Yearling |
