deceze

7,195
reputation
598 views

Registered User

name deceze
member for 1 year
seen 1 hour ago
website
location Tokyo
age 26
More or less independent web dude washed ashore in Japan.
5h
answered Elegant coding, how to deal with hidden/invisible HTML code ?
6h
comment Find conditions like ‘NOT EXISTS’
Oops, learned something new. :) I've never used it and interestingly it didn't even come out when searching for it in the MySQL docs.
6h
answered Continue execution after render
1d
revised Syntax error before ‘{’ token when declaring a class in cpp standards .
added 40 characters in body
1d
comment How to make PHP output a sound (beep)?
@unknown That's because there is no easy, equivalent PHP version.
1d
revised How to make PHP output a sound (beep)?
added 46 characters in body; edited title
1d
comment Find conditions like ‘NOT EXISTS’
I don't think WHERE NOT EXISTS is a valid (My)SQL expression, and I can't really imagine how you would select non-existing records anyway. Can you describe in words what you want to get?
2d
revised Why does insert from php to mysql mis-handle question marks sometimes, but from command line never?
deleted 18 characters in body
2d
answered PHP: Is there any particular difference between intval and (int)?
2d
comment Unit testing cakephp models
You could use a "blackhole" datasource for tests if you wanted to. I still don't understand why you're so vehemently against actually writing to a database. If that's the only test that's being administered it's indeed not really granular enough. But if it's one test among others that may uncover a critical problem in the database/schema/connection layer, how can it hurt?
2d
comment cakephp webservice
Why are you try and catching an echo and set() statement? Neither of those will ever throw an exception.
2d
revised cakephp webservice
added 212 characters in body
Dec
15
comment Unit testing cakephp models
I'd call array('NewsItem' => array('title' => 'A news item', 'body' => 'Some news')) a rather fixed, known quantity. Are you assuming that the test database is not cleared before and after a test? What if you change the sequence of calls made during a save() in your code, but forget to change it in the test, and are emulating a different sequence than will actually happen during a real save()? In other words: What wrong with testing save()?
Dec
15
comment Unit testing cakephp models
I agree to a point. Still, what if you'd want to test the whole chain of beforeValidate(), validation, beforeSave(), save(), afterSave() and whatever else is involved in the process? Every piece may work by itself, but you may have screwed up the logic of how they play together. In other words: What's wrong with testing Model::save(), as long as you're still testing all the other parts separately? (Which I'm sure the OP will do, right, RIGHT?)
Dec
15
comment Unit testing cakephp models
So you're saying one should test every unit, just not the unit that saves data? What if that's exactly what you want to test? Sure it adds one more variable into the mix, but so what? If it fails you need to debug the test as well, if it works you know that both the unit and the database are okay.
Dec
15
revised Unit testing cakephp models
deleted 3 characters in body
Dec
15
comment Unit testing cakephp models
Cake is clever enough to use a separate database for tests.
Dec
15
answered Unit testing cakephp models
Dec
15
revised Need help with Apache Rewrite issues
added 32 characters in body
Dec
14
revised Create li tag without and word in tag(empty)?
added 6 characters in body
Dec
14
comment PHP [OOP] : Memory allocation for Inheritance
Nitpicking: It's more like "$b is an A, but with more stuff" than "has instance of A inside". :)
Dec
14
revised Call javascript method on dynamic form element
added 16 characters in body
Dec
14
revised PHP - How to use arrays for form input and update respective database records
added 828 characters in body
Dec
14
comment PHP - How to use arrays for form input and update respective database records
Can you try to shorten that code down to only the relevant parts?
Dec
14
comment How to Wrap unspaces word for Opera Browser
Hai? Where's the PHP part, and what does it have to do with CSS?
Dec
14
revised How to Wrap unspaces word for Opera Browser
added 36 characters in body
Dec
14
revised how to insert multiple array into database using PHP
added 236 characters in body
Dec
14
accepted Advice needed from PHP/Cake PHP expert
Dec
14
accepted Feasibility of HAML + PHP/CakePHP
Dec
13
comment Css classes in CakePHP?
It makes sense if you're generating the table in a Helper. Rather than working with string concatenation or even breaking out of PHP you just write arrays. In a normal template it's borderline… :)
Dec
12
accepted CakePHP Authentication with Prefix Routing
Dec
12
answered Css classes in CakePHP?
Dec
11
comment What is the best method to code physical address in html ?
@Jitendra No. Classes are not required to have a specified style.
Dec
11
revised PHP Remove JavaScript
added 5 characters in body
Dec
11
answered PHP Remove JavaScript
Dec
11
comment The URL Security
What are you trying to protect against? A URL in and of itself is not something to protect against. How your application handles the input is where the possible intrusion happens, and this simple filter won't automagically protect every following layer.
Dec
11
answered CakePHP Authentication with Prefix Routing
Dec
10
revised Why this fails in PHP?
added 86 characters in body
Dec
10
accepted Why this fails in PHP?
Dec
10
answered Why this fails in PHP?
Dec
10
comment What is The Zen of C++
Wow, I got it, and I don't even program in C++! Apparently I read too much stuff on the interwebs. ^_^
Dec
10
comment PHP: Need to Expire Sessions for my webapp, when back button is pressed
+1 for Gumbo. If your app can't handle the back button, you're doing something wrong. It's easy to even do it by mistake, keyboard shortcuts for tab switching and back/forward are very similar on some browsers.
Dec
10
accepted CakePHP: image inside link, want to make link point to image location
Dec
10
answered CakePHP: image inside link, want to make link point to image location
Dec
10
answered Adding a prefix to every URL in CakePHP
Dec
8
accepted PHP using CURL: is there a way to emulate a cookie instead of saving it to a file?
Dec
7
awarded  Popular Question
Dec
7
revised PHP using CURL: is there a way to emulate a cookie instead of saving it to a file?
added 75 characters in body
Dec
7
answered PHP using CURL: is there a way to emulate a cookie instead of saving it to a file?
Dec
6
comment Why is JavaScript considered bad by some?
I dare say most blinking images are not implemented using Javascript and are just good ol' animated GIFs.