| bio | website | centraldesktop.com |
|---|---|---|
| location | California | |
| age | 35 | |
| visits | member for | 4 years, 4 months |
| seen | 12 hours ago | |
| stats | profile views | 241 |
Engineer and Scrum Master. Been involved in architecture and implementation of scalable web apps since the late 90's. Professionally involved in large scale applications using Perl, Java, PostgreSQL, MySQL and PHP. Most recently, I've taken a liking to Ruby. Love PGSQL, Java, and Ruby while loathing MySQL and PHP.
|
Oct 1 |
comment |
How can I code sign an iOS .xarchive so a client can resign properly? (using push notifications) Can you share the process they used to re-sign the archive? |
|
Dec 23 |
comment |
Embed Adobe Air/Flex application inside a standard iOS application Nope sorry. We'll be having our partner create a white labeled app for us instead. |
|
Aug 31 |
comment |
Embed Adobe Air/Flex application inside a standard iOS application Added small clarification based on your feedback, thanks. |
|
Aug 31 |
comment |
Embed Adobe Air/Flex application inside a standard iOS application Sorry, I think of an application as it's functionality, not the .app or executable containers. |
|
Aug 29 |
comment |
Embed Adobe Air/Flex application inside a standard iOS application I was under the impression that I could link against any object or shared object I wanted to within Xcode iOS projects. |
|
Jun 4 |
comment |
Does Java support default parameter values? @PhiLho Yup, I love Scala but I don't mind lack of the feature in Java. It's really not that big of a deal that it is missing IMO. Scala allows them most of the time but will, in some circumstances at compile time, produce AmbiguousSignature errors (or something like that). |
|
Aug 25 |
comment |
How can I optimize a query that does an ORDER BY on a derived column in MySQL? I don't know how often you are adding / pruning data but you might want to make a summary table and select from there (where you only have the results of the inner query). You can maintain with code or with insert / update triggers. That will cause all sorting to be done with an appropriate index (if you add one). |
|
Aug 25 |
comment |
How can I optimize a query that does an ORDER BY on a derived column in MySQL? As long as you have no WHERE condition it's going to do a full table scan. If you could put any sort of condition on the query at all it will help considerably. My query will only help speed up the sort ... not so much reduce the number of rows scanned. |
|
Aug 24 |
comment |
Use SCRUM when team members juggle different roles? @Andy ... no doubt. It's just a question worth asking. (IT or Customer Support) and Engineering don't have a lot of skill overlap so it's odd to see the two (or three) grouped. I think when you do it's often a management decision that you should question ... by speaking up or voting with your feet and finding a better company to work for. |
|
Jul 4 |
comment |
Scalable, Delayed PHP Processing Sad this answer is getting mod'd down so much. There are ways of accomplishing this task in PHP yes, but it's just not that good at it. If you want to scale (without massive amounts infrastructure like the Facebook's of the world that are scaling with PHP) you just don't use PHP. Despite what the marketing literature says, PHP is not designed to scale in any way. Want to scale like Facebook, etc? Pass off your messages into a queue of some sort (ActiveMQ with its STOMP support is a good choice) or to a scala or erlang backend. Now back to my 4th of July drinking and BBQing... |
|
Jun 11 |
comment |
GIT vs. Perforce- Two VCS will enter… one will leave re #6 (stash): p4 shelve, it's new. |
|
May 26 |
comment |
Replace string key of PHP array and on another machine: $ php -v PHP 5.2.11 with Suhosin-Patch 0.9.7 (cli) (built: Dec 11 2009 16:30:44) Copyright (c) 1997-2009 The PHP Group Zend Engine v2.2.0, Copyright (c) 1998-2009 Zend Technologies |
|
May 26 |
comment |
Replace string key of PHP array $ php -v PHP 5.3.1 (cli) (built: Feb 11 2010 02:32:22) Copyright (c) 1997-2009 The PHP Group Zend Engine v2.3.0, Copyright (c) 1998-2009 Zend Technologies |
|
Apr 27 |
comment |
Ruby: How to post a file via HTTP as multipart/form-data? That one did it for me, exactly what I was looking for and exactly what should be included without the need for a gem. Ruby is so far ahead, yet so far behind. |
|
Feb 5 |
comment |
PostgreSQL Autoincrement Quoting the table names is a habit since I inherited a DB that had mixed case names and quoting table names is a requirement of use. |
|
Dec 3 |
comment |
Postgresql 8.3, simple query not using index +1 It's all about the cardinality of the values. |
|
Nov 24 |
comment |
How do I change the shell for php's exec() I have no experience with safe mode so perhaps that is your problem. Try turning it off? You shouldn't be using it anyway, it's going away and was a bad idea from the beginning (list most PHP language "features") php.net/manual/en/features.safe-mode.php |
|
Nov 18 |
comment |
Postgres dump of only parts of tables for a dev snapshot I used this technique to great success to do the same thing as the OP. For test runs I loaded COPY (SELECT .. ) TO .. constrained data into a "template" database and used CREATE DATABASE test_run_XX TEMPLATE product_snapshot_XX. I of course widdled the data down to a bare minimum so the product snapshot loaded and test db creation operations are fast enough to not be a team impediment. |
|
Nov 13 |
comment |
SOLR not searching on certain fields Because there is no syntax highlighting in comments, I clarified above with a suggestion. |
|
Sep 9 |
comment |
How might I integrate phpunit with Hudson CI? This one worked for me, thanks. |