User adnam - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T00:27:16Z http://stackoverflow.com/feeds/user/27886 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/261338/what-is-the-best-way-to-insert-html-via-php/261416#261416 0 Answer by adnam for What is the best way to insert HTML via PHP ? adnam 2008-11-04T10:13:59Z 2008-11-04T10:13:59Z <p>Do NOT use smarty - PHP is a templating system in itself. Consider using this syntax:</p> <pre><code>&lt;?php if($a):?&gt; [SOME MARKUP] &lt;?php else: ?&gt; [SOME OTHER MARKUP] &lt;? endif; ?&gt; </code></pre> http://stackoverflow.com/questions/200968/where-can-i-find-advanced-javascript-features-explained/202074#202074 1 Answer by adnam for Where can I find advanced javascript features explained? adnam 2008-10-14T17:26:54Z 2008-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#201905 4 Answer by adnam for What is the best regular expression for validating email addresses? adnam 2008-10-14T16:35:44Z 2008-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#201714 1 Answer by adnam for Suggestions for a Web application for a group project. adnam 2008-10-14T15:45:15Z 2008-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#201659 1 Answer by adnam for How to implement URL pattern interpreter as used by Django and RoR in PHP adnam 2008-10-14T15:30:15Z 2008-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>&lt;IfModule mod_rewrite.c&gt; 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] &lt;/IfModule&gt; </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>