[nyphp-talk] How do you guys set up work as a contractor?

2012-10-03 Thread Anthony W.
I've recently had to close down shop at a start up and pretty much the world is my oyster. If I were to take up a contracting gig what cool products do you guys use on Windows/Linux for time tracking and project management? -Anthony -- Anthony W. ant92...@gmai

Re: [nyphp-talk] Are Singletons Really Evil?

2012-03-19 Thread Anthony W.
global data is sometimes necessary 3.) limit abuse of finite system resources I could go on all day about this but I would like to hear other arguments. -- Anthony W. ant92...@gmail.com ___ New York PHP User Group Community Talk Mailing List http://

Re: [nyphp-talk] PHP 5.4.0

2012-03-02 Thread Anthony W.
I am looking forward to array dereferencing from function return statements. function foo() { return array('awesomeness'=>'PHP'); } echo foo()['awesomeness']; -- Anthony W. ant92...@gmail.com ___ New York PHP

Re: [nyphp-talk] Adding indexes

2010-03-22 Thread Anthony W
It depends on where the join is occurring. If you have a HABTM relationship between the join tables then a index should be added to the pivot table. If not then I would assume that the column you are joining on would be a candidate for an index. Do these tables have a PRIMARY KEY already est