7,387 reputation
1832
bio website
location
age
visits member for 3 years, 6 months
seen 16 hours ago
stats profile views 575

Mar
20
comment How to insert/update data from one table into another table (postgresql)?
+1; i'd suggest WHERE (t.date, t.site_id, t.ip, t.block_id) = (s.date, s.site_id, s.ip, s.block_id) and LEFT JOIN upd USING (date, site_id, ip, block_id). or maybe SELECT ... FROM tmp_stat s EXCEPT SELECT ... FROM upd
Mar
20
awarded  php
Mar
19
answered preg_match to select match in first selector
Mar
1
revised Why using while(!input.eof()) loop twice not working?
removed redundant "tag" in title
Feb
26
comment So.. I need to train the team on Unit Testing - could use C&C on lesson plan
@dferraro it's been three years, how has it gone?
Feb
26
revised Mongoose.js schema description issue (array vs object)
typo
Feb
22
comment PHP Web form; styling the look of the outgoing email
html emails! must... resist... urge... to... kill...
Feb
21
comment Add usage content in shell script without getopts
@technosaurus AFAICS that check is already there: while [ "$1" != "" ] ...
Feb
21
comment Add usage content in shell script without getopts
or you could for i in {1..13} and get rid of the subshell.
Feb
20
answered Add usage content in shell script without getopts
Feb
18
answered Node.JS: What happens to postdata when client request is interrupted?
Feb
15
comment mod_rewrite slash snafu
change it to <a href="/foo/second"/>.
Feb
14
comment Having never written any automated tests, how should I start behaviour-driven development?
btw, i'm not saying that you should test everything. unit testing is not excused from the law of diminishing returns. as i wrote, testability is mostly a function of separation of concerns and substitutable dependencies. in OOP, this means avoiding "god" objects, singletons, hardcoded collaborator objects. if your Customer objects need access to the database, they should accept an instance of DbConnection into the constructor. DbConnection should be an interface, not a concrete class. etc.
Feb
14
comment Having never written any automated tests, how should I start behaviour-driven development?
The thing is, lot's of bugs are caused by programmers thinking that "it obviously calls that method", until unexpected behavior proves them wrong: "oh, it does not call it when this or that" (or "it calls it with wrong arguments"). "there are two kinds of programs, those that contain no obvious errors and those that obviously contain no errors." we usually think our code falls in the latter category, when it's mostly in the former one.
Feb
14
answered Having never written any automated tests, how should I start behaviour-driven development?
Feb
14
comment Having never written any automated tests, how should I start behaviour-driven development?
+1 for the TDDBE book mention. i'd just like to add that it's not OOP that enables testing, it's resolute separation of concerns, and substitutable dependencies.
Feb
13
comment OOP beginner: classB extends classA. classA already object. method in classB needed.. etc
@Yvo, mhitza's answer is really sound. this solution gives you most flexibility and least potential for error.
Jan
7
revised compare data in two files and replace if not matching
added 196 characters in body
Jan
7
answered compare data in two files and replace if not matching
Jan
7
reviewed Approve suggested edit on compare data in two files and replace if not matching