User adnam - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T00:27:16Zhttp://stackoverflow.com/feeds/user/27886http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/261338/what-is-the-best-way-to-insert-html-via-php/261416#2614160Answer by adnam for What is the best way to insert HTML via PHP ?adnam2008-11-04T10:13:59Z2008-11-04T10:13:59Z<p>Do NOT use smarty - PHP is a templating system in itself. Consider using this syntax:</p>
<pre><code><?php if($a):?>
[SOME MARKUP]
<?php else: ?>
[SOME OTHER MARKUP]
<? endif; ?>
</code></pre>
http://stackoverflow.com/questions/200968/where-can-i-find-advanced-javascript-features-explained/202074#2020741Answer by adnam for Where can I find advanced javascript features explained?adnam2008-10-14T17:26:54Z2008-10-14T17:26:54Z<p>I enjoyed <a href="http://rads.stackoverflow.com/amzn/click/159059908X" rel="nofollow">Pro Javascript Design Patterns</a> which covers these topics from the view of traditional design patterns: interfaces, flyweights, observer, chain-of-responsibility and others. You not only pick up on Javascript's functional language features, but see it applied to inheritance, encapsulation etc.</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/201905#2019054Answer by adnam for What is the best regular expression for validating email addresses?adnam2008-10-14T16:35:44Z2008-10-14T16:35:44Z<p><a href="http://www.iamcal.com/" rel="nofollow">Cal Henderson</a> (Flickr) wrote an article called <a href="http://www.iamcal.com/publish/articles/php/parsing_email/" rel="nofollow">Parsing Email Adresses in PHP</a> and shows how to do proper RFC (2)822-compliant Email Address parsing. You can also get the source code in <a href="http://code.iamcal.com/php/rfc822/" rel="nofollow">php</a>, python and ruby which is <a href="http://creativecommons.org/licenses/by-sa/2.5/" rel="nofollow">cc licensed</a>.</p>
http://stackoverflow.com/questions/200080/suggestions-for-a-web-application-for-a-group-project/201714#2017141Answer by adnam for Suggestions for a Web application for a group project.adnam2008-10-14T15:45:15Z2008-10-14T15:45:15Z<p>Have a look a Paul Graham's list of "Startup Ideas We'd Like to Fund" - lots more ideas and the CMS has been done to death.</p>
<p><a href="http://ycombinator.com/ideas.html" rel="nofollow">http://ycombinator.com/ideas.html</a></p>
<p>The list in short:</p>
<ol>
<li>A cure for the disease of which the RIAA is a symptom.</li>
<li>Simplified browsing</li>
<li>New news</li>
<li>Outsourced IT</li>
<li>Enterprise software 2.0</li>
<li>More variants of CRM</li>
<li>Something your company needs that doesn't exist</li>
<li>Dating</li>
<li>Photo/video sharing services</li>
<li>Auctions</li>
<li>Web Office apps</li>
<li>Fix advertising</li>
<li>Online learning</li>
<li>Tools for measurement</li>
<li>Off the shelf security</li>
<li>A form of search that depends on design</li>
<li>New payment methods (tricky)</li>
<li>The WebOS (si tienes 'webos', sorry Spanish joke)</li>
<li>Application and/or data hosting</li>
<li>Shopping guides</li>
<li>Finance software for individuals and small businesses</li>
<li>A web-based Excel/database hybrid</li>
<li>More open alternatives to Wikipedia</li>
<li>A buffer against bad customer service</li>
<li>ACraigslist competitor</li>
<li>Better video chat</li>
<li>Hardware/software hybrids</li>
<li>Fixing email overload</li>
<li>Easy site builders for specific markets</li>
<li>Startups for startups</li>
</ol>
http://stackoverflow.com/questions/201457/how-to-implement-url-pattern-interpreter-as-used-by-django-and-ror-in-php/201659#2016591Answer by adnam for How to implement URL pattern interpreter as used by Django and RoR in PHPadnam2008-10-14T15:30:15Z2008-10-14T15:30:15Z<p>have a look at the cakephp implementation as an example:</p>
<p><a href="https://trac.cakephp.org/browser/trunk/cake/1.2.x.x/cake/dispatcher.php" rel="nofollow">https://trac.cakephp.org/browser/trunk/cake/1.2.x.x/cake/dispatcher.php</a></p>
<p><a href="https://trac.cakephp.org/browser/trunk/cake/1.2.x.x/cake/libs/router.php" rel="nofollow">https://trac.cakephp.org/browser/trunk/cake/1.2.x.x/cake/libs/router.php</a></p>
<p>You could also do something with mod_rewrite:</p>
<pre><code><IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^(.*)$ $1 [L]
RewriteRule ^([a-z]{2})/(.*)$ $2?lang=$1 [QSA,L]
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
</IfModule>
</code></pre>
<p>This would catch urls like <code>/en/foo</code> <code>/de/foo</code> and pass them to index.php with <code>GET</code> parameters 'lang' amd 'url'. Something similar can be done for 'projects', 'actions' etc</p>