User FA - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T21:15:15Zhttp://stackoverflow.com/feeds/user/33281http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/516823/dynamic-include/516840#516840-6Answer by FA for Dynamic IncludeFA2009-02-05T17:05:11Z2009-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#5107711Answer by FA for Can you suggest a good book on graphs and graph algorithms?FA2009-02-04T10:15:46Z2009-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#5105750Answer by FA for Reasons not to use djangoFA2009-02-04T08:57:11Z2009-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#50639210Answer by FA for What are the things Java got wrong?FA2009-02-03T08:48:51Z2009-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#5060820Answer by FA for When should I use GET or POST method? What's the difference between them?FA2009-02-03T05:19:59Z2009-02-03T05:19:59Z<p>Querystring on GET is limited to 2048 characters.</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/326893#3268935Answer by FA for Hidden features of PythonFA2008-11-28T23:27:59Z2008-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#2555903Answer by FA for How do you implement a "Did you mean"?FA2008-11-01T06:45:29Z2008-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#516840Comment by FA on Dynamic IncludeFA2009-02-05T17:09:45Z2009-02-05T17:09:45ZI know, but it's still very common to use addslashes for trying to prevent SQL injections.