User FA - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T21:15:15Z http://stackoverflow.com/feeds/user/33281 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/516823/dynamic-include/516840#516840 -6 Answer by FA for Dynamic Include FA 2009-02-05T17:05:11Z 2009-02-05T17:05:11Z <p>You should use at least something like that to prevent XSS attacks.</p> <pre><code>$content = htmlentities($_GET['page'], ENT_QUOTES, 'UTF-8'); </code></pre> <p>And addslashes won't protect you from SQL Injections.</p> http://stackoverflow.com/questions/510758/can-you-suggest-a-good-book-on-graphs-and-graph-algorithms/510771#510771 1 Answer by FA for Can you suggest a good book on graphs and graph algorithms? FA 2009-02-04T10:15:46Z 2009-02-04T10:15:46Z <p>Robert Sedgewick's Algorithms in Java, Part 5 book covers Graphs.</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0201361213" rel="nofollow">http://www.amazon.com/Algorithms-Java-Part-Graph-Pt-5/dp/0201361213</a></p> http://stackoverflow.com/questions/90032/reasons-not-to-use-django/510575#510575 0 Answer by FA for Reasons not to use django FA 2009-02-04T08:57:11Z 2009-02-04T08:57:11Z <p>I've used Django for a small site.</p> <ul> <li>Personally I don't like its template engine, I'm a big fan of Mako templates. That's why I've changed template engine to Mako.</li> <li>Maybe it's not issue anymore but its ORM automatically adds Integer as primary key which I had to find a way to use UUID as primary key.</li> <li>Slugify wasn't working properly on unicode strings.</li> <li>It's not ease to use stored procedures with Django.</li> <li>Querysets are confusing. For me it's more ease to view the SQL query than looking to somekind of a Q object.</li> </ul> http://stackoverflow.com/questions/457884/what-are-the-things-java-got-wrong/506392#506392 10 Answer by FA for What are the things Java got wrong? FA 2009-02-03T08:48:51Z 2009-02-03T18:38:18Z <p>Arrays are covariant which shouldn't be.</p> <p>See: <a href="http://en.wikipedia.org/wiki/Covariance_and_contravariance_(computer_science)" rel="nofollow">Wikipedia Article</a></p> http://stackoverflow.com/questions/504947/when-should-i-use-get-or-post-method-whats-the-difference-between-them/506082#506082 0 Answer by FA for When should I use GET or POST method? What's the difference between them? FA 2009-02-03T05:19:59Z 2009-02-03T05:19:59Z <p>Querystring on GET is limited to 2048 characters.</p> http://stackoverflow.com/questions/101268/hidden-features-of-python/326893#326893 5 Answer by FA for Hidden features of Python FA 2008-11-28T23:27:59Z 2008-11-28T23:27:59Z <p>You can easily transpose an array with zip.</p> <pre><code>a = [(1,2), (3,4)] zip(*a) </code></pre> http://stackoverflow.com/questions/41424/how-do-you-implement-a-did-you-mean/255590#255590 3 Answer by FA for How do you implement a "Did you mean"? FA 2008-11-01T06:45:29Z 2008-11-01T06:45:29Z <p>You may want to look at Peter Norvig's "<a href="http://www.norvig.com/spell-correct.html" rel="nofollow">How to Write a Spelling Corrector</a>" article.</p> http://stackoverflow.com/questions/516823/dynamic-include/516840#516840 Comment by FA on Dynamic Include FA 2009-02-05T17:09:45Z 2009-02-05T17:09:45Z I know, but it's still very common to use addslashes for trying to prevent SQL injections.