User michael - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T06:25:01Zhttp://stackoverflow.com/feeds/user/56974http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1783403/in-javascript-is-it-possible-to-construct-an-object-literal-with-expressions-eval0in javascript is it possible to construct an object literal with expressions evaluating to strings for property names?michael2009-11-23T14:23:15Z2009-11-23T15:55:56Z
<p>i.e. is it possible to do this:</p>
<pre><code>var fruit = "banana";
var x = {
"app" + "le" : 5, // "apple" : 5
function(){return "orange"} : 8, // "orange" : 8
"" + fruit : 3 // "banana" : 3
};
</code></pre>
http://stackoverflow.com/questions/1679898/javascript-function-returns-before-its-subroutine-finishes0Javascript function returns before its subroutine finishesmichael2009-11-05T11:19:51Z2009-11-05T13:44:18Z
<p>I'm trying to test if urls dynamically passed to image tags would resolve or not. I'm using the following javascript function: </p>
<pre><code> testImageUri = function(src) {
var img = new Image();
var imgStatus = false;
var goodUri = function() {
imgStatus = true;
};
var badUri = function() {
imgStatus = false;
};
img.onload = goodUri;
img.onerror = badUri;
img.src = src;
return imgStatus;
}
</code></pre>
<p>The functions badUri and goodUri get called as expected, but they appear to be "late" as the testImageUri function seems to return before they get to change the imgStatus variable.</p>
<p>How do one resolve such problems in javascript?<br/>
How do one avoid them?<br/>
is there a rule of thumb to recognize situations susceptible to create this?</p>
<p><strong>EDIT</strong>
<br/>Thanks all for your replies. I think I understand what's going on now. I will be implementing the function as described in the first reply, but with an additional parameter for the callback as suggested.</p>
<p>Thanks again.</p>
http://stackoverflow.com/questions/1677485/zend-vs-symfony-development-time/1677507#16775072Answer by michael for Zend vs Symfony development timemichael2009-11-04T23:57:31Z2009-11-04T23:57:31Z<p>None. Development time is shorter with whatever tool you took the time to learn and are comfortable with.</p>
http://stackoverflow.com/questions/1670003/framework-comparison-and-overhead/1670320#16703202Answer by michael for Framework Comparison and Overheadmichael2009-11-03T21:42:44Z2009-11-03T21:42:44Z<p>One thing many php developers fall victim of is sacrificing good architecture and sound principles for what they perceive as performance.</p>
<p>You may decide to cut corners in your code, but remember, "<em>premature optimization is the root of all evil</em>". So if you need to optimize early make sure that you're actually doing something useful. </p>
<p>The Zend libraries are engineered with best practice in mind, not necessarily performance. The rationale is that there are many ways to speed things up later without sacrificing code maintenance and readability (caching, load balancing, hardware, queue management, etc).</p>
<p>That been said, I don't think what you're looking for are statistics on ZF's performance, but rather advice on how to setup your application with it. Specifically, I'd advise you to create a dedicated, very light bootstrap for ajax requests. In ajax, you would normally only need some minimal prerequisites before dropping inside your controller. For the non ajax requests, set them up normally using the recommended architecture (bootstrap, front controller+plugins, controller+helpers, model+views+helpers).</p>
<p>My personal rule of thumb is that if I only am going to serve about 100 requests throughout the day, then there's very little reason to optimize anything. When the application starts feeling sluggish, if it generates enough revenue, maybe I can get a dedicated server, if not, there are always solutions such as apc, memcached, beanstalkd, etc. </p>
http://stackoverflow.com/questions/1584369/building-a-cms-for-bilingual-website-need-tips/1620627#16206270Answer by michael for Building a CMS for bilingual website - need tipsmichael2009-10-25T10:59:13Z2009-10-25T19:00:13Z<p>I have built quite a number of bilingual sites on top of custom made CMS's. Depending on how elaborate the content is for each page, I would approach the admin panel differently.</p>
<ul>
<li><p>For something like a Contact Us page, you don't typically need more than 2 or 3 form inputs. I would put both translations on the same form, allowing the user to easily edit both copies. To make it nicer, you could use one of the plethoras of <a href="http://www.google.com/search?hl=en&client=firefox-a&rls=com.ubuntu%3Aen-US%3Aunofficial&hs=0X0&q=js+accordion&aq=0&oq=js+acc&aqi=g2g-s1g6g-s1" rel="nofollow">javascript accordion scripts</a> available. When users submits the form they do it for both languages.</p></li>
<li><p>For more elaborate sections where the admin form needs more than 4 or 5 inputs, switch language with something like a tab. Make sure to include some javascript that activates a flag when the user starts editing one of the fields. The reason is that instinctively, users tend to edit one language and immediately want to switch to the other. They forget to save their changes and lose them. The js should prompt them to save before switching if the flag is active.</p></li>
</ul>
<p>That's pretty much the basics.</p>
http://stackoverflow.com/questions/1363774/magento-or-prestashop-which-is-better/1606236#16062362Answer by michael for Magento or Prestashop, which is better?michael2009-10-22T10:08:40Z2009-10-22T10:08:40Z<p>There seems to be growing anger with magento as the community is slowly and painfully discovering that varien, the company behind it isn't so much interested in championing a reliable open source product, than to create a community that would require extensive commercial support.</p>
<p>In the 2 days that I've been researching magento, the amount of negative feedbacks that I've heard and the code quality is more than enough to steer me away. After having a look through the source, I believe the intended basic architectural principles were decent, but the execution is wrong. Many PHP programmers see OOP and call it good software. I'm reasonably well versed with the Zend Framework and am generally reluctant to refer to any code as bloat, but in this case I have few other choice of word. Magento seems to uses some Zend libraries, but the relationship doesn't warrant good quality code. Don't take my word for it, here's some evidence. I decided to follow a request to see what happens during a call to one of the action controllers, so I tried to trace calls made within the Mage_Adminhtml_Customer_GroupController::indexAction method, starting with a call to $this->loadLayout(). Pretty self explanatory right, we're loading a layout. Lets see where it takes us. The following illustrates a single thread in that one call, where each line represents a call to a new method from the preceding method:</p>
<pre><code> Mage_Adminhtml_Customer_GroupController::indexAction
Mage_Adminhtml_Controller_Action::loadLayout
Mage_Core_Controller_Varien_Action::loadLayout
Mage_Core_Controller_Varien_Action::addActionLayoutHandles
Mage_Core_Controller_Varien_Action::getLayout
Mage::getSingleton
Mage::getModel
Mage::getConfig
Mage::registry
</code></pre>
<p>I repeat, we're following a single thread from within one call to $this->loadLayout(). In real time each call to a method would likely initiate multiple threads as they fork and each action would likely have multiple method calls. Is anyone still surprised as to why magento would be so slow? Just because it's OOP, doesn't mean this is good code. This is over-engineering.</p>
<p>In addition to Prestashop, I've found 2 other interesting solutions:</p>
<ul>
<li><a href="http://code.google.com/p/agent-ohm/" rel="nofollow">Agent-Ohm</a> : a fork of magento, lead by no other than the author of what is considered to be the only worthwhile, albeit unofficial, <a href="http://www.phparch.com/books/isbn/9780973862171" rel="nofollow">guide to magento</a>. I suppose that if Magento is slow, buggy, hardly upgradeable, hardly supported, with poor documentation and this guy forks it, optimizes it, fixes bugs and provides documentation, there would be very little reasons not to at least try his solution. Additionally, the <a href="http://code.google.com/p/agent-ohm/wiki/DesignTenets" rel="nofollow">design tenets</a> pretty much summarized my feeling.</li>
<li><a href="http://www.oxid-esales.com/" rel="nofollow">Oxid</a>: Another solution said to be <a href="http://activecodeline.com/magento-alternative-oxid" rel="nofollow">simpler</a> than magento. I don't know if this is necessary better, I haven't tried it yet, nor looked under the hood, but it certainly seems more promising. </li>
</ul>
http://stackoverflow.com/questions/1541329/http-https-ajax-bypass-maybe0http, https & ajax bypass, maybe?michael2009-10-09T00:54:06Z2009-10-09T01:19:21Z
<p>I have a server script that I need to pass data to from the browser without reloading the page (aka ajax). The data is sensitive so should be sent via https. The page however is on the http layer. Because of same domain/protocol restriction, the browser doesn't allow this.</p>
<p>I'm thinking of cheating the system a bit by dynamically creating image tags and call the script using the src tag such as:</p>
<pre><code><img src="https://mydomain.com/mysecurescript/&data=to&pass=to&my=script" />
</code></pre>
<p>I'd like to know if this will indeed be properly encrypted.</p>
http://stackoverflow.com/questions/1351735/facebook-connect-or-openid-from-a-developers-perspective9Facebook-connect or OpenID? From a developer's perspective.michael2009-08-29T15:44:27Z2009-10-08T15:48:41Z
<p>I have recently been contracted to work on an application that requires Facebook-Connect as one of its authentication mechanisms. </p>
<p>Working on my Facebook-Connect solution, I'm realizing that it's implementing a Single-Sign On authentication scheme, where if you log in to one website, you're logged on to all of them. Personally, I'm not fond of the approach and find that it's difficult (not impossible) to work with when trying to funnel all the authentication systems through a single process that you (the developer) have some control over. I also think that it introduces unnecessary <a href="http://research.sun.com/liberty/SaPCISSO/index.html" rel="nofollow">security issues (see Risks of Internet Deployment)</a> just to slightly improve user experience. </p>
<p>While researching strategies to work with the technology, I have noticed that the blogosphere has all but anointed Facebook-Connect as the holy grail of authentication, echoing each others' opinion and clamoring high and strong that "OpenID is too complicated". At the same time, I haven't really seen many prominent developers and security experts raise flags or voice their opinions on the matter. My only experience with OpenID is with StackOverflow and related sites. I too had a hard time understanding what it was at first, but once I realized that I could log in with my google credentials, the experience proved to be really smooth.</p>
<p>Am I being paranoid or missing something that everybody got? Is Facebook-Connect really a better alternative to OpenID, or is everybody drinking someone's Kool Aid?</p>
<p><hr /></p>
<p><strong>EDIT:</strong></p>
<p>After working on this, I confirm that the facebook-connect login scheme is less than ideal. The whole iframe/js/cookie/reload thing is ugly and can easily become problematic. Integrating fb login to an existing authentication system is an exercise in itself. You will have to make some compromises. I'd have to write a whole other article to explain how I did it.</p>
<p>Facebook does seem a bit obsessed with Single Sign-On to me. Most people aren't aware that facebook has OpenID enabled for their own site, but even the way they implemented it is to emulate SSO and makes it a bit pointless. The way I thought OpenID is supposed to work: you go to a new website, if you have an OpenId account, put the url, login to your provider and you're in. You can then proceed to complete additional information.</p>
<p>Fb doesn't offer you the OpenID login up front. Instead, you first have to register and log in, then go to Account Settings and under Linked Accounts, pick an OpenID provider. However, unlike StackOverflow that understands the point, facebook only lets you login with yours OpenID, if you instruct your provider to remember that setting. Why? It makes it more SSO-like. If you don't check the google box that asks to remember, OpenID doesn't work on facebook.</p>
<p>The login aside, facebook-connect works in general, but there are still many corners to round. A few things that had me pulling my hair and curse at that api:</p>
<ul>
<li>the facebook documentation is scattered and not properly streamlined. Within the first hour of opening it, you will have at least 10 tabs opened in your browser. If/when you stumble upon interesting topics that you think may be useful in the future, make sure to properly bookmark them, don't rely on navigations to find them again because sometimes key articles are buried deep. I know the wiki approach to documenting api's has made lots of projects lazy lately, but common, this is facebook. They should have the means to hire a team to provide proper user guides. So, remember to have yourself a nice facebook bookmarks folder before you begin.</li>
<li>There are lots of methods in the api, good luck finding an example of how to use them, you have to rely on instinct.</li>
<li>many times, when something doesn't work as you wish, nobody knows why. When visiting forum pages, explanations are given in the form of hypothesis and rumors. e.g. At login, why do some applications have a pop-up login windows when others have a js modal dialog? is it possible to control that behavior? no one is sure. It is rumored that facebook is conducting some test without letting anyone know.</li>
<li>not everything works as advertised. i.e. You might find yourself being encouraged to use a feature, wasting valuable time learning it, implementing it, debugging it, then only find out that it doesn't work with facebook-connect when you put it within a try/catch exception handler. e.g. <a href="http://wiki.developers.facebook.com/index.php/Feed.publishUserAction" rel="nofollow">feed.publishUserAction</a>.</li>
<li>facebook tries too hard to be user friendly. They waste valuable resources pushing an automagic api that only works half the time (xfbml), instead of encouraging developers to leverage their hard earned knowledge by using the more basic stuff that's proven to work most of the time (pseudo sql + html). e.g. I wasted time trying to use a combination of ajax/xfbml/js to pull friends pictures from their server. It would work for a couple of requests then stop working altogether. I then decided to pull the data directly from their db using their facebook query language (fql) and create my own markup in html. worked 100%. My advice to you if you're a real developer, don't buy into the "everything is easy" mantra that facebook tries to feed everyone, it's not. In addition to familiarize yourself with your programming platform's facebook client api (PHP, Python, Java, etc), invest into learning what you can pull from their server directly using <a href="http://wiki.developers.facebook.com/index.php/FQL" rel="nofollow">fql</a> and what you can do on the browser with the <a href="http://wiki.developers.facebook.com/index.php/JS%5FAPI%5FIndex" rel="nofollow">JS Client API</a> (not to be confused with the fbjs). You may well find that the later 2 are all you need to do most things.</li>
</ul>
<p>I'm sure the list doesn't end there, but from the top of my head here it is.</p>
http://stackoverflow.com/questions/1341145/is-it-worth-learning-gnu-make4Is it worth learning GNU Make?michael2009-08-27T13:36:26Z2009-08-27T14:42:01Z
<p>I'm lately feeling the need to learn a build tool. I'm looking through StackOverflow for recommendations and Gnu Make gets barely mentioned. Instead I see Ant, Maven, CMake, Scon and many others. However, when I look at the little "rogue sources" (as in not-in-the-repo) that I sometimes have to compile, they all require the <code>make && make install</code> steps.</p>
<p>Is learning Make a worse investment of my time than learning another tool? </p>
<p>If so why is Make still so popular?</p>
http://stackoverflow.com/questions/286004/hidden-features-of-modrewrite/1298917#12989171Answer by michael for Hidden features of mod_rewritemichael2009-08-19T10:08:10Z2009-08-19T10:08:10Z<p><strong>Other Pitfalls:</strong></p>
<p>1- Sometimes it's a good idea to disable MultiViews</p>
<pre><code>Options -MultiViews
</code></pre>
<p>I'm not well verse on all of MultiViews capabilities, but I know that it messes up my mod_rewrite rules when active, because one of its properties is to try and 'guess' an extension to a file that it thinks I'm looking for.</p>
<p>I'll explain:
Suppose you have 2 php files in your web dir, file1.php and file2.php and you add these conditions and rule to your .htaccess :</p>
<pre><code>RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ file1.php/$1
</code></pre>
<p>You assume that all urls that do not match a file or a directory will be grabbed by file1.php. Surprise! This rule is not being honored for the url <a href="http://myhost/file2/somepath" rel="nofollow">http://myhost/file2/somepath</a>. Instead you're taken inside file2.php. </p>
<p>What's going on is that MultiViews automagically guessed that the url that you actually wanted was <a href="http://myhost/file2.php/somepath" rel="nofollow">http://myhost/file2.php/somepath</a> and gladly took you there. </p>
<p>Now, you have no clue what just happened and you're at that point questioning everything that you thought you knew about mod_rewrite. You then start playing around with rules to try to make sense of the logic behind this new situation, but the more you're testing the less sense it makes. </p>
<p>Ok, In short if you want mod_rewrite to work in a way that approximates logic, turning off MultiViews is a step in the right direction.</p>
<p>2- enable FollowSymlinks</p>
<pre><code>Options +FollowSymLinks
</code></pre>
<p>That one, I don't really know the details of, but I've seen it mentioned many times, so just do it.</p>
http://stackoverflow.com/questions/728252/refactoring-a-method-having-dependencies-within-the-same-object-into-something-mo1Refactoring a method having dependencies within the same object into something more testable (PHP)michael2009-04-08T02:07:03Z2009-08-05T17:09:04Z
<p>I currently have a method within my class that has to call other methods, some in the same object and others from other objects. </p>
<pre>
<code>
class MyClass
{
public function myMethod()
{
$var1 = $this->otherMethod1();
$var2 = $this->otherMethod2();
$var3 = $this->otherMethod3();
$otherObject = new OtherClass();
$var4 = $otherObject->someMethod();
# some processing goes on with these 4 variables
# then the method returns something else
return $var5;
}
}
</code>
</pre>
<p>I'm new to the whole TDD game, but some of what I <em>think</em> I understood to be key premises to more testable code are composition, loose coupling, with some strategy for Dependency Injection/Inversion of Control.</p>
<p>How do I go about refactoring a method into something more testable in this particular situation? </p>
<p>Do I pass the <code>$this</code> object reference to the method as a parameter, so that I can easily mock/stub the collaborating methods? Is this recommended or is it going overboard?</li></p>
<pre>
<code>
class MyClass
{
public function myMethod($self, $other)
{
# $self == $this
$var1 = $self->otherMethod1();
$var2 = $self->otherMethod2();
$var3 = $self->otherMethod3();
$var4 = $other->someMethod();
# ...
return $var5;
}
}
</code>
</pre>
<p>Also, it is obvious to me that dependencies are a pretty big deal with TDD, as one has to think about how to inject a stub/mock to the said method for tests. Do most TDDers use DI/IoC as a primary strategy for public dependencies? at which point does it become exaggerated? can you give some pointers to do this efficiently?</p>
http://stackoverflow.com/questions/693827/can-anyone-recommend-a-php-book-that-follows-good-development-principles/725925#7259254Answer by michael for Can anyone recommend a PHP book that follows good development principles?michael2009-04-07T14:08:56Z2009-04-07T14:08:56Z<p>Here's a set of PHP specific books that I've found to be stepping stones. I was introduced to lots of very good concepts through them. The authors all have background and experience spanning various other languages and are quite aware of the various limitations of PHP, whether technical, in tools, or in its very watered down community.
</p>
<p>
Their love for the language doesn't cloud their judgment and they often offer some very constructive criticism that will raise your awareness about certain aspects of development in PHP compared to other communities. They may also offer alternatives to pass the limited PHP infrastructures when you want to practice in ways common to Java, .NET, Ruby or Python developers.
</p>
<p>In no particular order:</p>
<ul>
<li><a href="http://rads.stackoverflow.com/amzn/click/1590599098" rel="nofollow">PHP Objects, Patterns and Practice</a></li>
<li><a href="http://rads.stackoverflow.com/amzn/click/1590598199" rel="nofollow">Pro PHP: Patterns, Frameworks, Testing and More</a></li>
<li><a href="http://rads.stackoverflow.com/amzn/click/1932394753" rel="nofollow">PHP in Action: Objects, Design, Agility </a></li>
<li>Here's a free ebook, currently being written by Pádraic Brady: <a href="http://www.survivethedeepend.com/" rel="nofollow">Survive The Deep End</a>. At the time that I'm writing this, it only has 3 chapters and an appendix, but is already worth more than many PHP books that I've read. It's centered on the Zend Framework, but it seems to be more conceptual than technical, so I'm sure you can apply most of its content to many other frameworks. I would also recommend to check out <a href="http://blog.astrumfutura.com/" rel="nofollow">Pádraic's blog</a>. Lots of useful info in there.
</li>
</ul>
<p>Generally each author also has a blog, which links to other recommended resources, blogs, articles and books. That should keep you busy.</p>
<p>It took me some time to find these resources and after being aware of them, it made me realize how much time is spent looking for the signal through all the noise in the PHP community. I felt like just going Python or Ruby altogether, but I can't afford it right now. We need more developers like these guys, as they are the only thing that still validates PHP as a good candidate when looking for tools for serious professional development.</p>
http://stackoverflow.com/questions/708611/how-do-you-build-a-torrent-file-indexer1How do you build a torrent file indexer?michael2009-04-02T07:09:19Z2009-04-02T07:23:38Z
<p>I am curious about the technology behind a search engine like torrentz.com. From what I could observe, it doesn't host any torrent files, but rather connects you to other servers that do.</p>
<ul>
<li>
you search for keywords, it brings up a list of potential titles matching your search.
</li>
<li>
then you pick one of these and it provides you with another list of potential servers hosting the corresponding torrent file.
</li>
</ul>
<p>What I'm interested in particularly is the strategy behind gathering and indexing all that content:</p>
<p><b>How do they collect then aggregate the data?</b>
<br/>Is it a submission base service, where each of these servers submits its content for indexing?
<br/>Is it a crawling algorithm? If so how do you even start crawling a site like piratebay.org?
<br/>Do they have access to these other servers' databases?</p>
<p>My knowledge and understanding of the bittorrent protocol is not very elaborate, but the documentation that I found online pointed me more toward the processes involved in building a tracker service, which isn't exactly what I'm interested in. Any insight and recommended reading material is appreciated.</p>
http://stackoverflow.com/questions/530693/best-way-to-create-split-string-to-tags/668721#6687212Answer by michael for best way to create/split string to tagsmichael2009-03-21T04:04:32Z2009-03-21T09:35:52Z<p>I suppose you could first try to clean up the string before splitting it into tags:</p>
<pre><code># List characters that you would want to exclude from your tags and clean the string
$exclude = array( '/[?&\/]/', '/\s+/');
$replacements = array('', ' ');
$tags = preg_replace($exclude, $replacements, $tags);
# Now split:
$tagsArray = explode(' ', $tags);
</code></pre>
<p>You could probably adopt a white list approach to this as well, and rather have characters you accept listed in your pattern.</p>
http://stackoverflow.com/questions/524585/what-is-your-favorite-colorscheme-for-programming-in-vim/542607#5426076Answer by michael for What is your favorite colorscheme FOR PROGRAMMING in Vim?michael2009-02-12T18:15:46Z2009-02-16T01:05:02Z<p>I can't believe nobody mentioned <a href="http://www.vim.org/scripts/script.php?script_id=105" rel="nofollow">desert</a>, the best native dark theme. </p>
<blockquote>
<p>:colorscheme desert</p>
</blockquote>
<p><img src="http://tips.webdesign10.com/files/vim-colors.png" alt="alt text" /></p>
http://stackoverflow.com/questions/235839/how-do-i-indent-multiple-lines-quickly-in-vi/550381#5503812Answer by michael for How do I indent multiple lines quickly in vi?michael2009-02-15T05:42:04Z2009-02-15T05:42:04Z<p>when you select a block and use > to indent, it indents then goes back to normal mode. I have this in my .vimrc :</p>
<pre><code>vnoremap < <gv
vnoremap > >gv
</code></pre>
<p>It lets you indent your selection as many time as you want.</p>
http://stackoverflow.com/questions/550322/how-to-correctly-format-php-if-else-statements/550362#5503622Answer by michael for How to correctly format PHP 'IF ELSE' statements?michael2009-02-15T05:15:01Z2009-02-15T05:15:01Z<p>The PEAR coding standard is <em>the</em> PHP coding standard. I would recommend to get used to it as you will find it in other projects such as Zend, Doctrine, Symfony, Horde and many, many more.</p>
<p><a href="http://framework.zend.com/manual/en/coding-standard.coding-style.html#coding-standard.coding-style.control-statements.if-else-elseif" rel="nofollow">http://framework.zend.com/manual/en/coding-standard.coding-style.html#coding-standard.coding-style.control-statements.if-else-elseif</a></p>
http://stackoverflow.com/questions/442057/what-is-your-linux-vim-cheat-sheet/460319#4603192Answer by michael for What is your linux/vim cheat sheet?michael2009-01-20T07:02:11Z2009-01-20T07:02:11Z<p>a blog dedicated to vim where i have found some nice gems <a href="http://dailyvim.blogspot.com/" rel="nofollow">http://dailyvim.blogspot.com/</a></p>
http://stackoverflow.com/questions/282884/have-you-switched-from-codeigniter-to-kohana/395776#39577622Answer by michael for Have you switched from CodeIgniter to Kohana?michael2008-12-28T03:40:04Z2008-12-28T03:48:12Z<p>I have used CI, Kohana and Zend:</p>
<p>CI is good for newbies. It gives a nice intro to a couple of concepts. However, if you have time to improve as a developer and keep learning about architecture and new techniques, you'll grow tired of it after a while. Some people don't have this luxury, they work in web firms that use them like coding mules. Production, production, production. No time to recycle your knowledge. In such cases, CI usually gives the illusion to be a masterpiece.</p>
<p>Pros: PHP4 (this is a pro depending whom you ask) compatible with PHP5, fast on benchmarks, simple, nice doc, light footprint, low learning curve, friendly community (although i have noticed an increasing tendency for some seasoned users to pick on newbies), sponsored by a company, will be the underlying framework for the upcoming Expression Engine 2 cms.</p>
<p>Cons: PHP4 so doesn't use PHP5 goodies (no autoload, no PDO, no SOAP, no SPL, etc), weird architecture where the controller is also a registry and a factory. A few of what I consider to be downers in CI: the $this->load->lib('somelib') factory scheme; form validation inside the controller; CI Active Record is not a real Active Record, but merely an sql abstraction layer; the newbies to experts ratio in the community is too high (lots of experts don't stick around long enough).</p>
<p>Kohana is a huge improvement over CI nowadays, but it still suffers from a lack of exposure. More often than none, the process through which one joins its community is the same. You're a CI user and you're experiencing an annoyance with it and dare post a complaint in the forum, then someone pm you the name "Kohana" (it is generally preferred to carefully avoid mentioning that name in the CI forums as it has the potential to create turbulences in the otherwise civil discussions). Then when you check out Kohana, it appears to be all that you wished CI would be. Be careful though, Kohana is better than CI, but not quite the ultimate solution yet.</p>
<p>Pros: PHP5 and goodies, a decent Active Record ORM (it's no Propel or Doctrine, but it's quite useful for common CRUD operations). Modular approach (aka HMVC or PAC). Stricter approach to architecture than CI, there is a clear definition of roles for different classes (registry, factories, template view, etc). The code looks good. It's maintained by the community, so development is more active. Developers also seem to care more for best practice. There is an effort to cover some of the most obscure concepts through blog articles.</p>
<p>Cons: Doc is not always consistent, in some areas it will be outdated, while on other it would cover features only accessible from the non-stable svn version. Forum is almost desert, everybody is on IRC. Backward compatibility doesn't seem to be a priority either, not good for a project with such an active development. Kohana doesn't have the sponsor backing that CI has, there are no guarantees that it's not just a fad and will stick around for many years to come. </p>
<p>In conclusion, If I were to choose between these 2 frameworks, my vote would go to Kohana.</p>
http://stackoverflow.com/questions/1783403/in-javascript-is-it-possible-to-construct-an-object-literal-with-expressions-evalComment by michael on in javascript is it possible to construct an object literal with expressions evaluating to strings for property names?michael2009-11-23T16:21:02Z2009-11-23T16:21:02ZThanks for replies. Voted both up and accepted Fabien's as he was first to reply. thanks again.http://stackoverflow.com/questions/9157/what-is-the-best-laptop-for-programmers/9262#9262Comment by michael on What is the best Laptop for programmers?michael2009-11-04T02:39:37Z2009-11-04T02:39:37Z+1 for the bbd reference. :))http://stackoverflow.com/questions/1669260/accessing-urls-by-www-example-com-page-instead-of-www-example-com-page-php/1669320#1669320Comment by michael on Accessing URLS by www.example.com/page instead of www.example.com/page.phpmichael2009-11-03T22:05:54Z2009-11-03T22:05:54Z+1 MultiViews should definitely be turned off if you are to use mod_rewrite, otherwise you're guaranteed a headache.http://stackoverflow.com/questions/1668570/how-to-master-java-and-ruby-fastest-for-a-phper/1668727#1668727Comment by michael on How to master java and ruby fastest for a PHPer?michael2009-11-03T21:57:23Z2009-11-03T21:57:23ZI'd say Java is much more similar to PHP than Ruby is. Coming from PHP and with no Java training, I can pick up some Java source and figure out what's going on. I'm not so sure the same applies with Ruby. You need to be introduced to its idiosyncrasies, otherwise you might spend quite some time deciphering it.http://stackoverflow.com/questions/1670022/php-developer-what-language-next/1670040#1670040Comment by michael on php developer - what language next?michael2009-11-03T21:01:01Z2009-11-03T21:01:01ZI'd say Python or Ruby. I prefer Python as well for about the same reasons as already stated, plus it's a pretty versatile language. Also, they're different enough from PHP that you would feel like you're actually learning something new. http://stackoverflow.com/questions/235839/how-do-i-indent-multiple-lines-quickly-in-vi/550381#550381Comment by michael on How do I indent multiple lines quickly in vi?michael2009-09-01T19:38:07Z2009-09-01T19:38:07Zhahaha, i'm such a noob!http://stackoverflow.com/questions/1351735/facebook-connect-or-openid-from-a-developers-perspective/1351759#1351759Comment by michael on Facebook-connect or OpenID? From a developer's perspective.michael2009-08-29T16:13:37Z2009-08-29T16:13:37ZI'm comfortable with Single Sign On within a network of related sites. I just don't get the point of having my site treated as part of such a network when all I want is the authentication process.
Btw, you can log on to SO with your google id. My point is that even if your gmail window is open 24/7, when you try to log in to SO, you will be prompted for your username/password. As a developer I like that, because I receive a definite flag that I can use to properly initialize a profile.http://stackoverflow.com/questions/1156169/force-user-to-enter-login-even-if-logged-in-with-facebook-connect/1175223#1175223Comment by michael on Force user to enter login even if logged in with Facebook Connectmichael2009-08-28T17:50:59Z2009-08-28T17:50:59ZI see that you have accepted your own reply. Did you ever find a solution for that problem? If yes could you share? I'm currently running into the exact same issue. I have to work on this application and the marketing people drank the facebook-connect Kool Aid. I thought it worked like OpenID, but it only checks if you're connected to the facebook network and if you are, then you have the green light. No login popup, nothing. I fail to see how that's cool.http://stackoverflow.com/questions/1224627/cmake-ccmake-or-cmake/1224648#1224648Comment by michael on CMake... ccmake or cmake?michael2009-08-27T13:16:03Z2009-08-27T13:16:03Zmaybe a simple comment rather than an answer would've made more sense. no big deal though.http://stackoverflow.com/questions/68372/what-is-your-single-most-favorite-command-line-trick-using-bash/68429#68429Comment by michael on What is your single most favorite command-line trick using Bash?michael2009-08-23T08:35:40Z2009-08-23T08:35:40Zsudo sounds japanese too. I can perfectly picture an angry samurai yelling it before brandishing his katana. "SUDO !!"http://stackoverflow.com/questions/282884/have-you-switched-from-codeigniter-to-kohana/395776#395776Comment by michael on Have you switched from CodeIgniter to Kohana?michael2009-07-06T20:39:30Z2009-07-06T20:39:30ZI don't think you understood that sentence as I intended. It has very little to do with programmers liking to get things done, most do. What I meant is that knowledge is a programmer's best tool, but learning can be a costly process and therefore is an investment only for those who see value in it. Many web shops don't and usually worry more about how fast can code be turned into cash. In such places, programmers are seldom allowed time to revisit their skills or learn better ways. A framework like CI, boasting a light footprint and low learning curve, then appears to be a good solution.http://stackoverflow.com/questions/717836/kohana-or-codeigniter/717843#717843Comment by michael on Kohana or CodeIgniter?michael2009-06-18T05:33:21Z2009-06-18T05:33:21Z[ I would suspect CodeIgniter has a larger community than Kohana. That's probably reason enough to go with CI and ignore any subtle differences in speed.]
CodeIgniter has been heavily advertised as easy, accessible, simple, light footprint, etc. So, it has appealed to lots of developers at that entry level. Quantity, just like speed, should not be a key criterion for choosing a framework. I'd rather take advice from 1 experienced Kohana developer than 10 from CI. I know this because I've been in both communities.http://stackoverflow.com/questions/168283/when-do-you-use-an-ide/168338#168338Comment by michael on When do you use an IDE?michael2009-04-13T13:37:25Z2009-04-13T13:37:25ZAm I mistaking or did you just sort of equate Notepad to Vim? http://stackoverflow.com/questions/178560/which-php-cms-has-the-best-architecture/458996#458996Comment by michael on Which PHP CMS has the best architecture?michael2009-04-12T10:40:47Z2009-04-12T10:40:47Z@Peter: Exactly my grip with all these projects. Some people have spent a lifetime studying and documenting good architectures and patterns, so that we could simply learn it once and code better forever, but what you often find in those cms are rogue architectures from the founders own imaginations.http://stackoverflow.com/questions/178560/which-php-cms-has-the-best-architecture/178598#178598Comment by michael on Which PHP CMS has the best architecture?michael2009-04-12T10:22:53Z2009-04-12T10:22:53Zand EE isn't built on top of CI. EE isn't open source either, in case anyone was wondering. Although it has been announced that the next generation EE2 will be built on top of CI.