Peter Bailey

14,278
Reputation
572 views

Registered User

Name Peter Bailey
Member for 1 year
Seen 21 hours ago
Website
Location Dallas, TX
Age 30
Developer of PHP, JavaScript, ActionScript, Flex, and a few other things. Also, beer is awesome.
"The programmer, who needs clarity, who must talk all day to a machine that demands declarations, hunkers down into a low-grade annoyance. It is here that the stereotype of the programmer, sitting in a dim room, growling from behind Coke cans, has its origins. The disorder of the desk, the floor; the yellow Post-It notes everywhere; the whiteboards covered with scrawl: all this is the outward manifestation of the messiness of human thought. The messiness cannot go into the program; it piles up around the programmer." -Ellen Ullman
1h
awarded  Nice Answer
1d
answered MySQL Resetting the index count to 0
Nov
23
accepted simple php script to retrieve google keyword search completion
Nov
23
answered simple php script to retrieve google keyword search completion
Nov
21
revised PHP - detecting non-English letters and filtering input
edited tags; edited title
Nov
20
comment PHP syntax error T_ENCAPSED_AND_WHITESPACE
codinghorror.com/blog/archives/…
Nov
19
answered How to remove any html tags with nothing but optional whitespace between them
Nov
19
comment Passing parameters using a Zend Framework redirect without appending to URL
Well awesome. Glad my answer pointed you in the right direction.
Nov
19
accepted Passing parameters using a Zend Framework redirect without appending to URL
Nov
19
answered Passing parameters using a Zend Framework redirect without appending to URL
Nov
19
answered Facebook app shows a blank page
Nov
18
comment DOMElement cloning and appending: ‘Wrong Document Error’
Perfect, Thanks. I was searching through the DOMNode and DOMElement APIs looking for something that would let me do this and (foolishly) never checked the DOMDocument methods =/
Nov
18
asked DOMElement cloning and appending: ‘Wrong Document Error’
Nov
17
accepted How to retain context across an Ajax call
Nov
17
comment Javascript String Assignment Operators
But even with numbers the minus sign is not "decrement", that's minus-minus --. Minus-equals -= is just a convenience operator that's a compound operator analagous to the expression a = a - b
Nov
17
answered Javascript String Assignment Operators
Nov
17
answered How to retain context across an Ajax call
Nov
17
answered Can I use JS encryption instead of SSL for credit card payments?
Nov
16
answered cheat prevention for browser based xmlhttp/js/perl/php game
Nov
16
answered Using UTF-8 charset with PHP - are mb functions required?
Nov
16
comment foreach loops & stdclass objects
Ok, I looked into the problem and updated my answer.
Nov
16
revised foreach loops & stdclass objects
added 354 characters in body
Nov
16
answered foreach loops & stdclass objects
Nov
16
comment How to handle Facebooks new UID sizes?
@Stefan that is correct.
Nov
16
answered How to handle Facebooks new UID sizes?
Nov
14
accepted Best alternative exception handling model
Nov
13
comment javascript function return not working.
+1 Great answer from a new user :D
Nov
13
revised Can someone explain this line of code please? (Logic & Assignment operators)
edited tags
Nov
13
comment Using the BACK button to revert to the previous state of the page
@Zarel - Thanks, fixed
Nov
13
revised Using the BACK button to revert to the previous state of the page
added 2 characters in body
Nov
13
answered Using the BACK button to revert to the previous state of the page
Nov
13
answered Cannot get CSS Drop-Down above Flash File
Nov
13
accepted How does PHP process functions in a file?
Nov
13
accepted How to use Javascript’s addEventListener() to override an HTML Form’s default submit() behavior
Nov
13
revised How to use Javascript’s addEventListener() to override an HTML Form’s default submit() behavior
added 28 characters in body
Nov
13
comment How to use Javascript’s addEventListener() to override an HTML Form’s default submit() behavior
@empraptor - Thanks! Absored answer into this example.
Nov
13
answered How to use Javascript’s addEventListener() to override an HTML Form’s default submit() behavior
Nov
13
revised PHP file writing optimization
Fixed file handling
Nov
13
answered PHP file writing optimization
Nov
13
comment How does PHP process functions in a file?
Nothing here is PHP5 only
Nov
13
answered Require a method in parent class to be called in PHP
Nov
13
answered How does PHP process functions in a file?
Nov
11
comment having problems with php syntax and foreach
To be pedantic, any value that's an array or implements Traversable can be used in a foreach loop.
Nov
11
revised Facebook Platform error: “Object cannot be liked”
added 45 characters in body
Nov
11
revised Facebook Platform error: “Object cannot be liked”
added 129 characters in body
Nov
11
comment Ignore data within a certain set of characters with PHP
No it's not. I specifically and deliberately made the subpattern ungreedy. And I believe the test string you intended to indicated is "this *** some text *** is a *** other text *** test"
Nov
11
accepted Ignore data within a certain set of characters with PHP
Nov
11
answered Ignore data within a certain set of characters with PHP
Nov
11
asked Facebook Platform error: “Object cannot be liked”
Nov
11
comment Database and OOP Practices in PHP
You and I understand the Registry and ServiceLocator patterns differently. To me, your Registry looks like a ServiceLocator (a Registry that knows how to instantiate objects) and your ServiceLocator looks like well... a ServiceLocator that's implemented into another class via composition. And nothing here looks like a Registry.