porneL

8,017
reputation
444 views

Registered User

name porneL
member for 1 year
seen 9 hours ago
website
location GB
age
10h
answered How to remove an individual text node in a div without removing all of them?
1d
revised Height 100% not working for DIV tag in Internet Explorer 8
added 264 characters in body; added 45 characters in body
1d
answered Height 100% not working for DIV tag in Internet Explorer 8
1d
answered What is a good example to show to a non-programmer to explain what programming “looks like”?
1d
answered What is the best way to get clean semantic XHTML from MS word documents?
1d
comment Sound effects in JavaScript / HTML5
Audio objects are autobuffered. They're designed analoguous to Image objects, so oldschool image preloading techniques work with audio too.
1d
accepted Sound effects in JavaScript / HTML5
2d
answered Tools for JPEG optimization?
2d
answered Sound effects in JavaScript / HTML5
Dec
18
comment Which should generate the HTML: JavaScript or php?
Assuming server-side has some form of templating language, you'd still have separation of app logic and presentation.
Dec
18
answered Which should generate the HTML: JavaScript or php?
Dec
17
comment iPhone Disabling UIActionSheet buttons
Never use description for comparing classes. Correct way is to use use [view isKindOfClass:NSClassFromString(@"UIThreePartButton")];
Dec
17
accepted How do I match a parent who has a specific child?
Dec
16
answered How do I match a parent who has a specific child?
Dec
16
accepted post/redirect/get
Dec
16
answered post/redirect/get
Dec
16
comment php preg_match problem
Assertions FTW!
Dec
16
comment How to create embeddable gadget with Javascript and PHP?
<script src=….php> would have worked too. File extensions are meaningless in HTTP, it's more important to send appropriate Content-Type header: header('Content-Type:application/javascript');
Dec
16
answered Can the behaviour of new HTML5 form types be overridden?
Dec
16
answered How to create embeddable gadget with Javascript and PHP?
Dec
15
revised Hidden Features of MySQL
added 20 characters in body
Dec
14
answered Blocking comment spam without using captcha
Dec
14
accepted What does the leading semicolon in JavaScript libraries do?
Dec
13
accepted Alt text showing in IE and firefox but not in safari?
Dec
13
comment Alt text showing in IE and firefox but not in safari?
AFAIK there's no way to enable proper alt support (you'd have to hack it with scripts, which probably isn't worth the hassle). Safari doesn't have user-accessible option to disable images. You could add title, which will let users figure out what is what via tooltips.
Dec
13
answered Alt text showing in IE and firefox but not in safari?
Dec
13
answered php preg_match problem
Dec
13
accepted Showing percentage complete of PHP script
Dec
13
revised Objective-C: CoreData Getting related Entity in one-to-many
formatting
Dec
13
comment Showing percentage complete of PHP script
Long-lived PHP tasks have to execute set_time_limit(0) and ignore_user_abort(true) to avoid being killed, and then it doesn't matter if they're launched by user or via fopen('http://…).
Dec
12
comment Is there a way to use a different image for each side of a CSS3 border-image?
IE? Seriously? :)
Dec
12
revised Showing percentage complete of PHP script
deleted 1 characters in body; deleted 5 characters in body
Dec
12
answered PHP Remote file streaming with Resume Support
Dec
12
revised Showing percentage complete of PHP script
added 284 characters in body
Dec
12
answered Showing percentage complete of PHP script
Dec
9
awarded  Nice Answer
Dec
9
revised How to display an email address for users but hide from robot? Is there a simply way to do it using PHP, Javascript or Jquery?
added 91 characters in body
Dec
9
answered How to display an email address for users but hide from robot? Is there a simply way to do it using PHP, Javascript or Jquery?
Dec
9
answered What does the leading semicolon in JavaScript libraries do?
Dec
4
comment Strategy for developing namespaced and non-namespaced versions of same PHP code
Could you provide more complete example? `use \Exception as Exception; use Foo\Bar\Exception as Foo_Bar_Exception; class Foo_Bar_Exception extends Exception {}` gives "Fatal error: Cannot declare class Foo_Bar_Exception because the name is already in use"
Dec
4
awarded  Nice Question
Dec
4
comment Strategy for developing namespaced and non-namespaced versions of same PHP code
@Kevin: For me, yes. Classes with super-long prefixes are annoying to work with, and I'm planning to maintain this code for a long time.
Dec
4
comment Which are unsolvable problems in programming world?
It's not solvable in all cases, but it is solvable in many cases. I can tell that while(1); doesn't halt, and while(0); halts. Take it from there and you've got static analyzer.
Dec
3
answered How can I store and retrieve images from a MySQL database using PHP?
Dec
3
revised Strategy for developing namespaced and non-namespaced versions of same PHP code
added 61 characters in body
Dec
3
comment Strategy for developing namespaced and non-namespaced versions of same PHP code
That's not sufficient. global classes and functions need to be prefixed with backslash, e.g. Exception extends \Exception.
Dec
2
comment Strategy for developing namespaced and non-namespaced versions of same PHP code
@Byron Whitlock: I don't want to do 2× work, which is why I'm asking! I'd like to get competetive advantage by jumping to 5.3 early, but I don't want to abandon existing users.
Dec
2
asked Strategy for developing namespaced and non-namespaced versions of same PHP code
Nov
28
answered How to declare a two dimensional array most easily in PHP?
Nov
27
comment Why isn’t PostgreSQL as widespread as MySQL?
Indeed, multi-row upsert is what keeps my application locked to mysql :(