User Imran - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T04:35:31Z http://stackoverflow.com/feeds/user/1897 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1858520/hidden-features-of-django 4 Hidden features of Django Imran 2009-12-07T08:01:37Z 2009-12-07T08:55:24Z <p>Almost every popular language/tool/framework has <a href="http://stackoverflow.com/search?q=%22hidden+features+of%22">this topic</a>. So why not one for Django? The usual rules apply (1 feature per reply)</p> http://stackoverflow.com/questions/1858520/hidden-features-of-django/1858540#1858540 -3 Answer by Imran for Hidden features of Django Imran 2009-12-07T08:06:45Z 2009-12-07T08:06:45Z <p><strong>Fixing <code>favicon.ico 404 Not Found Error</code></strong></p> <p>Add this to <code>urls.py</code></p> <pre><code>(r'^favicon.ico$', lambda r: HttpResponse('')) </code></pre> <p>Of course, you'll have to import <code>HttpResponse</code> from <code>django.http</code> in urls.py </p> http://stackoverflow.com/questions/1841565/valueerror-invalid-literal-for-int-with-base-10/1841673#1841673 0 Answer by Imran for ValueError: invalid literal for int() with base 10: '' Imran 2009-12-03T17:49:47Z 2009-12-03T17:49:47Z <blockquote> <p>I am creating a program that reads a file and if the first line of the file is not blank, it reads the next four lines. Calculations are performed on those lines and then the next line is read.</p> </blockquote> <p>Something like this should work:</p> <pre><code>for line in infile: next_lines = [] if line.strip(): for i in xrange(4): try: next_lines.append(infile.next()) except StopIteration: break # Do your calculation with "4 lines" here </code></pre> http://stackoverflow.com/questions/1824057/how-do-i-query-xhtml-using-python/1824386#1824386 3 Answer by Imran for How do I query XHTML using python? Imran 2009-12-01T06:36:39Z 2009-12-01T06:36:39Z <p>You can also do it with <a href="http://codespeak.net/lxml/" rel="nofollow">lxml</a>. It <a href="http://codespeak.net/lxml/lxmlhtml.html" rel="nofollow">handles HTML</a> <a href="http://blog.ianbicking.org/2008/12/10/lxml-an-underappreciated-web-scraping-library/" rel="nofollow">very well</a>, and you can use <a href="http://codespeak.net/lxml/cssselect.html" rel="nofollow">CSS selectors</a> for querying DOM, which makes it particularly attractive if you use libraries like jQuery regularly.</p> http://stackoverflow.com/questions/1732594/developing-eclipse-plugins-without-java 2 Developing Eclipse plugins without Java Imran 2009-11-13T23:44:35Z 2009-11-17T13:45:34Z <p>Is it possible to create Eclipse plugins/program Eclipse RCP apps without Java? (preferably in Jython)</p> http://stackoverflow.com/questions/1732615/books-to-learn-how-to-make-web-development-fun-instead-of-frustrating/1732682#1732682 0 Answer by Imran for Books to learn how to make web development fun instead of frustrating Imran 2009-11-14T00:07:44Z 2009-11-14T00:07:44Z <p><a href="http://www.djangobook.com/" rel="nofollow">The Django Book</a>, if using Python is not a problem. Being free, you don't have anything to lose by just trying out.</p> http://stackoverflow.com/questions/1732556/how-would-you-plan-a-learn-programming-curriculum-for-beginners/1732656#1732656 0 Answer by Imran for How would you plan a "learn programming" curriculum for beginners? Imran 2009-11-13T23:59:42Z 2009-11-13T23:59:42Z <p>The curriculum should encourage putting the learned programming constructs to practical use in various different ways. Different people find different things interesting, so it should be possible to try out different things (text processing, graphics, GUI/Web programming) with minimal extra learning curve. Python is the ideal choice for a beginners curriculum, because </p> <ul> <li>It's easy to learn</li> <li>Standard and 3rd party libraries are great</li> <li>Plenty of resources on using it to teach programming</li> <li>Used in real world programming</li> </ul> http://stackoverflow.com/questions/53081/html-meta-keyword-description-element-useful-or-not 4 HTML meta keyword/description element, useful or not? Imran 2008-09-09T22:51:25Z 2009-10-28T14:39:44Z <p>Does filling out HTML meta description/keyword tags matter for SEO?</p> http://stackoverflow.com/questions/739654/understanding-python-decorators 12 Understanding Python decorators Imran 2009-04-11T07:05:31Z 2009-10-21T15:08:09Z <p>How can I make a decorator in Python that would do the following.</p> <pre><code>@makebold @makeitalic def say(): return "Hello" </code></pre> <p>which should return</p> <pre><code>&lt;b&gt;&lt;i&gt;Hello&lt;i&gt;&lt;/b&gt; </code></pre> <p>I'm not trying to make HTML this way in a real application, just trying to understand how decorators and decorator chaining works.</p> http://stackoverflow.com/questions/1316916/php-function-to-reorder-an-array/1316978#1316978 5 Answer by Imran for PHP function to reorder an array Imran 2009-08-22T20:35:01Z 2009-10-13T18:36:19Z <p>This function should work, and this is as straightforward as it can get.</p> <pre><code>function reindex_array($src) { $dest = array(); foreach ($array as $key =&gt; $value) { if (is_array($value)) { foreach ($value as $dest_val) { $dest[$key][] = $dest_val; } } } return $dest; } </code></pre> <p>Using array_values() as suggested in <a href="http://stackoverflow.com/questions/1316916/php-function-to-reorder-an-array/1317000#1317000">Henrik's answer</a></p> <pre><code>function reindex_array($src) { $dest = array(); foreach ($array as $key =&gt; $value) { if (is_array($value)) { $dest[$key] = array_values($value); } } return $dest; } </code></pre> <p>This will make the array index 0-based though. If you want 1-based indexing, then use this:</p> <pre><code>function reindex_array($src) { $dest = array(); foreach ($array as $key =&gt; $value) { if (is_array($value)) { $count = 1; foreach ($value as $dest_val) { $dest[$key][$count] = $dest_val; $count++; } } } return $dest; } </code></pre> http://stackoverflow.com/questions/1551293/extracting-text-fields-from-html-using-python/1552698#1552698 1 Answer by Imran for Extracting text fields from HTML using Python? Imran 2009-10-12T04:27:37Z 2009-10-12T04:27:37Z <p>With <a href="http://codespeak.net/lxml/" rel="nofollow">lxml</a> you can do it almost as easily as you could do it with jQuery.</p> <pre><code>from lxml import html doc = html.parse('test.html').getroot() for row in doc.cssselect('tr'): name, phone_number = row.cssselect('td')[:2] print name.text_content() print phone_number.text_content() </code></pre> http://stackoverflow.com/questions/1535567/how-to-build-a-last-login-script-using-php/1535606#1535606 1 Answer by Imran for How to build a last login script using PHP? Imran 2009-10-08T04:19:31Z 2009-10-08T04:19:31Z <p>For storing last access time, save the current time against logged in user in database at the end of the script.</p> <p>For storing last login time, save the current time against verified user after identity confirmation is done.</p> <p>Suppose you have a <code>user</code> table in database which has a <code>last_login</code> field , and <code>$user</code> array contains identity of the logged-in/verified user identity.</p> <pre><code>// assuming you are using PDO for database access $stmt = $conn-&gt;prepare("UPDATE user SET last_login = ? where user_id = ?"); $stmt-&gt;execute(array($user['id'], strftime("%Y-%M-%D")); </code></pre> http://stackoverflow.com/questions/1534736/how-to-remove-these-duplicates-in-a-list-python/1535295#1535295 0 Answer by Imran for How to remove these duplicates in a list (python) Imran 2009-10-08T02:22:41Z 2009-10-08T02:22:41Z <p>You can use <code>defaultdict</code> to group items by <code>link</code>, then removed duplicates if you want to.</p> <pre><code>from collections import defaultdict nodupes = defaultdict(list) for d in biglist: nodupes[d['url']].append(d['title'] </code></pre> <p>This will give you:</p> <pre><code>defaultdict(&lt;type 'list'&gt;, {'abc.com': ['ABC Station'], 'u2.com': ['U2 Band', 'Live Concert by U2']}) </code></pre> http://stackoverflow.com/questions/1478201/installing-pdomysql-php-extension-on-cpanel/1478347#1478347 0 Answer by Imran for Installing PDO_MYSQL PHP extension on CPanel? Imran 2009-09-25T16:40:28Z 2009-09-25T16:40:28Z <p>I don't think you can do it in a shared host or with cPanel.</p> <p>Convince the webhost to install it for you.</p> http://stackoverflow.com/questions/1121608/moddeflate-vs-django-gzipmiddleware-which-one-to-use-for-deployment 0 mod_deflate vs Django GZipMiddleware, which one to use for deployment? Imran 2009-07-13T19:36:13Z 2009-09-25T09:17:19Z <p>We're deploying Django apps with Apache 2.2 + mod_wsgi. Should we enable mod_deflate in Apache or use Django's GZipMiddleware? Which option performs better?</p> http://stackoverflow.com/questions/243217/which-coding-style-you-use-for-ternary-operator 5 Which coding style you use for ternary operator? Imran 2008-10-28T13:10:42Z 2009-09-25T02:17:24Z <p>I keep it in single line, if it's short. Lately I've been using this style for longer or nested ternary operator expressions. A contrived example:</p> <pre><code>$value = ( $a == $b ) ? 'true value # 1' : ( $a == $c ) ? 'true value # 2' : 'false value'; </code></pre> <p>Personally which style you use, or find most readable?</p> <p><strong>Edit:</strong> <em>(on when to use ternary-operator)</em></p> <p>I usually avoid using more than 2 levels deep ternary operator. I tend prefer 2 levels deep ternary operator over 2 level if-else, when I'm echoing variables in PHP template scripts.</p> http://stackoverflow.com/questions/1424867/which-open-source-license/1424878#1424878 5 Answer by Imran for Which open source license? Imran 2009-09-15T02:44:54Z 2009-09-15T02:44:54Z <p><strong><a href="http://en.wikipedia.org/wiki/LGPL" rel="nofollow">LGPL</a></strong> will let the binary of your project to be used with closed source projects, but require changes to your program's source to be made public.</p> http://stackoverflow.com/questions/1392393/inconsistency-in-jquerys-attribute-manipulation 2 Inconsistency in jQuery's attribute manipulation Imran 2009-09-08T06:59:50Z 2009-09-08T14:16:51Z <pre><code>$('&lt;option selected="selected"&gt;something&lt;/option&gt;') .removeAttr('selected') .wrap('&lt;p&gt;&lt;/p&gt;').parent().html(); </code></pre> <p>results in</p> <pre><code>&lt;option&gt;something&lt;/option&gt; </code></pre> <p>which is expected. But if I put back the 'selected' attribute after removing it (or to an <code>&lt;option&gt;</code> tag without 'selected' attribute), I get the same output.</p> <pre><code>$('&lt;option selected="selected"&gt;something&lt;/option&gt;') .removeAttr('selected') .attr('selected', 'selected') .wrap('&lt;p&gt;&lt;/p&gt;').parent().html(); </code></pre> <p>Why is this happening?</p> http://stackoverflow.com/questions/1330380/tortoisehg-without-context-menu-commands 0 TortoiseHg without context menu commands Imran 2009-08-25T19:17:36Z 2009-09-07T13:54:55Z <p>TortoiseHG's context menu entries <a href="http://img213.imageshack.us/img213/114/shell.png" rel="nofollow">totally mess up Windows 7 explorer's context menu's appearance</a>, and I can get by fine with the hg command line tools. However Tortoise Overlay icons are must-have for me. </p> <p>How can I disable TortoiseHg's context menu commands but still have the Tortoise Overlay icons appear in hg repository folders?</p> http://stackoverflow.com/questions/1384746/finding-string-key-in-javascript-array/1384757#1384757 1 Answer by Imran for Finding string-key in Javascript array Imran 2009-09-06T02:51:14Z 2009-09-06T02:51:14Z <p>Check the type and value of <code>result</code> (and <code>result.detectedSourceLanguage</code>). It could be one of the following</p> <ul> <li><code>result</code> is not defined</li> <li><code>result</code> is not an object or doesn't have any attribute named <code>detectedSourceLanguage</code></li> <li>Value of <code>result.detectedSourceLanguage</code> is not a string or there's no such key in <code>lang</code> (then it's supposed to return <code>undefined</code> for <code>alert(lang[result.detectedSourceLanguage]);</code> )</li> </ul> <p>BTW, your problem has nothing to do with jQuery</p> http://stackoverflow.com/questions/842031/django-equivalent-of-count-with-group-by 3 Django equivalent of COUNT with GROUP BY Imran 2009-05-08T22:08:32Z 2009-09-05T16:14:09Z <p>I know Django 1.1 has some new aggregation methods. However I couldn't figure out equivalent of the following query:</p> <pre><code>SELECT player_type, COUNT(*) FROM players GROUP BY player_type; </code></pre> <p>Is it possible with Django 1.1's Model Query API or should I just use plain SQL?</p> http://stackoverflow.com/questions/1352130/php-language-detection/1352176#1352176 0 Answer by Imran for PHP language detection Imran 2009-08-29T19:18:42Z 2009-08-29T19:27:35Z <p>Here's the script I used for a bi-lingual site. It is to be used as <code>index.php</code> of <code>mysite.com</code>. Based on the user's browser's language preference, it would redirect to desired language version of the site or the default language site if the site in user's preferred langauge was not available.</p> <pre><code>&lt;?php // List of available localized versions as 'lang code' =&gt; 'url' map $sites = array( "en" =&gt; "http://en.mysite.com/", "bn" =&gt; "http://bn.mysite.com/", ); // Get 2 char lang code $lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2); // Set default language if a `$lang` version of site is not available if (!in_array($lang, array_keys($sites))) $lang = 'en'; // Finally redirect to desired location header('Location: ' . $sites[$lang]); ?&gt; </code></pre> http://stackoverflow.com/questions/1301442/has-anybody-tried-html2pdf-in-django/1344098#1344098 1 Answer by Imran for Has anybody tried html2pdf in django? Imran 2009-08-27T22:29:21Z 2009-08-27T22:29:21Z <p>The accounting software we are developing uses pisa to generate pdf reports. The process is like this:</p> <ol> <li>Render a HTML template</li> <li>Convert the rendered string to pdf. You can directly use the HttpResponse object you will return as output file, or a <code>StringIO</code> object to store the pdf and send its content via HttpResponse.</li> <li>The mimetype of <code>HttpResponse</code> object should be set to <code>application/pdf</code> and use <code>ContentDisposition</code> header if you want to trigger download instead of displaying in the browser.</li> </ol> <p>Pisa uses some unique CSS properties to specify pdf related formatting (page-size, page-break etc). Their docs provide sufficient examples on this.</p> <p>Pisa's rendering of HTML/CSS can be quite a bit different from what we usually see in browser. For example, setting <code>border="1"</code> on a <code>&lt;table&gt;</code> will give all cells of the table border, borders are always collapsed (border-collapse css attribute has no effect) etc.</p> http://stackoverflow.com/questions/1326857/php-obfuscator-for-use-with-code-igniter-code/1326894#1326894 0 Answer by Imran for PHP Obfuscator for use with Code igniter code Imran 2009-08-25T08:41:28Z 2009-08-25T08:41:28Z <p>Did you try <a href="http://www.ioncube.com/" rel="nofollow">ionCube PHP Encoder</a>? It should obfuscate any kind of PHP file, so no reason for not working with codeigniter (as codeigniter is pure PHP)</p> http://stackoverflow.com/questions/1316800/when-to-use-static-modifier-in-php/1316871#1316871 3 Answer by Imran for When to use static modifier in PHP Imran 2009-08-22T19:48:49Z 2009-08-22T19:48:49Z <blockquote> <p>Doing some code reviews lately I came across a number of classes that have significant number of static methods in them... and I can't seem to grasp why</p> </blockquote> <p>PHP didn't have namespaces before 5.3, so all function/variables would be in global scope unless they belonged in some class. Putting them in a class as static members is a workaround for not having namespaces (and that's probably why you saw them in "significant" number)</p> <p>Generally, they are used for functions that aren't much useful in individual objects, but has some use at class level (as said in other answers)</p> http://stackoverflow.com/questions/1291755/how-can-i-tell-whether-my-django-application-is-running-on-development-server-or 5 How can I tell whether my Django application is running on development server or not? Imran 2009-08-18T04:10:26Z 2009-08-18T15:53:25Z <p>How can I be certain that my application is running on development server or not? I suppose I could check value of <code>settings.DEBUG</code> and assume if <code>DEBUG</code> is <code>True</code> then it's running on development server, but I'd prefer to know for sure than relying on convention.</p> http://stackoverflow.com/questions/1215799/how-to-get-the-pictures-from-folder-one-by-one-and-display-in-the-page-using-php/1215858#1215858 2 Answer by Imran for How to get the pictures from folder one by one and display in the page using PHP Imran 2009-08-01T04:48:49Z 2009-08-01T04:48:49Z <p>Here's the basic structure for traversing a directory and doing something with the image files (given <code>'images'</code> is a directory in the same directory of your script)</p> <pre><code>$image_types = array( 'gif' =&gt; 'image/gif', 'png' =&gt; 'image/png', 'jpg' =&gt; 'image/jpeg', ); for ($entry in scandir('images')) { if (!is_dir($entry)) { if (in_array(mime_content_type('images/'. $entry), $image_types)) { // do something with image } } } </code></pre> <p>From here, you can send the images directly to browser, generate tags for HTML page or create thumbnails with <a href="http://www.php.net/gd" rel="nofollow">GD functions</a> and store them for displaying.</p> http://stackoverflow.com/questions/1196463/apache-django-modwsgi-sessions-development-enviroment/1196475#1196475 0 Answer by Imran for Apache Django Mod_Wsgi Sessions Development Enviroment Imran 2009-07-28T20:14:33Z 2009-07-28T20:14:33Z <p>You only need to <a href="http://en.wikipedia.org/wiki/Touch%5F%28unix%29" rel="nofollow"><code>touch</code></a> your WSGI script for the changes to take effect.</p> http://stackoverflow.com/questions/1115313/cost-of-len-function 6 Cost of len() function Imran 2009-07-12T04:31:02Z 2009-07-24T22:48:36Z <p>What is the cost of len() function for Python built-ins? Is it same for all built-ins? (list/tuple/string/dictionary)</p> http://stackoverflow.com/questions/1105423/php-quirks-and-pitfalls/1106158#1106158 1 Answer by Imran for PHP quirks and pitfalls Imran 2009-07-09T20:03:04Z 2009-07-09T20:14:50Z <p>Multiple ways of doing truth tests (<a href="http://us3.php.net/manual/en/language.operators.logical.php" rel="nofollow">not operator</a>, <a href="http://www.php.net/manual/en/function.empty.php" rel="nofollow">empty()</a>, <a href="http://www.php.net/manual/en/function.is-null.php" rel="nofollow">is_null()</a>, <a href="http://www.php.net/isset" rel="nofollow">isset()</a>) + weak typing = <a href="http://www.php.net/manual/en/types.comparisons.php" rel="nofollow">this</a></p> <p>With some discipline you can mostly avoid the need to refer to this table:</p> <ul> <li><p>For general truth tests, you can use boolean comparison <code>if ($)</code> { ... } <code>if (!$x) { ... }</code>. It behaves the way boolean operators in most languages do.</p></li> <li><p>Always use <code>empty()</code> if you want to test form input for falsy values (it treats "0" as false).</p></li> <li><p>Always use <code>isset()</code> if you want to determine whethere a variable is set or not</p></li> <li><p>Use <code>is_null()</code> or <code>$x === NULL</code> if you only need to check for NULL</p></li> </ul> http://stackoverflow.com/questions/1858520/hidden-features-of-django Comment by Imran on Hidden features of Django Imran 2009-12-07T08:08:39Z 2009-12-07T08:08:39Z Many are not. But I made it CW now, since you ask :) http://stackoverflow.com/questions/1732594/developing-eclipse-plugins-without-java/1732685#1732685 Comment by Imran on Developing Eclipse plugins without Java Imran 2009-11-14T00:11:37Z 2009-11-14T00:11:37Z What about other JVM languages? http://stackoverflow.com/questions/1535596/simple-question-about-in-python Comment by Imran on simple question about '//' in python Imran 2009-10-08T04:24:55Z 2009-10-08T04:24:55Z I think the syntax highlighter treats both // and # as comment, regardless of language http://stackoverflow.com/questions/1424867/which-open-source-license/1424878#1424878 Comment by Imran on Which open source license? Imran 2009-09-15T02:57:20Z 2009-09-15T02:57:20Z LGPL permits unmodified versions of your binaries to be distributed/sold with closed source commercial apps. As far as I understand, if they modify your program's source code, then they must release the modified version of your program's code (but their own program can still remain closed source). http://stackoverflow.com/questions/1419470/python-init-setattr-on-arguments Comment by Imran on Python __init__ setattr on arguments? Imran 2009-09-14T08:38:40Z 2009-09-14T08:38:40Z see also: <a href="http://stackoverflow.com/questions/739625/setattr-with-kwargs-pythonic-or-not" rel="nofollow" title="setattr with kwargs pythonic or not">stackoverflow.com/questions/739625/&hellip;</a> http://stackoverflow.com/questions/1392393/inconsistency-in-jquerys-attribute-manipulation/1392506#1392506 Comment by Imran on Inconsistency in jQuery's attribute manipulation Imran 2009-09-08T18:11:58Z 2009-09-08T18:11:58Z I wrapped the <code>&lt;option&gt;</code> tag in <code>&lt;p&gt;</code> just to test serialization behavior. http://stackoverflow.com/questions/1330380/tortoisehg-without-context-menu-commands/1389537#1389537 Comment by Imran on TortoiseHg without context menu commands Imran 2009-09-07T22:38:29Z 2009-09-07T22:38:29Z This would totally disable the shell extension, which I don't want (I only want to get rid of the context menu entries) http://stackoverflow.com/questions/1330380/tortoisehg-without-context-menu-commands/1332281#1332281 Comment by Imran on TortoiseHg without context menu commands Imran 2009-08-29T08:33:17Z 2009-08-29T08:33:17Z didn't work for me :( http://stackoverflow.com/questions/1150098/naming-of-interfaces-abstract-classes-in-php-5-3-using-namespaces Comment by Imran on Naming of interfaces/abstract classes in PHP 5.3 (using namespaces) Imran 2009-07-19T15:24:43Z 2009-07-19T15:24:43Z Hasn't abstract/interface been reserved keywords since PHP5? http://stackoverflow.com/questions/1075331/what-manner-of-regular-expression-might-i-use-to-add-line-breaks-near-html-tags Comment by Imran on What manner of regular expression might I use to add line breaks near HTML tags? Imran 2009-07-02T17:56:01Z 2009-07-02T17:56:01Z @Shog9: The only difference I see between <a href="http://stackoverflow.com/questions/456815/problems-with-html-marquee-tag" rel="nofollow" title="problems with html marquee tag">stackoverflow.com/questions/456815/&hellip;</a> and this question is the former got mentioned in SO podcast. http://stackoverflow.com/questions/1075331/what-manner-of-regular-expression-might-i-use-to-add-line-breaks-near-html-tags Comment by Imran on What manner of regular expression might I use to add line breaks near HTML tags? Imran 2009-07-02T16:49:54Z 2009-07-02T16:49:54Z The downvoters should be ashamed. There's nothing wrong with the question itself. http://stackoverflow.com/questions/1036268/print-hello-world-to-the-screen-multiple-times/1036304#1036304 Comment by Imran on print 'Hello World' to the screen multiple times? Imran 2009-06-24T05:55:18Z 2009-06-24T05:55:18Z 9 upvotes for &quot;Hello World!&quot; code, wow! http://stackoverflow.com/questions/965694/whats-the-official-way-of-storing-settings-for-python-programs/965742#965742 Comment by Imran on What's the official way of storing settings for python programs? Imran 2009-06-08T19:04:50Z 2009-06-08T19:04:50Z @Darren: Not true if you are using Python 2.5 or higher (because of ElementTree) http://stackoverflow.com/questions/959063/how-to-send-a-get-request-from-php/959066#959066 Comment by Imran on How to send a GET request from PHP? Imran 2009-06-07T05:58:59Z 2009-06-07T05:58:59Z http extension is not bundled with PHP and often not available in shared hosts. http://stackoverflow.com/questions/902824/php-arrays-extract-one-dimension/902825#902825 Comment by Imran on PHP arrays: extract one dimension Imran 2009-05-24T03:08:29Z 2009-05-24T03:08:29Z missing <code>array</code> in line 1 and <code>;</code> on line 4