User reefnet_alex - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T14:54:49Zhttp://stackoverflow.com/feeds/user/2745http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/28982/please-explain-mapreduce-simply19Please explain MapReduce simplyreefnet_alex2008-08-26T19:58:57Z2009-12-03T19:08:51Z
<p>Related to my <a href="http://beta.stackoverflow.com/questions/28975/anyone-using-couchdb" rel="nofollow">CouchDB</a> question....</p>
<p>Can anyone explain MapReduce in terms a numbnuts could understand?</p>
http://stackoverflow.com/questions/28975/anyone-using-couchdb30Anyone using CouchDB?reefnet_alex2008-08-26T19:55:29Z2009-10-25T19:22:37Z
<p>I've followed the <a href="http://incubator.apache.org/couchdb/index.html" rel="nofollow">CouchDB</a> project with interest over the last couple of years, and see it is now an Apache Incubator project. Prior to that, the CouchDB web site was full of <em>do not use for production code</em> type disclaimers, so I'd done no more than keep an eye on it. I'd be interested to know your experiences if you've been using CouchDB either for a live project, or a technology pilot. </p>
http://stackoverflow.com/questions/67299/is-unit-testing-worth-the-effort/67500#67500122Answer by reefnet_alex for Is Unit Testing worth the effort?reefnet_alex2008-09-15T22:06:22Z2009-08-19T15:14:51Z<p>Every day in our office there is an exchange which goes something like this:</p>
<blockquote>
<p>"Man, I just love unit tests, I've just been able to make a bunch of changes to the way something works, and then was able to confirm I hadn't broken anything by running the test over it again..."</p>
</blockquote>
<p>The details change daily, but the sentiment doesn't. Unit tests and TDD have so many hidden and personal benefits as well as the obvious ones that you just can't really explain to somebody until they're doing it themselves. </p>
<p>But, ignoring that, here's my attempt!</p>
<ol>
<li><p>Unit Tests allow you to make big changes to code quickly. You know it works now because you've run the tests, when you make the changes you need to make, you need to get the tests working again. This saves hours. </p></li>
<li><p>TDD helps you to realise when to stop coding. Your tests give you confidence that you've done enough for now and can stop tweaking and move on to the next thing.</p></li>
<li><p>The tests and the code work together to achieve better code. Your code could be bad / buggy. Your TEST could be bad / buggy. In TDD you are banking on the chances of BOTH being bad / buggy being low. Often it's the test that needs fixing but that's still a good outcome. </p></li>
<li><p>TDD helps with coding constipation. When faced with a large and daunting piece of work ahead writing the tests will get you moving quickly.</p></li>
<li><p>Unit Tests help you really understand the design of the code you are working on. Instead of writing code to do something, you are starting by outlining all the conditions you are subjecting the code to and what outputs you'd expect from that. </p></li>
<li><p>Unit Tests give you instant visual feedback, we all like the feeling of all those green lights when we've done. It's very satisfying. It's also much easier to pick up where you left off after an interruption because you can see where you got to - that next red light that needs fixing. </p></li>
<li><p>Contrary to popular belief unit testing does not mean writing twice as much code, or coding slower. It's faster and more robust than coding without tests once you've got the hang of it. Test code itself is usually relatively trivial and doesn't add a big overhead to what you're doing. This is one you'll only believe when you're doing it :)</p></li>
<li><p>I think it was Fowler who said: "Imperfect tests, run frequently, are much better than perfect tests that are never written at all". I interprate this as giving me permission to write tests where I think they'll be most useful even if the rest of my code coverage is woefully incomplete.</p></li>
<li><p>Good unit tests can help document and define what something is supposed to do</p></li>
<li><p>Unit tests help with code re-use. Migrate both your code AND your tests to your new project. Tweak the code till the tests run again.</p></li>
</ol>
<p><a href="http://www.masukomi.org/talks/unit%5Ftesting%5Ftalk%5F2/index.xul?data=slide%5Fdata.txt#page1" rel="nofollow">This presentation</a> is an excellent introduction to the subject. </p>
<p>A lot of work I'm involved with doesn't Unit Test well (web application user interactions etc.), but even so we're all test infected in this shop, and happiest when we've got our tests tied down. I can't recommend the approach highly enough. </p>
http://stackoverflow.com/questions/2556/whats-the-best-online-payment-processing-solution/100758#10075835Answer by reefnet_alex for What's the best online payment processing solution?reefnet_alex2008-09-19T09:37:18Z2009-07-09T21:47:06Z<p>You can't really answer this kind of question with a "I like 'insert provide name here'" type answer because like so many things it is a balance and the reasons for choosing a payment processing solution tend to be complex.</p>
<h2>Volume / Value</h2>
<p>The most important factor in choosing a secure payment clearance service (the people who will connect to the banking networks and clear the money for you - will refer to them as SPCS) is how many widgets will you be selling at what cost. The pricing models of all the SCPS providers is based around this equation. This dictates the economics of using the service, which is nearly always the most important factor. </p>
<p>For example, in the UK <a href="http://securetrading.net" rel="nofollow">securetrading.net</a> have a large annual fee and high minimum transaction values (been a while since I've seen the exact numbers and they don't make it immediately obvious on the site, but this is for illustration only anyway) making it one of the most expensive solutions to use <em>if</em> you are selling high value low volume. Most smaller clients will fall into this model. High value is really anything over a couple of dollars. Low volume is typically anything less than tens of thousands of units per month. <em>However</em>, if you are running a donations service in the aftermath of an international environmental disaster (relatively low value <em>very</em> high volume) then they become one of the cheapest.</p>
<p>Factor in to this the setup costs (relatively high), and the cost to tie the service into the site (in SecureTrading's case it's very easy to do, but still a lot harder than adding a PayPal button) and you start to build up a true picture. </p>
<p>On the flip side, a service such as <a href="http://www.paypal.com" rel="nofollow">PayPal</a> has very low setup costs (no fee to pay, and trivially easy to integrate), but relatively high transaction costs. It is great for high value / low volume transactions.</p>
<h2>The Bank</h2>
<p>There are two main categories of payment clearance service - Bureau and Bank Acquired. </p>
<p>In the UK at least <a href="http://www.netbanx.com" rel="nofollow">NetBanx</a>, <a href="http://www.securetrading.net" rel="nofollow">SecureTrading</a> and <a href="http://www.worldpay.com" rel="nofollow">WorldPay</a> offer both bank acquired and bureau services. <a href="http://www.protx.com" rel="nofollow">ProtX</a> and <a href="http://www.secpay.com" rel="nofollow">SecPay</a> offer only bank acquired services. PayPal and its ilk operates slightly outside both definitions (see Protection below).</p>
<p>A Bank Acquired service plumbs into your normal banking merchant account and clears the funds straight into it. As well as charging you for this service, your bank will also take a slice, typically this is more than the SPCS provider will charge and so it actually is the <em>bank</em> that becomes the deciding factor. </p>
<p>Some banks will only work with their preferred provider. In the UK, most banks want you to have a separate Internet Merchant Account <em>even</em> if you already have a Merchant Account with them. </p>
<p>I always tell clients to shop around, as this will make a huge difference to how much their e-commerce venture can bring in. All banks are not created equal. </p>
<p>Bureau services effectively act as your bank at the same time as providing the clearance service. They were popular in a time when banks hadn't grasped the concept of the Internet and would prefer transactions be chiseled into stone tablets if they got their way. Often the choice between a bureau service and a bank acquired service is made for you based on circumstances.</p>
<h3>Trading History</h3>
<p>In many countries (including the UK), most banks won't give you a merchant account until you have been trading for a particular period of time (2 years in the UK). Your only option is then a bureau service.</p>
<h3>Cash flow</h3>
<p>Most bureau services will hold onto your cash as security against "charge backs". </p>
<p>If you sell me a Ferrari and I am horrified to learn that you've sold me a small metal toy rather than the 1.5 tonnes of Italian automotive passion I was expecting, I will complain to my credit card company who will refund me and then chase your merchant services provider for a refund. They will have to give them the refund and then chase you for the money.</p>
<p>It's therefore in their interests to hold on to your money for a period of 4-6 weeks to protect against this. If you sell services or goods with no capital outlay (software for instance), then you can afford this. If on the other hand, you really are having to pay your luxury car importer to provide you with stock, then cash flow becomes very important and you're going to need a bank acquired service where you can be paid immediately. </p>
<h2>Protection</h2>
<p>One major downside to PayPal and similar services is that it is not covered under the same regulations that govern credit cards. </p>
<p>Simply put, if you buy something on a credit card your card provider is liable for ensure you get what you paid for (broadly speaking, in most countries, does not constitute legal advice etc.) and if you have a problem with your purchase they will refund you very quickly and then will go and chase the person that you paid. </p>
<p>This is the kind of protection you hear about when Leo Laporte advertises American Express on his podcasts. It is a "Good Thing"TM. You don't have that protection with PayPal because when you use your credit card on PayPal, you are actually buying PayPal's service. So, even if you are mis-sold a product, the person you paid for the service (PayPal) <em>didn't</em> mis-sell, they provided the service you paid for. This breaks the chain. </p>
<p>PayPal don't have a legal obligation to protect you in the same way, and their record on refunding ripped off customers is less than spangly. I'm guessing they have "Caveat Emptor" writ large on the walls of their head office. :) </p>
<p>I'm not dissing PayPal, they are way ahead of the curve on many other security features, but just another factor to bear in mind.</p>
<h2>End to end integration</h2>
<p>Different services differ in their ease of integration. Oh boy do they differ. I'm sitting on some work right now to do an HSBC integration. I'd rather have a root canal. Some of the systems make big assumptions about the way you have to work with them, and are poorly designed or inflexible. Retro-fitting them to an active site can be very painful. Some of them are beautiful and easy to work with (and not necessarily less secure). The biggest difference is how you choose to integrate though. </p>
<p>Most services integrate by allowing you to redirect to a secure site where your customer fills in his / her details. They are finally redirected back to a page on your own site with the results of the transaction. This works well in most cases and is easiest to integrate. </p>
<p>When you buy something on Amazon, you don't get redirected to WorldPay, or PayPal however. If you want end-to-end integration, most services now will let the communication happen behind the scenes. Your own site has to have a decent secure server certificate of course, and the integration is necessarily more complex. </p>
<h2>Reputation</h2>
<p>It used to be that PayPal was used on dinky sites. You wouldn't catch Amazon using it. That perception has changed a lot, and in fact in some senses PayPal does security better than most. If your audience expects to see PayPal and you give them some other service then you may lose custom, or vice versa. These days many merchants offer a choice to customers. </p>
<h2>UK Providers</h2>
<ul>
<li><a href="http://www.worldpay.com" rel="nofollow">WorldPay</a>. Well established. Bureau and bank acquired. Relatively high transaction costs and annual costs. Fairly easy to integrate. Owned ultimately by Royal Bank of Scotland.</li>
<li><a href="http://www.secpay.com" rel="nofollow">SecPay</a>. Bank Acquired. Low per transaction cost and low annual cost and flexible payment models.</li>
<li><a href="http://www.protx.com" rel="nofollow">ProtX</a>. Bank Acquired. Low per transaction cost and low annual cost, flexible payment models. Can be quite demanding to integrate.</li>
<li><a href="http://www.hsbc.com" rel="nofollow">HSBC</a>. Bank Acquired. Low per transaction cost. High set up and annual costs. Very inflexible to integrate.</li>
<li><a href="http://www.securetrading.net" rel="nofollow">SecureTrading</a>. Bureau and Bank Acquired. Low per transaction cost but high setup and annual costs. Was a doddle to integrate last time I used it (9 years ago!)</li>
<li><a href="http://www.netbanx.com" rel="nofollow">NetBanx</a>. Bureau and Bank Acquired. Haven't used since 1996 so can't comment!</li>
</ul>
<p>And of course <a href="http://www.paypal.com" rel="nofollow">PayPal</a>, <a href="http://checkout.google.com" rel="nofollow">Google Checkout</a> and <a href="http://www.amazon.com/Flexible-Payments-Service-AWS" rel="nofollow">Amazon FPS</a> are well worth looking at and worth a whole answer on their own!</p>
<h2>Summary</h2>
<p>Told you it wasn't that simple! Usually, as developers, we're not in the position to choose for ourselves, and these decisions should be driven by the business needs of our employer / client. </p>
<p>Most e-commerce projects would start with PayPal or similar. When the business gets enough orders that they could save money by switching to another service, then they've got enough money to pay for the switch. </p>
<p><em>Disclaimer: I am UK based, and have performed many integrations with a whole slew of these services over the years, however the market changes all the time and things may have changed and your mileage may vary! I am not a lawyer or accountant, and if you take my advice it's not my fault :)</em></p>
http://stackoverflow.com/questions/53627/how-to-deal-with-poorly-informed-customer-choices5How to deal with poorly informed customer choicesreefnet_alex2008-09-10T08:30:32Z2009-06-03T08:15:08Z
<p>Here's a scenario I'm sure you're all familiar with. </p>
<ol>
<li><p>You have a fairly "hands off" customer, who really doesn't want to get too involved in the decision making despite your best efforts. </p></li>
<li><p>An experienced development team spend hours discussing the pros and cons of a particular approach to a problem and come up with an elegant solution which avoids the pitfalls of the more obvious approaches. </p></li>
<li><p>The customer casually mentions after a quick glance that they want it changed. They have no understanding of all the usability / consistency issues you were trying to avoid in your very carefully thought out approach. </p></li>
<li><p>Despite explanations, customer isn't interested, they just want it changed. </p></li>
<li><p>You sigh and do what they ask, knowing full well what will happen next...</p></li>
<li><p>3 weeks later, customer says it isn't working well this way, could you change it? You suggest again your original solution, and they seize on it with enthusiasm. They invariably seem to have had a form of selective amnesia and blocked out their role in messing this up in the first place. </p></li>
</ol>
<p>I'm sure many of you have gone through this. The thing which gets me is always when we know the time and effort that reasonably bright and able people have put in to really understanding the problem and trying to come up with a good solution. The frustration comes in contrasting this with the knowledge that the customer's choice is made in 3 minutes in a casual glance (or worse, by their managers who often don't even know what the project is really about). The icing on the cake is that it's usually made very late in the day. </p>
<p>I know that the agile methodologies are designed to solve exactly this kind of problem, but it requires a level of customer buy in that certain types of customers (people spending other peoples money usually) are just not willing to give. </p>
<p>Anyone any clever insight into how you deal with this?</p>
<p>EDIT: Oops - by the way, I'm not talking about any current or recent customer in this. It's purely hypothetical...</p>
http://stackoverflow.com/questions/77299/common-comment-tags8Common comment tagsreefnet_alex2008-09-16T21:24:58Z2009-02-23T15:18:14Z
<p>What common comment tags do you find useful, and how do you use them? </p>
<p>For instance, we standardize on:</p>
<p>//TODO: blah blah
//FIXME: blah blah
//NOTE: blah blah</p>
<p>We have an IDE plugin that is able to pick these up project wide as a reminder. </p>
<p>Do you use any of these aide memoirs? How do you use them? Are they useful? Do you find there are soon too many of them to be useful? Or do you find they clutter up your code when you never go back and tidy them out?</p>
http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/428202#4282022Answer by reefnet_alex for What's your most controversial programming opinion?reefnet_alex2009-01-09T14:19:41Z2009-01-09T14:19:41Z<p><strong>You can't write a web application without a remote debugger</strong></p>
<p>Web applications typically tie together interactions between multiple languages on the client and server side, require interaction from a user and often include third-party code that can be anything from a simple API implementation to a byzantine framework. </p>
<p>I've lost count of the number of times I've had another developer sat with me while I step into and follow through what's actually going on in a complex web application with a decent remote debugger to see them flabbergasted and amazed that such tools exist. Often they still don't take the trouble to install and setup these kinds of tools even after seeing them in action. </p>
<p>You just can't debug a non trivial web application with print statements. Times ten if you didn't right all the code in your application.</p>
<p>If your debugger can step through all the various languages in use and show you the http transactions taking place then so much the better. </p>
<p><strong>You can't develop web applications without Firebug</strong></p>
<p>Along similar lines, once you have used Firebug (or very near equivalent) you look on anyone trying to develop web applications with a mixture of pity and horror. Particularly with Firebug showing computed styles, if you remember back to NOT using it and spending hours randomly changing various bits of CSS and adding "!important" in too many places to be funny you will <em>never go back</em>. </p>
http://stackoverflow.com/questions/420048/any-tips-on-how-to-learn-cakephp-for-a-beginner/422773#4227733Answer by reefnet_alex for Any tips on how to learn CakePHP for a beginner?reefnet_alex2009-01-08T00:31:49Z2009-01-08T00:31:49Z<p>I had to bring a couple of developers up to speed quickly with CakePHP recently and I bought them a copy of <a href="http://rads.stackoverflow.com/amzn/click/1847193897" rel="nofollow">CakePHP Application Development: Step-by-step introduction to rapid web development using the open-source MVC CakePHP</a> framework by Ahsanul Bari. While CakePHP 1.2 has been a bit of a moving target for a while and so a few of the things are already out of date, it's generally an excellent introduction to using CakePHP in anger (moving beyond the typical blog tutorial).</p>
<p>DreamCatch's RTFM comment is interesting. While I'd agree that CakePHP's documentation is pretty useful now, it's patchy in places and until recently was utterly dreadful. It's come on a heap in the last year. </p>
http://stackoverflow.com/questions/350861/what-bad-practice-do-you-do-and-why/350975#3509753Answer by reefnet_alex for What "bad practice" do you do, and why?reefnet_alex2008-12-08T21:29:44Z2008-12-08T21:29:44Z<p>oh dear...</p>
<p>I commit "broken" builds. For pragmatic reasons mind you...</p>
<p>I develop on (at least) two machines - my home machine and my work machine. When it comes for time to going home, I commit my work which goes onto our production server and check it back out when I get home and carry on. Sometimes this is in a development branch, but often not. However: </p>
<ol>
<li><p>we're a very small team</p></li>
<li><p>we're not working on code that "builds" per se - it's web application development</p></li>
<li><p>we tend to be working fairly atomically - if I'm working on a particular controller it's unlikely other members of the team are also working on it</p></li>
</ol>
<p>So in practice it rarely causes a problem. It's one issue, that though we've looked at distributed version control systems (I like the look of <a href="http://bazaar-vcs.org/" rel="nofollow">Bazaar</a>), we will always need to be able to push the things we're working on somewhere that we can get to them from elsewhere...</p>
http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome/278003#2780030Answer by reefnet_alex for How to check if the given string is palindrome?reefnet_alex2008-11-10T14:35:51Z2008-11-10T14:35:51Z<p>The solutions which strip out any chars that don't fall between A-Z or a-z are very English centric. Letters with diacritics such as à or é would be stripped! </p>
<p>According to Wikipedia: </p>
<blockquote>
<p>The treatment of diacritics varies. In languages such as Czech and Spanish, letters with diacritics or accents (except tildes) are not given a separate place in the alphabet, and thus preserve the palindrome whether or not the repeated letter has an ornamentation. However, in Swedish and other Nordic languages, A and A with a ring (å) are distinct letters and must be mirrored exactly to be considered a true palindrome.</p>
</blockquote>
<p>So to cover many other languages it would be better to use collation to convert diacritical marks to their equivalent non diacritic or leave alone as appropriate and then strip whitespace and punctuation only before comparing.</p>
http://stackoverflow.com/questions/275237/in-firefox-can-i-disable-the-website-certified-by-an-unknown-authority-ssl-cer/275263#2752632Answer by reefnet_alex for In Firefox, can I disable the "Website certified by an unknown authority" SSL certificate warning dialogs?reefnet_alex2008-11-08T21:56:33Z2008-11-08T21:56:33Z<p>You need to import the certificate issuers certificate so that any other certs. issues by that issuer don't give this warning.</p>
<p>In firefox go to:
prefs
advanced
encryption
view certificates
authorities
and then click import</p>
<p>If you have a root certificate for your issuer you can import it here and never see that error again.</p>
http://stackoverflow.com/questions/272412/how-can-i-check-the-start-of-the-string-in-php/275161#2751611Answer by reefnet_alex for how can i check the start of the string in php ?reefnet_alex2008-11-08T20:35:43Z2008-11-08T20:35:43Z<p>I would check for the some letters followed by a colon. According to the URI specifications a colon is used to separate the "schema" (http, ftp etc.) from the "schema specific part". This way if somebody enters (for example) mailto links these are handled correctly. </p>
http://stackoverflow.com/questions/263117/is-ubuntu-an-acceptable-distro-for-running-a-production-server/275151#2751511Answer by reefnet_alex for Is Ubuntu an acceptable distro for running a production server?reefnet_alex2008-11-08T20:28:05Z2008-11-08T20:28:05Z<p>We use Ubuntu on a couple of live servers and commented just the other day how lovely it was working on those machines. Our developers run Ubuntu on their own machines, so when it comes to the live server we know where everything is and how it all works. This can be a big advantage in itself. We also run RHEL4 and RHEL5 and Centos4 servers, but I always find it a pleasure working on the Ubuntu machines due to using Ubuntu day in and day out. </p>
<p>As far as stability goes, worth bearing in mind that the main software you are running on a server doesn't tend to change rapidly and radically. For example, I don't think that the Ubuntu Apache install is a radical, hot new version, but pretty much the same version as is installed on RHEL or CentOS. </p>
<p>So for my two penneth, given a choice we'll be picking Ubuntu servers in future.</p>
http://stackoverflow.com/questions/75882/what-in-your-mind-is-the-best-php-mvc-framework/76362#763628Answer by reefnet_alex for What, in your mind, is the best PHP MVC framework?reefnet_alex2008-09-16T20:07:18Z2008-10-15T02:29:18Z<p>This is always going to be a tricky question. To get the most out of a full-stack framework you are going to invest hours learning its idiosyncrasies. Any framework can make a quick blog example app very easily (or whatever they provide tutorials for), it's only when you use it in the real world that you find out it's wrinkles. A good framework shows its worth when it starts fighting you. How easily can you adapt to its way, or vice versa. </p>
<p>The list above has included two main flavours of framework:</p>
<p>Convention over Configuration and vice versa</p>
<p>CakePHP vs Zend Framework are good examples of these respectively. </p>
<p>My own experience has been with CakePHP and Zend, though I looked very hard at CodeIgniter before picking CakePHP initially. </p>
<h2>Zend - Pros</h2>
<ul>
<li>Really well written</li>
<li>Fully Object Oriented PHP5 only (somebody <em>please</em> shoot PHP4)</li>
<li>Very modular</li>
<li>Has an odd mix of features, but some of the things it does like nothing else (in the PHP world): Lucene bindings, services (Flickr, Google GData etc.), Date, Captcha, JSON etc.</li>
<li>Growing all the time. Watching it since the beginning they got the design spot on and released it when the functionality was pretty sparse. They are reaping the rewards from this now.</li>
<li>Supposedly quick</li>
<li>Best of all, it plays nicely with everything else, so choosing Zend shouldn't be an either or, it should be a given!</li>
</ul>
<h2>Zend - Against</h2>
<ul>
<li>The documentation looks excellent at first but doesn't help much when you get into the nitty gritty</li>
<li>Getting up and running with it as a full stack MVC framework is not easy</li>
<li>Steep learning curve</li>
</ul>
<h2>CakePHP - Pros</h2>
<ul>
<li>Again, really well designed (though caters for PHP4 also unfortunately)</li>
<li>Very easy to get up and running - we routinely drop even static sights into CakePHP these days (using a modified "page" controller) because we know then if they client asks for a gallery, or news database or similar to be added, it's a snap to do.</li>
<li>Although it favours convention, the conventions it has picked are intuitive and excellent</li>
<li>If you step away from the conventions it doesn't fight you. The OO design is so complete you can override large swathes of functionality to do what you want</li>
<li>Lots of community information / help for this popular framework (beware though, some is misleading / dealing in older versions).</li>
<li>You never get to a point where you think there's something you want to do that you can't do in CakePHP (apart from maybe scaling / performance). The things you get for free like alternative views for XML / RSS feeds are astounding.</li>
</ul>
<h2>CakePHP - Cons</h2>
<ul>
<li>It's slow. <em>Really</em> slow. It does so much you see. You need to heavily optimize for a larger application. Use lots of caching, an opcode cache (of course) and so on. To an extent this is true for any full stack framework, but you <em>do</em> notice it with CakePHP.</li>
<li>The documentation looks fairly poor - it's actually improving rapidly, so I almost put this in the Pros but not quite.</li>
<li>Some of the queries it generates can be a little quirky. I suspect this is the same with any frameworks DB layer - I've just noticed it with CakePHP. This is also improving massively. </li>
</ul>
<p>In summary we build most of our larger apps in CakePHP, but right there in the vendors folder as an svn:external we load in Zend Framework for use in lots of places. OK, the codebase before we start is a <em>little</em> on the meaty side, but what the hey, disk space is cheap. </p>
<p>I hope that helps somebody, as I really have to get back to that controller I was writing...</p>
http://stackoverflow.com/questions/198997/moving-from-employee-to-business-owner-smoothly/199021#199021-2Answer by reefnet_alex for Moving from Employee to Business Owner smoothlyreefnet_alex2008-10-13T21:02:04Z2008-10-13T21:02:04Z<p>I would be very surprised if this was legally enforceable. If you were in the UK, these kinds of clauses are often used but rarely enforceable. A non-compete can be more reasonable, but even these aren't enforceable if you effectively stop somebody working in the surrounding area. Most non-competes are geographically bound too, and in our field that's increasingly irrelevant. The fact that these things are so dodgy, is why contracts usually have a severability clause that allow the rest of the contract to stand when somebody points out that other bits are a joke! </p>
<p>But Jon B's nice short answer is absolutely right. You need legal advice.</p>
http://stackoverflow.com/questions/194418/resources-for-windows-developer-to-switch-to-linux/194702#1947021Answer by reefnet_alex for Resources for Windows developer to switch to Linuxreefnet_alex2008-10-11T21:47:05Z2008-10-11T21:47:05Z<p>The other advice here is excellent. As somebody who made the same leap at the end of 2005, I just wanted to add my own two penneth. </p>
<ol>
<li><p>Expect a steep learning curve. I'd been using Unix / Linux type servers for best part of 13 years when I switched. Not the same. When I switched is when I started learning. My productivity dipped at first, but I know SO much more about our deployment environment now - and of course productivity back an exceeded original. But it 'aint easy. </p></li>
<li><p>When you DO switch, you never look at an OS in the same way again. Makes it easy treating any OS as just a set of things you have to learn. This in itself is a good thing (tm)</p></li>
<li><p>The biggest problem at first is looking for linux equivalents of windows ways of doing things. I remember looking for decent FTP client (in the end IF I am forced to use FTP now, I use konqueror with two windows - but just wait till you discover rsync!), a decent graphical subversion client (then realised that knowing how to use find, sed, grep and svn cmd line client was much much better) etc. </p></li>
<li><p>I have heard people before say that resorting to the command line is admission of failure. While this may be true if there is no choice in it, you soon come to revel the blending of graphical and command line tools to get the job done. For example, I tend to use find and grep and xargs to load up my IDE with stuff I want to work on. </p></li>
<li><p>You learn to love computing again. The whole computer becomes a tool for getting things done.</p></li>
<li><p>The biggest change is the freedom. Not the cost. But that fact that installing software is as simple as "sudo apt-get install" or graphical equivalent. Even a very non-technical windows user soon comes to relish this amazing aspect that of Linux.</p></li>
</ol>
<p>Enjoy!</p>
http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/176359#17635912Answer by reefnet_alex for What's the most egregious pop culture perversion of programming?reefnet_alex2008-10-06T21:53:11Z2008-10-06T21:53:11Z<p>lawnmower man. I worked for a VR software company when it came out and I think it killed the whole field off!</p>
http://stackoverflow.com/questions/175425/php-website-should-i-develop-into-a-linux-distribution-instead-of-windows/176210#1762102Answer by reefnet_alex for PHP website, should I develop into a Linux distribution instead of Windows?reefnet_alex2008-10-06T21:10:23Z2008-10-06T21:10:23Z<p>PHP is <em>not</em> the same on all platforms, and until very recently the windows versions had problems which were not found in the Linux versions. Lots of useful features are *nix specific. </p>
<p>I would echo @Milan's sentiments about developing in the deployment environment. You learn a lot more about the deployment environment by doing so too. </p>
<p>On the VM issue, if you want all your Windows tools and your windows machine, setup a linux <em>server</em> in your VM (can have a GUI if you want, but you're going to mainly use it as a server). Set it up so that windows can view the apache install running in your VM and you use samba shares to access the vm's files like a drive in windows. That way, you develop in windows but are testing deploy / setup on a running linux server. While two devs at my shop run Ubuntu, a third needs to use Photoshop and various other bits of windows software all the time, so she uses this method of running a server in a VM but developing from windows. </p>
<p>Oh, and if you're running on Linux, don't use XAMPP! A few simple commands will have you up and running and you'll get a much better understanding of your deploy. XAMPP is fine, but it's for OS's that don't have Linux's package management. </p>
http://stackoverflow.com/questions/169272/what-coding-projects-are-used-to-create-art-and-beauty/169445#1694453Answer by reefnet_alex for What coding projects are used to create art and beauty?reefnet_alex2008-10-04T00:47:18Z2008-10-04T00:47:18Z<p>I find <a href="http://vis.cs.ucdavis.edu/~ogawa/codeswarm/" rel="nofollow">code_swarm</a> totally beautiful, awe inspiring and hypnotic, does that count?</p>
<p><img src="http://vis.cs.ucdavis.edu/~ogawa/codeswarm/eclipse-640px.png" alt="alt text" title="code_swarm for the eclipse project" /></p>
http://stackoverflow.com/questions/165817/what-are-some-pros-and-cons-of-the-various-php-ides/167401#1674011Answer by reefnet_alex for What are some pros and cons of the various PHP IDEs?reefnet_alex2008-10-03T15:22:58Z2008-10-03T15:22:58Z<ol>
<li>debugging</li>
<li>debugging</li>
<li>debugging</li>
</ol>
<p>How anyone can develop serious sized apps without good debugging is beyond me. When you are reliant on third party libraries etc. sometimes the only way is to step through it line by line and seeing where it breaks. I say this with feeling having just spent 4.5 hours last night dealing with a code update in CakePHP breaking all the unit tests for a project I've been working on for months. </p>
<p>So, sorry to be hard about it, but I wouldn't consider any IDE that didn't have superb remote debugging - probably with XDebug. IDEs with good debugging include (as far as I know): </p>
<ul>
<li>Komodo IDE - my personal choice</li>
<li>Eclipse</li>
<li>Zend Studio</li>
<li>Maguma</li>
</ul>
<p>Oh, and as for prices of IDEs. I love open source software for the freedom as much as the price. I develop on Linux, for deployment to LAMP stack using predominately free software. However, as someone who makes their living writing code, I have NO problem whatsoever shelling out for the right tools to do the job. A couple hundred $$s on an IDE is small beer if it will save you months of time.</p>
http://stackoverflow.com/questions/167106/how-do-i-limit-which-countries-can-view-my-website-php/167348#1673485Answer by reefnet_alex for How do I limit which countries can view my website ( PHP ) reefnet_alex2008-10-03T15:12:10Z2008-10-03T15:12:10Z<p>Like Gilles, I've used MaxMind's GeoIP stuff for this in the past - configured with the PECL extension for speed. It works reasonably well, but...</p>
<p>The requirement for this kind of thing tends to come from somebody that doesn't understand that it is impossible to reliably determine a visitors location in this way. It's very important that the person asking for it be encouraged to understand that it is <em>almost</em> useless. Typical thing that happens with geo-location in this:</p>
<blockquote>
<blockquote>
<blockquote>
<p>Client: I want to be able to restrict content by IP<br />
Dev: You do know that that is impossible to do reliably?<br />
Client: Ah yes, but this company say they will sell me something that will do it<br />
Dev: Yes but it isn't accurate and is easy to circumvent and usually indicates a poor business model for internet based content<br />
Client: Can you do it?<br />
Dev: Whatever...</p>
</blockquote>
</blockquote>
</blockquote>
<p>...Six months later...</p>
<blockquote>
<blockquote>
<blockquote>
<p>Client: Some of my visitors have been complaining they can't see my content and some bad people who shouldn't see it have been able to!<br />
Dev: /me slaps head </p>
</blockquote>
</blockquote>
</blockquote>
<p>It's only one step on from there to <em>"can I have it so that when a user right clicks in their browser a little sign pops up saying <strong>'these images are copyright Idiot Inc.'</strong>?"</em></p>
<p>Sorry, obviously in a cynical mood today!</p>
http://stackoverflow.com/questions/116292/what-is-the-best-ide-for-php/162211#1622111Answer by reefnet_alex for What is the best IDE for PHP ?reefnet_alex2008-10-02T13:17:13Z2008-10-02T13:17:13Z<p>I'm always amazed that more people don't use (ActiveState Komodo)[https://www.activestate.com/Products/komodo_ide/] </p>
<p>It has the best debugging facilities of any PHP IDE I have tried, is a very mature product and has more useful features than you can shake a stick at. Of note, it has a fantastic HTTP inspector, Javascript debugger and Regular Expression Toolkit. You can get it so that it steps through your PHP, then you see your Javascript running, and then see your HTTP traffic going out over the wire! </p>
<p>It also comes in free (Komodo Edit) and open (OpenKomodo versions). </p>
<p>Oh, and if you don't always hack <em>just</em> on PHP, it's designed as a multi-language editor and rocks for Ruby and Python too.</p>
<p>I've been a happy customer for around 5 years. </p>
http://stackoverflow.com/questions/155706/what-are-good-tools-frameworks-for-i18n-of-a-php-codebase/157436#1574363Answer by reefnet_alex for What are good tools/frameworks for i18n of a php codebase?reefnet_alex2008-10-01T12:54:10Z2008-10-01T12:54:10Z<p>PHP gettext implementation works very smoothly. And po files with po edit and gettext are about as good a way as you can get to deal with localization bearing in mind that no solution of this kind can completely handle the complexities of the various languages. For example, the gettext method is very good on plural forms, but nothing I've seen can handle things like conjugation.</p>
<p>For more info see my post here: <a href="http://stackoverflow.com/questions/39562/how-do-you-build-a-multi-language-web-site#41379">http://stackoverflow.com/questions/39562/how-do-you-build-a-multi-language-web-site#41379</a></p>
http://stackoverflow.com/questions/157192/php-development-lot-of-newbie-questions/157412#1574129Answer by reefnet_alex for PHP Development - lot of (newbie) questionsreefnet_alex2008-10-01T12:45:40Z2008-10-01T12:45:40Z<ul>
<li>which IDE would you recommend?</li>
</ul>
<p>Anything that supports remote debugging. You will save yourselves hours and hours and learn so much quicker if you can actually step through your code. It always amazes me that more people don't use good debugging tools for PHP. The tools are there, not using them is crazy. FWIW I've always been a devotee of <a href="https://www.activestate.com/" rel="nofollow">Activestate Komodo</a> - fantastic product.</p>
<ul>
<li><p>does anyone have good tips and advices for a new developer?</p>
<ol>
<li><p>get test infected. It will stand you in good stead in the future, and will force you to think about design issues properly. In fact the benefits are many and the drawbacks few. </p></li>
<li><p>learn to refactor, and make it part of your development "rhythm".</p></li>
<li><p>related to this is: think ahead, but don't programme ahead. Be aware that something you are writing will probably need to be bubbled up the class hierarchy so it is available more generically, but don't actual do the bubbling up till you need it.</p></li>
</ol></li>
<li><p>it would help me (a lot) to develop this project attending some more "academic" aspects of the subject, such as the Entity/Association Model, etc. Are there any good tools to help structure my work?</p></li>
</ul>
<p>Learn about design patterns and apply the lessons you have learned from them. Don't programme the "PHP4" way.</p>
<ul>
<li>I forgot to ask one last thing, I tried installing BitNami's WAPP Stack. Does anyone know how good and/or reliable it is?</li>
</ul>
<p>No idea, but if you have the time I'd avoid a prebuilt stack like WAMPP. It's important to understand how the pieces fit together. However, if you're running on Windows, you may not have time and your energy could be better focused on writing good code than working out how to install PHP, PostgreSQL and Apache. </p>
<ul>
<li>I'm actually working under Windows Vista Business (new laptop :S ). Would you recommend developing under Linux for any specific reason?</li>
</ul>
<p>Yes I would. Assuming you are deploying on Linux (if you are deploying on Windows I'd be asking myself some serious questions!), then developing in the same environment is incredibly useful. I switched for that reason in 2005 and it was one of the most useful things I did development wise. However if you're a total *nix newbie and are under tight time constraints maybe stick with what you know. If you have time to try things out, you'll find it pretty easy to get up and running with a good modern Linux desktop distro and the development work will fly along. </p>
http://stackoverflow.com/questions/143184/which-book-would-you-recommend-for-a-linux-sysadmin/144132#1441321Answer by reefnet_alex for Which book would you recommend for a Linux Sysadmin?reefnet_alex2008-09-27T17:50:28Z2008-09-27T17:50:28Z<p><a href="http://rads.stackoverflow.com/amzn/click/0131480049" rel="nofollow">Linux Administration Handbook</a> by by Evi Nemeth, Garth Snyder and Trent R. Hein is a great book. Easy to read, covers all areas well, including a discussion on what the <em>role</em> of a Sysadmin is and should be. </p>
http://stackoverflow.com/questions/141319/whats-the-difference-between-phing-and-phpundercontrol/141334#1413341Answer by reefnet_alex for What's the difference between Phing and PHPUnderControl?reefnet_alex2008-09-26T19:10:10Z2008-09-26T19:10:10Z<p>I'm sure lots of people will say this by the time I've typed this but...</p>
<p>I know it's not PHP but we're finding <a href="http://www.capify.org/" rel="nofollow">Capistrano</a> just the job for this kind of thing. It really is an excellent piece of software. </p>
http://stackoverflow.com/questions/140365/data-protection-and-web-2-0-web-sites3Data Protection and Web 2.0 Web sitesreefnet_alex2008-09-26T15:50:03Z2008-09-26T16:33:54Z
<p>Many countries now have data protection legislation which afford individuals the rights to: </p>
<ol>
<li>request that an organization hand over all information they hold on the individual and</li>
<li>to request that any information held on the individual is destroyed</li>
</ol>
<p><a href="http://www.channel4.com/news/articles/science_technology/facebook%20data%20protection%20row/1060467" rel="nofollow">Facebook got into trouble over the second part of this in the UK</a> as it is nigh on impossible to delete your information from Facebook. </p>
<p>This is understandable. A persons' data in a social media site is intricately woven into the fabric of the site. Users generate posts, messages, chat, relationships with others, photos, applications etc. and in turn other people will add their own comments / thoughts on this content.</p>
<p>However, I am far from convinced that simply stating in your terms and conditions that your data cannot be deleted complies with data protection legislation (at least in the UK - any programming lawyers want to comment?). </p>
<p>We tend to handle the issue of deleting users content by overwriting key fields in the record for that user (e.g. username, name, email address) and by overwriting key fields in the content they have posted (e.g. comments, blog posts). This means that you may come accross a discussion post attributed to "deleted user" which reads "This post was deleted."</p>
<p>Data protection issues even affect decisions such as hosting (we tend to host applications in the UK for many clients for Data Protection reasons, despite the higher cost). </p>
<p>As a developer, how far is this my problem? I have a feeling that responsibility would ultimately fall on the legal owner of the application (my clients / employers) and it would be up to them to come after my company for not giving the issue proper consideration if they fell foul of this.</p>
<p>My questions to you are: </p>
<ol>
<li>How do you deal with the issue of deleting content from a social media application where data protection compliance is an issue?</li>
<li>Whose responsibility is this ultimately?</li>
<li>Should I just lighten up and be less concerned about these kinds of issues?</li>
</ol>
<p>EDIT: Some great answers to 2 and 3 already, but what of the main issue? How do you handle removing a user's content from a complex social media application where it is tied in with so much other content</p>
http://stackoverflow.com/questions/138227/getting-started-with-pair-programming/139461#1394611Answer by reefnet_alex for Getting Started with Pair Programmingreefnet_alex2008-09-26T13:20:50Z2008-09-26T13:20:50Z<p>One of the more difficult things to cope with at first is the differences between peoples abilities and the contributions they bring to the mix while pair programming. </p>
<p>I've often started pair programming almost in a mentor capacity, and I think this is quite common. It doesn't take a lot of working together like this however, before the person learning gets up to speed and starts contributing equally. </p>
<p>So, even if it feels a little uneven at first, stick with it for a few sessions. </p>
<p>Pair-programmed work is generally more robust and well thought out, and of course it's a great advantage having more than one person on the team understand the code that's been written.</p>
http://stackoverflow.com/questions/136429/dont-wait-for-the-process-to-exit/139397#1393971Answer by reefnet_alex for Don't wait for the process to exitreefnet_alex2008-09-26T13:08:57Z2008-09-26T13:08:57Z<p>You may be able to use <a href="http://uk2.php.net/manual/en/function.proc-open.php" rel="nofollow">proc_open</a>, <a href="http://uk2.php.net/manual/en/function.stream-select.php" rel="nofollow">stream_select</a> and <a href="http://uk2.php.net/manual/en/function.stream-set-blocking.php" rel="nofollow">stream_set_blocking</a> in concert to achieve this kind of thing. </p>
<p>If that sounds vague, I was going to paste a big chunk of code in here that I used in a recent project that did something similar, but then felt it may hinder rather than help! In summary though, the code worked like this: </p>
<ol>
<li>cronjob calls cronjob_wrapper.php</li>
<li>cronjob_wrapper.php creates a new Manager class and then calls <em>start</em> on it. </li>
<li>Manager class start method check to see how many instances are running (looking for pid files in a particular location). If it's less than a given max number of instances it writes out it's own process id to a pid file and then carries on</li>
<li>Manage class creates an instance of an appropriate Encoder class and calls <em>exec</em> on it.</li>
<li>The <em>exec</em> method uses proc_open, stream_select and stream_set_blocking to run a system command in a non-blocking fashion (running ffmpeg in this case - and could take quite a while!)</li>
<li>When it has finally run it cleans up its PID file and bails out. </li>
</ol>
<p>Now the reason I'm being vague and handwavy is that our multiple instances here are being handled by the cronjob not by PHP. I was trying to do very much the kind of thing you are talking about, and got something working pretty well with <a href="http://uk2.php.net/manual/en/function.pcntl-fork.php" rel="nofollow">pcntl_fork</a> and friends, but in the end I encountered a couple of problems (if I recall at least one was a bug in PHP) and decided that this approach was a much more rock-solid way to achieve the same thing. YMMV.</p>
<p>Well worth a look at those functions though, you can achieve a lot with them. Though somehow I don't think PHP will ever become the sockets programming language of choice... :)</p>
http://stackoverflow.com/questions/138508/mvc-where-do-the-classes-go/139120#1391201Answer by reefnet_alex for MVC, where do the classes go?reefnet_alex2008-09-26T12:30:22Z2008-09-26T12:30:22Z<p>@Alexander mentions CakePHPs <em>Behaviors</em>, <em>Components</em> and <em>Helpers</em>. These are excellent for abstracting out common functionality. I find the Behaviors particularly useful as of course the bulk of the business logic is carried in the models. I am currently working on a project where we have behaviors like: </p>
<ul>
<li>Lockable</li>
<li>Publishable</li>
<li>Tagable</li>
<li>Rateable</li>
<li>Commentable</li>
</ul>
<p>etc.</p>
<p>For code that transcends even the MVC framework i.e. code libraries that you use for various things that are not tied in to the particular framework you are using - in our case things like video encoding classes etc. CakePHP has the <em>vendors</em> folder. </p>
<p>Anything that effectively has nothing to do with CakePHP goes in there. </p>
<p>I suspect CodeIgniter doesn't have quite as flexible a structure, it's smaller and lighter than CakePHP, but a quick look at the <a href="http://manual.cakephp.org" rel="nofollow">CakePHP Manual</a> to see how Behaviors, Components, Helpers, and the Vendors folder may be helpful. </p>
<p>It should be an easy matter to just include some common helper classes from your models keep nice and <a href="http://en.wikipedia.org/wiki/Don%27t_repeat_yourself" rel="nofollow">DRY</a></p>
http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/428202#428202Comment by reefnet_alex on What's your most controversial programming opinion?reefnet_alex2009-03-12T13:04:22Z2009-03-12T13:04:22Z2) live server != dev machine: there are some bugs you will only see on your live (or exact copy of your live) serverhttp://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/428202#428202Comment by reefnet_alex on What's your most controversial programming opinion?reefnet_alex2009-03-12T13:02:28Z2009-03-12T13:02:28Z1) remote doesn't mean "not local" in this case, it means it running the debugger on the php interpreter as run up by your web server and following all the interactions with the browser through. whether running locally or on a live server you need a remote debugger to see what's actually happeninghttp://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/428202#428202Comment by reefnet_alex on What's your most controversial programming opinion?reefnet_alex2009-01-09T21:06:42Z2009-01-09T21:06:42Zexackly - and before you used firebug I bet you didn't realise you needed it either :) seriously though, give it a try and then say thathttp://stackoverflow.com/questions/349997/what-does-this-regular-expression-do/350087#350087Comment by reefnet_alex on What does this Regular Expression doreefnet_alex2008-12-08T22:01:47Z2008-12-08T22:01:47ZI would say it's pretty standard practice to choose delimiters which are appropriate to what it is you're trying to find. If you're doing things with paths with lots of forward slashes, slashes in your regex's are just obtuse. http://stackoverflow.com/questions/349833/what-programming-jobs-do-you-aspire-to/349853#349853Comment by reefnet_alex on What programming jobs do you aspire to?reefnet_alex2008-12-08T21:40:07Z2008-12-08T21:40:07ZI run my own development company. Unfortunately the boss is a jerk :)http://stackoverflow.com/questions/262657/the-coolest-server-names/262744#262744Comment by reefnet_alex on The Coolest Server Namesreefnet_alex2008-11-13T20:47:46Z2008-11-13T20:47:46Zat least I'm not the only one :)http://stackoverflow.com/questions/275237/in-firefox-can-i-disable-the-website-certified-by-an-unknown-authority-ssl-cer/275263#275263Comment by reefnet_alex on In Firefox, can I disable the "Website certified by an unknown authority" SSL certificate warning dialogs?reefnet_alex2008-11-08T22:45:13Z2008-11-08T22:45:13Zthat's correct. nothing in the question suggests that the questioner is looking for anything more thant that. obviously having a valid certificate issued by an approved authority as you suggest won't be subject to the same problem but may well not be what the questioner was afterhttp://stackoverflow.com/questions/194418/resources-for-windows-developer-to-switch-to-linux/194633#194633Comment by reefnet_alex on Resources for Windows developer to switch to Linuxreefnet_alex2008-10-11T21:49:41Z2008-10-11T21:49:41Zor as I do, run windows in your virtual box on your lovely linux machine :)http://stackoverflow.com/questions/178560/which-php-cms-has-the-best-architecture/180958#180958Comment by reefnet_alex on Which PHP CMS has the best architecture?reefnet_alex2008-10-08T12:00:16Z2008-10-08T12:00:16Zthough far from easy to use for an end user in it's default state. a real old style full powerful content management engine!http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/175126#175126Comment by reefnet_alex on What's the most egregious pop culture perversion of programming?reefnet_alex2008-10-06T21:46:14Z2008-10-06T21:46:14ZDigital Fortress doesn't count. it's an egregious pop culture perversion regardless of programming. I blame the editors. They should have been ashamed of themselves. Shudder...http://stackoverflow.com/questions/175153/how-do-you-set-up-database-testing-using-the-php-simpletest-framework/175492#175492Comment by reefnet_alex on How do you set up database testing using the PHP SimpleTest framework reefnet_alex2008-10-06T21:12:58Z2008-10-06T21:12:58Zdon't know why this has been voted down QUITE so harshly. Strictly speaking testing interactions with a database would be integration tests not unit tests so troelskn has a point. Of course, back in the real world...http://stackoverflow.com/questions/167106/how-do-i-limit-which-countries-can-view-my-website-php/167348#167348Comment by reefnet_alex on How do I limit which countries can view my website ( PHP ) reefnet_alex2008-10-03T15:54:28Z2008-10-03T15:54:28ZOh, and on that note, I've seen people "legally require" the right click copyright message too. It beggars belief!http://stackoverflow.com/questions/167106/how-do-i-limit-which-countries-can-view-my-website-php/167348#167348Comment by reefnet_alex on How do I limit which countries can view my website ( PHP ) reefnet_alex2008-10-03T15:53:13Z2008-10-03T15:53:13ZAye, in the case I've been asked to use it has been part of a legal agreement between a content provider and a publisher. But that's kind of my point - this is flawed thinking, legally obliging the impossible. Still implement, but do feedback the reality of the situation!http://stackoverflow.com/questions/157192/php-development-lot-of-newbie-questions/157412#157412Comment by reefnet_alex on PHP Development - lot of (newbie) questionsreefnet_alex2008-10-03T15:42:54Z2008-10-03T15:42:54ZI worked for years on Windows for *nix deploy and it was fine, but nothing teaches you so fast as actually working in that environment. The things I am able to do now I couldn't do without the *nix experience. I avoid developing for shared hosting mind, if I can't edit the apache conf I'm not happy!http://stackoverflow.com/questions/167083/design-patterns-with-php/167138#167138Comment by reefnet_alex on Design patterns with PHPreefnet_alex2008-10-03T15:13:24Z2008-10-03T15:13:24Zarguably humorous... I chuckled heartily all the way through it :)