142,465 reputation
8110220
bio website kunststube.net
location Germany
age 30
visits member for 4 years, 9 months
seen 8 hours ago
stats profile views 10,527

More or less independent web dude washed ashore in Japan.
More or less recently more less than more.
More recently also less Japan and more Europe.

Is writing articles about topics that keep popping up regularly on Stackoverflow but seldom get the treatment they require, like:

Sometimes publishes smaller fallout projects on his Github account, like:


8h
comment javascript: access function in closure
@Kirill Makes perfect sense. How do you call foo or bar in the first example using a "variable function" name? E.g. window[foo]() works fine in the global scope, this[foo]() doesn't.
9h
comment Prevent PHP from automatically urldecoding my requests
A more concrete example of a URL and the undesired result would help. Are you correctly encoding the URL to begin with? blog.lunatech.com/2009/02/03/…
9h
answered Web path instead of actual path
11h
comment Upload images or Get images with $_GET function
What is your problem with it exactly?
11h
comment PHP + Charset UTF-8 and the character ô
This has nothing to do with UTF-8, you're just unnecessarily messing with your data. The Great Escapism (Or: What You Need To Know To Work With Text Within Text)
11h
comment File writing PHP
Slowly read the logic again. If file exists, ELSE if count is > 100...
11h
revised conflict in login system form - PHP
deleted 52 characters in body
11h
comment Create a php array with keys and values from mysql query
@steven Not if there's only one row. ;-P $arr Seems to be only one row though, so if that's the desired output the question makes no sense. Well, it doesn't either way.
12h
comment Json encoded array issues
What is your issue?
12h
comment Create a php array with keys and values from mysql query
The inner loop is completely superfluous.
12h
comment Create a php array with keys and values from mysql query
Is that example supposed to be one row or several rows? Isn't $aRow already in the format you want?
12h
comment PHP undefined chars ? in output
Don't use HTML entities when you're not in an HTML context! Lucky for you I have used up my votes for today.
12h
comment PHP undefined chars ? in output
If this is a trick question, then it is probably to test you and your string/encoding knowledge, which you indeed seem to lack. → What Every Programmer Absolutely, Positively Needs To Know About Encodings And Character Sets To Work With Text
12h
comment wamp local testing security
Security has a lot to do with attack surface. A computer that's not connected to anything has very little attack surface. A computer that is connected to the net but has no open ports has very little attack surface. A computer connected to the net with lots of running services with open ports has a lot of attack surface. Yes, it is more of a risk to have WAMP running than it is not to. On a development machine which is correctly configured and otherwise secured this should not be a problem. You should certainly have some firewall in place, don't expose WAMP to the wide open internet.
12h
comment PHP list() — explode() offset error
Are you 1000% sure the value of $hash is "44253_13456789"? Then this should not happen!
13h
comment Use method=“POST”
So... change the method to "POST"?
13h
answered Improving speed of generating HTML table
13h
comment wamp local testing security
Provide more details about what exactly has gotten you worried. Being worried about "security" is good, but not constructive without context since too broad.
13h
comment Find non-ASCII characters in a text file and convert them to their Unicode equivalent
What Every Programmer Absolutely, Positively Needs To Know About Encodings And Character Sets To Work With Text
14h
comment Special Characters (encoding issue)
What Every Programmer Absolutely, Positively Needs To Know About Encodings And Character Sets To Work With Text, Handling Unicode Front To Back In A Web App