User Imran - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T04:35:31Zhttp://stackoverflow.com/feeds/user/1897http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1858520/hidden-features-of-django4Hidden features of DjangoImran2009-12-07T08:01:37Z2009-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-3Answer by Imran for Hidden features of DjangoImran2009-12-07T08:06:45Z2009-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#18416730Answer by Imran for ValueError: invalid literal for int() with base 10: ''Imran2009-12-03T17:49:47Z2009-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#18243863Answer by Imran for How do I query XHTML using python?Imran2009-12-01T06:36:39Z2009-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-java2Developing Eclipse plugins without JavaImran2009-11-13T23:44:35Z2009-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#17326820Answer by Imran for Books to learn how to make web development fun instead of frustratingImran2009-11-14T00:07:44Z2009-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#17326560Answer by Imran for How would you plan a "learn programming" curriculum for beginners?Imran2009-11-13T23:59:42Z2009-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-not4HTML meta keyword/description element, useful or not?Imran2008-09-09T22:51:25Z2009-10-28T14:39:44Z
<p>Does filling out HTML meta description/keyword tags matter for SEO?</p>
http://stackoverflow.com/questions/739654/understanding-python-decorators12Understanding Python decoratorsImran2009-04-11T07:05:31Z2009-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><b><i>Hello<i></b>
</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#13169785Answer by Imran for PHP function to reorder an arrayImran2009-08-22T20:35:01Z2009-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 => $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 => $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 => $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#15526981Answer by Imran for Extracting text fields from HTML using Python?Imran2009-10-12T04:27:37Z2009-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#15356061Answer by Imran for How to build a last login script using PHP?Imran2009-10-08T04:19:31Z2009-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->prepare("UPDATE user SET last_login = ? where user_id = ?");
$stmt->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#15352950Answer by Imran for How to remove these duplicates in a list (python)Imran2009-10-08T02:22:41Z2009-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(<type 'list'>, {'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#14783470Answer by Imran for Installing PDO_MYSQL PHP extension on CPanel?Imran2009-09-25T16:40:28Z2009-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-deployment0mod_deflate vs Django GZipMiddleware, which one to use for deployment?Imran2009-07-13T19:36:13Z2009-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-operator5Which coding style you use for ternary operator?Imran2008-10-28T13:10:42Z2009-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#14248785Answer by Imran for Which open source license?Imran2009-09-15T02:44:54Z2009-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-manipulation2Inconsistency in jQuery's attribute manipulationImran2009-09-08T06:59:50Z2009-09-08T14:16:51Z
<pre><code>$('<option selected="selected">something</option>')
.removeAttr('selected')
.wrap('<p></p>').parent().html();
</code></pre>
<p>results in</p>
<pre><code><option>something</option>
</code></pre>
<p>which is expected. But if I put back the 'selected' attribute after removing it (or to an <code><option></code> tag without 'selected' attribute), I get the same output.</p>
<pre><code>$('<option selected="selected">something</option>')
.removeAttr('selected')
.attr('selected', 'selected')
.wrap('<p></p>').parent().html();
</code></pre>
<p>Why is this happening?</p>
http://stackoverflow.com/questions/1330380/tortoisehg-without-context-menu-commands0TortoiseHg without context menu commandsImran2009-08-25T19:17:36Z2009-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#13847571Answer by Imran for Finding string-key in Javascript arrayImran2009-09-06T02:51:14Z2009-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-by3Django equivalent of COUNT with GROUP BY Imran2009-05-08T22:08:32Z2009-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#13521760Answer by Imran for PHP language detectionImran2009-08-29T19:18:42Z2009-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><?php
// List of available localized versions as 'lang code' => 'url' map
$sites = array(
"en" => "http://en.mysite.com/",
"bn" => "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]);
?>
</code></pre>
http://stackoverflow.com/questions/1301442/has-anybody-tried-html2pdf-in-django/1344098#13440981Answer by Imran for Has anybody tried html2pdf in django?Imran2009-08-27T22:29:21Z2009-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><table></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#13268940Answer by Imran for PHP Obfuscator for use with Code igniter codeImran2009-08-25T08:41:28Z2009-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#13168713Answer by Imran for When to use static modifier in PHPImran2009-08-22T19:48:49Z2009-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-or5How can I tell whether my Django application is running on development server or not?Imran2009-08-18T04:10:26Z2009-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#12158582Answer by Imran for How to get the pictures from folder one by one and display in the page using PHPImran2009-08-01T04:48:49Z2009-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' => 'image/gif',
'png' => 'image/png',
'jpg' => '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#11964750Answer by Imran for Apache Django Mod_Wsgi Sessions Development EnviromentImran2009-07-28T20:14:33Z2009-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-function6Cost of len() functionImran2009-07-12T04:31:02Z2009-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#11061581Answer by Imran for PHP quirks and pitfallsImran2009-07-09T20:03:04Z2009-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-djangoComment by Imran on Hidden features of DjangoImran2009-12-07T08:08:39Z2009-12-07T08:08:39ZMany are not. But I made it CW now, since you ask :)http://stackoverflow.com/questions/1732594/developing-eclipse-plugins-without-java/1732685#1732685Comment by Imran on Developing Eclipse plugins without JavaImran2009-11-14T00:11:37Z2009-11-14T00:11:37ZWhat about other JVM languages?http://stackoverflow.com/questions/1535596/simple-question-about-in-pythonComment by Imran on simple question about '//' in pythonImran2009-10-08T04:24:55Z2009-10-08T04:24:55ZI think the syntax highlighter treats both // and # as comment, regardless of language
http://stackoverflow.com/questions/1424867/which-open-source-license/1424878#1424878Comment by Imran on Which open source license?Imran2009-09-15T02:57:20Z2009-09-15T02:57:20ZLGPL 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-argumentsComment by Imran on Python __init__ setattr on arguments?Imran2009-09-14T08:38:40Z2009-09-14T08:38:40Zsee 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/…</a>http://stackoverflow.com/questions/1392393/inconsistency-in-jquerys-attribute-manipulation/1392506#1392506Comment by Imran on Inconsistency in jQuery's attribute manipulationImran2009-09-08T18:11:58Z2009-09-08T18:11:58ZI wrapped the <code><option></code> tag in <code><p></code> just to test serialization behavior.http://stackoverflow.com/questions/1330380/tortoisehg-without-context-menu-commands/1389537#1389537Comment by Imran on TortoiseHg without context menu commandsImran2009-09-07T22:38:29Z2009-09-07T22:38:29ZThis 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#1332281Comment by Imran on TortoiseHg without context menu commandsImran2009-08-29T08:33:17Z2009-08-29T08:33:17Zdidn't work for me :(http://stackoverflow.com/questions/1150098/naming-of-interfaces-abstract-classes-in-php-5-3-using-namespacesComment by Imran on Naming of interfaces/abstract classes in PHP 5.3 (using namespaces)Imran2009-07-19T15:24:43Z2009-07-19T15:24:43ZHasn'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-tagsComment by Imran on What manner of regular expression might I use to add line breaks near HTML tags?Imran2009-07-02T17:56:01Z2009-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/…</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-tagsComment by Imran on What manner of regular expression might I use to add line breaks near HTML tags?Imran2009-07-02T16:49:54Z2009-07-02T16:49:54ZThe 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#1036304Comment by Imran on print 'Hello World' to the screen multiple times?Imran2009-06-24T05:55:18Z2009-06-24T05:55:18Z9 upvotes for "Hello World!" code, wow!http://stackoverflow.com/questions/965694/whats-the-official-way-of-storing-settings-for-python-programs/965742#965742Comment by Imran on What's the official way of storing settings for python programs?Imran2009-06-08T19:04:50Z2009-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#959066Comment by Imran on How to send a GET request from PHP?Imran2009-06-07T05:58:59Z2009-06-07T05:58:59Zhttp extension is not bundled with PHP and often not available in shared hosts.http://stackoverflow.com/questions/902824/php-arrays-extract-one-dimension/902825#902825Comment by Imran on PHP arrays: extract one dimensionImran2009-05-24T03:08:29Z2009-05-24T03:08:29Zmissing <code>array</code> in line 1 and <code>;</code> on line 4