User Pierre-Jean Coudert - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T07:16:57Z http://stackoverflow.com/feeds/user/8450 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/791070/what-tools-to-automatically-inline-css-style-to-create-email-html-code 4 What tools to automatically inline CSS style to create email HTML code ? Pierre-Jean Coudert 2009-04-26T15:40:57Z 2009-11-30T14:36:50Z <p>When you take a look at <a href="http://www.campaignmonitor.com/css/" rel="nofollow">http://www.campaignmonitor.com/css/</a> you learn that you need to embed inline styles in your HTML, in order for your email to be read in any mail client.</p> <p>Do you know any tools or script to automatically convert an HTML file with a declared in to an HTML file with only inline CCS style attributes ?</p> <p><strong>Edit</strong>: Any Javascript solution ( ie: <a href="http://www.robertnyman.com/2006/04/24/get-the-rendered-style-of-an-element/" rel="nofollow">http://www.robertnyman.com/2006/04/24/get-the-rendered-style-of-an-element/</a> ) ? With jQuery ?</p> http://stackoverflow.com/questions/128498/what-are-the-best-code-refactoring-strategies 2 What are the best code refactoring strategies ? Pierre-Jean Coudert 2008-09-24T17:26:29Z 2009-11-27T21:12:15Z <p>Thanks for sharing your point of view and previous experiences here.</p> <p>Here are some of the point you can write on:</p> <ul> <li>What must be the main refactoring goals ?</li> <li>How do you scheduled your refactoring tasks ?</li> <li>Do you recommend any specific tool ?</li> <li>Do you plan pre and post refactoring tests ?</li> <li>Do you plan refactoring specific code-reviews ?</li> <li>...</li> </ul> <p>Anyway, feel free to share any thought, tip or best practice you can think about refactoring issues !</p> http://stackoverflow.com/questions/120584/svg-rendering-in-a-pygame-application 5 SVG rendering in a PyGame application Pierre-Jean Coudert 2008-09-23T12:13:14Z 2009-10-26T22:49:44Z <p>In a <a href="http://www.pygame.org/" rel="nofollow">pyGame</a> application, I would like to render resolution-free GUI widgets described in SVG.</p> <p>What tool and/or library can I use to reach this goal ?</p> <p>(I like the <a href="http://ocemp.sourceforge.net/gui.html" rel="nofollow">OCEMP GUI</a> toolkit but it seems to be bitmap dependent for its rendering)</p> http://stackoverflow.com/questions/81144/trac-in-a-scrum-team-what-are-the-best-plugins-hacks 15 Trac in a Scrum team : What are the best plugins / hacks ? Pierre-Jean Coudert 2008-09-17T08:31:40Z 2009-10-21T08:49:33Z <p>I want to setup a <a href="http://trac.edgewall.org/" rel="nofollow">Trac</a> server to support my developer team work along with <a href="http://bitten.edgewall.org/" rel="nofollow">Bitten</a> as a Continuous Integration server.</p> <p>We are using the <a href="http://en.wikipedia.org/wiki/Scrum_(development)" rel="nofollow">Scrum</a> development process.</p> <p>What are the Trac's plugins, hacks, macros or configurations I could use to fit my team needs ?</p> http://stackoverflow.com/questions/77694/drupal-6-how-to-quickly-theme-a-view 8 Drupal 6: How to quickly theme a view ? Pierre-Jean Coudert 2008-09-16T22:02:57Z 2009-10-21T00:50:41Z <p>I've defined a view with the cck and view2 modules. I would like to quickly define a template specific to this view. Any tutorial or information on this ? What are the files I need to modify ?</p> <p><hr /></p> <p><strong>Here are my findings: (Edited)</strong></p> <p>In fact there are two ways to theme a view : the "<strong>field</strong>" way and the "<strong>node</strong>" way. In "edit View", you can choose "<code>Row style: Node</code>", or "<code>Row style: Fields</code>".</p> <ul> <li>with the "<strong>Node</strong>" way, you can create a <strong>node-contentname.tpl.php</strong> wich will be called for each node in the view. You'll have access to your cck field values with $field_name[0]['value']. (edit2) You can use <strong>node-view-viewname.tpl.php</strong> wich will be only called for each node displayed from this view.</li> <li>with the "<strong>Field</strong>" way, you add a views-view-field--viewname--field-name-value.tpl.php for each field you want to theme individually.</li> </ul> <p>Thanks to previous responses, I've used the following tools :</p> <ul> <li>In the 'Basic Settings' block, the 'Theme: Information' to see all the different templates you can modify.</li> <li>The <a href="http://drupal.org/project/devel" rel="nofollow">Devel module</a>'s "Theme developer" to quickly find the field variable names.</li> <li><a href="http://views-help.doc.logrus.com/" rel="nofollow">View 2 documentation</a>, especially the <a href="http://views-help.doc.logrus.com/help/views/using-theme" rel="nofollow">"Using Theme"</a> page.</li> </ul> http://stackoverflow.com/questions/1361604/how-to-encode-utf8-filename-for-http-headers-python-django/1362846#1362846 0 Answer by Pierre-Jean Coudert for How to encode UTF8 filename for HTTP headers? (Python, Django) Pierre-Jean Coudert 2009-09-01T14:37:20Z 2009-09-01T14:37:20Z <p>Take a look at this snippets to encode non ascii filenames <a href="http://www.djangosnippets.org/snippets/1710/" rel="nofollow">http://www.djangosnippets.org/snippets/1710/</a></p> http://stackoverflow.com/questions/1339409/how-to-add-bi-directional-manytomanyfields-in-django-admin/1340600#1340600 1 Answer by Pierre-Jean Coudert for How to add bi-directional manytomanyfields in django admin? Pierre-Jean Coudert 2009-08-27T11:55:09Z 2009-08-27T12:11:12Z <p>I think yon can combine this sample code (<a href="http://code.djangoproject.com/ticket/897" rel="nofollow">source</a>) wich breaks sync_db</p> <pre><code>class ItemType(meta.Model): name = meta.CharField(maxlength=100) description = meta.CharField(maxlength=250) properties = meta.ManyToManyField('PropertyType', db_table='app_propertytype_itemtypes') class PropertyType(meta.Model): name = meta.CharField(maxlength=100) itemtypes = meta.ManyToManyField(ItemType) </code></pre> <p>with <a href="http://www.djangosnippets.org/snippets/1295/" rel="nofollow">this snippet</a></p> <pre><code>class ManyToManyField_NoSyncdb(models.ManyToManyField): def __init__(self, *args, **kwargs): super(ManyToManyField_NoSyncdb, self).__init__(*args, **kwargs) self.creates_table = False </code></pre> <p>to obtain something like</p> <pre><code>class ItemType(meta.Model): name = meta.CharField(maxlength=100) description = meta.CharField(maxlength=250) properties = meta.ManyToManyField_NoSyncdb('PropertyType', db_table='app_propertytype_itemtypes') class PropertyType(meta.Model): name = meta.CharField(maxlength=100) itemtypes = meta.ManyToManyField(ItemType) </code></pre> <p><strong>Disclaimer</strong> : this is just a rough idea</p> <p>Edit: There is probably someting to do with <a href="http://docs.djangoproject.com/en/dev/topics/db/models/#proxy-models" rel="nofollow">Django's 1.1 Proxy Models</a></p> http://stackoverflow.com/questions/1333179/python-critique/1333222#1333222 7 Answer by Pierre-Jean Coudert for Python Critique Pierre-Jean Coudert 2009-08-26T08:37:57Z 2009-08-26T08:37:57Z <p>Actually one main issue with CPython implementation is the <strong>GIL</strong> (Global Interpreter Lock) wich avoid any concurrent multi-threading on a multi-core processor.</p> <p>This is to be changed thanks to the <a href="http://code.google.com/p/unladen-swallow/" rel="nofollow">unladen-swallow</a> project: an optimization branch of CPython, intended to be fully compatible and significantly faster. </p> http://stackoverflow.com/questions/1332853/how-to-remotely-restart-a-service-on-a-password-protected-machine-using-python/1332896#1332896 3 Answer by Pierre-Jean Coudert for How to remotely restart a service on a password protected machine using Python? Pierre-Jean Coudert 2009-08-26T07:19:02Z 2009-08-26T07:25:16Z <p>Take a look at <a href="http://www.nongnu.org/fab/" rel="nofollow">Fabric</a> wich is based on <a href="http://www.lag.net/paramiko/" rel="nofollow">paramiko</a>. This is really a good tool to automate remote tasks with python.</p> <p><a href="http://docs.fabfile.org/0.9/" rel="nofollow">Fabric Documentation</a> will show you how easy it is to use.</p> http://stackoverflow.com/questions/1313989/how-django-projects-can-be-deployed-with-minimal-installation-works/1315907#1315907 2 Answer by Pierre-Jean Coudert for How django projects can be deployed with minimal installation works? Pierre-Jean Coudert 2009-08-22T12:46:14Z 2009-08-22T13:00:41Z <p>To enable easy Django deployement I would to the following:</p> <p><strong>Fisrt-time server configuration</strong></p> <ul> <li>Install <a href="http://code.google.com/p/modwsgi/" rel="nofollow">mod_wsgi</a> which allow you to run in <em>embedded</em> mode OR in <strong>daemon</strong> mode.</li> <li>Install python and <a href="http://pypi.python.org/pypi/virtualenv" rel="nofollow">virtualenv</a></li> </ul> <p><strong>In your development environment</strong></p> <ul> <li>Use virtualenv. Take a look at <a href="http://code.google.com/p/modwsgi/wiki/VirtualEnvironments" rel="nofollow">mod_wsgi and virtualenv configuration</a></li> <li>Install Django your django version (using python setup.py install)</li> <li>Install your python libs</li> <li>Develop your project</li> </ul> <p><strong>Every time you want to deploy</strong></p> <ul> <li>Copy your virtual environment to the production server</li> <li>Just add an Include directive in your httpd.conf file (or use .htaccess) to your project's apache configuration. As stated in <a href="http://code.google.com/p/modwsgi/wiki/IntegrationWithDjango" rel="nofollow">mod_wsgi integration with django</a> documentation, one example of how Apache included file could be configured would be:</li> </ul> <p><code></p> <pre><code>Alias /media/ /usr/local/django/mysite/media/ &lt;Directory /usr/local/django/mysite/media&gt; Order deny,allow Allow from all &lt;/Directory&gt; WSGIScriptAlias / /usr/local/django/mysite/apache/django.wsgi &lt;Directory /usr/local/django/mysite/apache&gt; Order deny,allow Allow from all &lt;/Directory&gt; </code></pre> <p></code></p> <p><strong>Automating deployement</strong></p> <ul> <li>I would consider using <a href="http://www.nongnu.org/fab/" rel="nofollow">Fabric</a> to automate deployement</li> </ul> http://stackoverflow.com/questions/1278042/in-django-is-there-an-easy-way-to-render-a-text-field-as-a-template-in-a-templa 0 In Django, is there an easy way to render a text field as a template, in a template ? Pierre-Jean Coudert 2009-08-14T14:04:11Z 2009-08-18T20:06:59Z <p>Can you think of an easy way to evaluate a text field as a template during the template rendering.</p> <p>I know how to do it in a view but I'm looking for a template Filter or a Tag ?</p> <p>Something like:</p> <p><code>{{ object.textfield|evaluate}}</code> or <code>{% evaluate object.textfield %}</code></p> <p>with object.textfield containing something like:</p> <p><code>a text with a {% TemplateTag %}.</code></p> <p>In which <code>TemplateTag</code> will be evaluated, thanks to the <code>evaluate</code> filter.</p> http://stackoverflow.com/questions/1292189/how-does-python-for-loop-work/1292215#1292215 4 Answer by Pierre-Jean Coudert for How does python for loop work? Pierre-Jean Coudert 2009-08-18T06:54:10Z 2009-08-18T06:54:10Z <p><strong>party</strong> simply iterates over the list <strong>feed.entry</strong></p> <p>Take a look at <a href="http://diveintopython-cached.muellerware.org/file%5Fhandling/for%5Floops.html" rel="nofollow">Dive into Python</a> explainations.</p> http://stackoverflow.com/questions/1284923/django-calendar/1285425#1285425 2 Answer by Pierre-Jean Coudert for Django, calendar Pierre-Jean Coudert 2009-08-16T21:50:02Z 2009-08-16T21:50:02Z <p>Did you take a look at <a href="http://thauber.com/blog/post/django-schedule/" rel="nofollow">Django Schedule</a> and <a href="http://code.google.com/p/django-swingtime/" rel="nofollow">Django SwingTime</a> ?</p> http://stackoverflow.com/questions/1269280/django-template-get-variables-in-a-tag-block/1278542#1278542 0 Answer by Pierre-Jean Coudert for Django-Template : Get Variables in a Tag block ! Pierre-Jean Coudert 2009-08-14T15:29:06Z 2009-08-14T15:29:06Z <p>To evaluate correctly the <strong>num</strong> variable I think you should modify your <strong>LatestPhotoNode</strong> class like this:</p> <pre><code>class LatestPhotoNode(Node): def __init__(self, num): self.num = template.Variable(num) def render(self, context): num = self.variable.resolve(self.num) photo = Photo.objects.filter(akar=num)[:1] context['recent_photos'] = photo return '' </code></pre> http://stackoverflow.com/questions/1278042/in-django-is-there-an-easy-way-to-render-a-text-field-as-a-template-in-a-templa/1278507#1278507 0 Answer by Pierre-Jean Coudert for In Django, is there an easy way to render a text field as a template, in a template ? Pierre-Jean Coudert 2009-08-14T15:24:25Z 2009-08-14T15:24:25Z <p>Here is a first Tag implementation to solve my question:</p> <pre><code>from django import template register = template.Library() @register.tag(name="evaluate") def do_evaluate(parser, token): """ tag usage {% evaluate object.textfield %} """ try: tag_name, variable = token.split_contents() except ValueError: raise template.TemplateSyntaxError, "%r tag requires a single argument" % token.contents.split()[0] return EvaluateNode(variable) class EvaluateNode(template.Node): def __init__(self, variable): self.variable = template.Variable(variable) def render(self, context): try: content = self.variable.resolve(context) t = template.Template(content) return t.render(context) except template.VariableDoesNotExist, template.TemplateSyntaxError: return 'Error rendering', self.variable </code></pre> http://stackoverflow.com/questions/63957/what-is-the-best-set-of-tools-to-develop-win32-delphi-applications/1164706#1164706 0 Answer by Pierre-Jean Coudert for What is the best set of tools to develop Win32 Delphi applications? Pierre-Jean Coudert 2009-07-22T11:43:30Z 2009-07-22T12:44:13Z <p>Concerning Unit Testing, there is now a <a href="http://members.optusnet.com.au/~mcnabp/" rel="nofollow">DUnit2 project</a>. </p> <p>It supports Delphi 2009 and brings some <a href="http://members.optusnet.com.au/~mcnabp/Projects/DUnit2/DUnit2Description.html" rel="nofollow">improvements over DUnit</a>.</p> <p><strong>Edit</strong></p> <p>Just found another project, <a href="http://code.google.com/p/dunitlite/" rel="nofollow">DUnitLite</a> with extended syntax over DUnit.</p> http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/91037#91037 382 Answer by Pierre-Jean Coudert for What's your favorite "programmer" cartoon? Pierre-Jean Coudert 2008-09-18T08:53:30Z 2009-06-19T03:57:41Z <p><a href="http://dilbert.com/strips/comic/2007-02-02/" rel="nofollow" title="Dilbert.com"><img src="http://dilbert.com/dyn/str_strip/000000000/00000000/0000000/000000/00000/1000/400/1494/1494.strip.gif"/></a></p> http://stackoverflow.com/questions/431167/what-are-your-favorite-general-purpose-django-apps/811144#811144 11 Answer by Pierre-Jean Coudert for What are your favorite general purpose Django apps? Pierre-Jean Coudert 2009-05-01T12:18:56Z 2009-05-01T12:18:56Z <p><a href="http://south.aeracode.org/" rel="nofollow">South</a> for intelligent schema migrations.</p> http://stackoverflow.com/questions/682451/how-to-reduce-cpu-usage-when-moving-a-component-in-a-onmousemove-event-in-delphi/684957#684957 3 Answer by Pierre-Jean Coudert for How to reduce CPU usage when moving a component in a OnMouseMove event in Delphi 7 ? Pierre-Jean Coudert 2009-03-26T08:39:12Z 2009-03-26T10:44:19Z <p>Finally I've change my code for this one:</p> <pre><code>procedure MyComponent.MouseMove(Sender: TObject;Shift: TShiftState; X, Y: Integer); begin if GetTickCount-LastMoveTick&gt;50 then begin AnotherComponent.Top := Y; AnotherComponent.Left := X; LastMoveTick := GetTickCount; end; end; </code></pre> <p>Really easy to implement (2 lines added), no timer, works well for me...</p> http://stackoverflow.com/questions/682451/how-to-reduce-cpu-usage-when-moving-a-component-in-a-onmousemove-event-in-delphi 4 How to reduce CPU usage when moving a component in a OnMouseMove event in Delphi 7 ? Pierre-Jean Coudert 2009-03-25T16:51:17Z 2009-03-26T10:44:19Z <p>In a Delphi 7 application, I want to move a component accordingly to the mouse. Im doing something like that:</p> <pre><code>procedure MyComponent.MouseMove(Sender: TObject;Shift: TShiftState; X, Y: Integer); begin AnotherComponent.Top := X; AnotherComponent.Left := Y; end; </code></pre> <p>When I move the mouse the CPU usage for the main core goes up to 100% on a recent PC.</p> <p>Any idea or tick to reduce the CPU usage in this case ?</p> http://stackoverflow.com/questions/500822/how-to-deploy-django-with-spawning/505127#505127 3 Answer by Pierre-Jean Coudert for How to deploy Django with Spawning Pierre-Jean Coudert 2009-02-02T21:53:51Z 2009-02-02T21:53:51Z <p>cd to your django's settings.py directory.</p> <p>Here is the command line to serve your django application</p> <pre><code>spawn --factory=spawning.django_factory.config_factory settings --port 80 </code></pre> http://stackoverflow.com/questions/487090/svn-for-delphi-developers/487518#487518 0 Answer by Pierre-Jean Coudert for SVN for Delphi Developers Pierre-Jean Coudert 2009-01-28T12:54:51Z 2009-01-28T12:54:51Z <p>I usually use this little python script before updating from SVN, in order to clean my source tree.</p> <p>I store the <code>.dof</code> files in SVN so I need to commit manually any <code>.dof</code> change before cleaning the source tree.</p> <pre><code>import os import sys exts = ['.~pas', '.~dpk', '.~bpl','.dcu', '.~dcu', '.dcp', '.~dcp', '.dof', '.cfg', '.res', '.~res'] def mydir(): if __name__ == '__main__': filename = sys.argv[0] else: filename = __file__ return os.path.abspath(os.path.dirname(filename)) def clean_dir(arg, dirname, names): for name in names: if os.path.splitext(name)[1].lower() in exts: file2delete = os.path.join(dirname,name) print os.path.join(file2delete) os.remove(file2delete) if __name__=="__main__": print "Cleaning Tree" os.path.walk(mydir(), clean_dir, "a") </code></pre> http://stackoverflow.com/questions/313870/what-is-your-favorite-delphi-open-source-functional-testing-tool 4 What is your favorite Delphi open source functional testing tool? Pierre-Jean Coudert 2008-11-24T10:53:55Z 2008-11-25T11:33:01Z <p>I'm aware of <a href="http://selenium.openqa.org/" rel="nofollow">Selenium</a> wich is a very good open source automated website testing.</p> <p>Is there any equivalent open source tool to provide functional testing for Win32 GUI Delphi Applications ?</p> <p>After a quick google I've found this one : <a href="http://code.google.com/p/eft/" rel="nofollow">EFT</a></p> <p>So my question is what is your favourite functional testing tool and why?</p> http://stackoverflow.com/questions/293755/what-is-your-favorite-delphi-mocking-library 16 What is your favorite Delphi mocking library? Pierre-Jean Coudert 2008-11-16T10:20:45Z 2008-11-16T20:51:27Z <p>I want to start using mock objects on my Delphi projects.</p> <p>After a quick google I've found those:</p> <ul> <li><a href="http://code.google.com/p/delphi-mock-wizard/" rel="nofollow">Delphi Mock Wizard</a> </li> <li><a href="http://sourceforge.net/projects/pascalmock/" rel="nofollow">PascalMock</a></li> </ul> <p>So my question is what one is your favourite and why?</p> http://stackoverflow.com/questions/138521/is-it-feasible-to-compile-python-to-machine-code/138548#138548 1 Answer by Pierre-Jean Coudert for Is it feasible to compile Python to machine code? Pierre-Jean Coudert 2008-09-26T09:59:12Z 2008-09-26T09:59:12Z <p><a href="http://psyco.sourceforge.net/" rel="nofollow">Psyco</a> is a kind of just-in-time (JIT) compiler: dynamic compiler for Python, runs code 2-100 times faster, but it needs much memory.</p> <p>In short: it run your existing Python software much faster, with no change in your source but it doesn't compile to object code the same way a C compiler would.</p> http://stackoverflow.com/questions/120584/svg-rendering-in-a-pygame-application/121653#121653 2 Answer by Pierre-Jean Coudert for SVG rendering in a PyGame application Pierre-Jean Coudert 2008-09-23T15:17:06Z 2008-09-23T15:17:06Z <p>Cairo cannot render SVG out of the box. It seems we have to use librsvg.</p> <p>Just found those two pages:</p> <ul> <li><a href="http://www.cairographics.org/cookbook/librsvgpython/" rel="nofollow">Rendering SVG with libRSVG,Python and c-types</a> </li> <li><a href="http://www.cairographics.org/pyrsvg/" rel="nofollow">How to use librsvg from Python</a></li> </ul> <p>Something like this should probably work (render <strong>test.svg</strong> to <strong>test.png</strong>):</p> <pre><code>import cairo import rsvg WIDTH, HEIGHT = 256, 256 surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, WIDTH, HEIGHT) ctx = cairo.Context (surface) svg = rsvg.Handle(file="test.svg") svg.render_cairo(ctx) surface.write_to_png("test.png") </code></pre> http://stackoverflow.com/questions/101268/hidden-features-of-python/102065#102065 61 Answer by Pierre-Jean Coudert for Hidden features of Python Pierre-Jean Coudert 2008-09-19T14:04:50Z 2008-09-19T14:10:16Z <p><a href="http://docs.python.org/lib/module-doctest.html" rel="nofollow">Doctest</a>: documentation and unit-testing at the same time. </p> <p>Example extracted fom python documentation:</p> <pre><code>def factorial(n): """Return the factorial of n, an exact integer &gt;= 0. If the result is small enough to fit in an int, return an int. Else return a long. &gt;&gt;&gt; [factorial(n) for n in range(6)] [1, 1, 2, 6, 24, 120] &gt;&gt;&gt; factorial(-1) Traceback (most recent call last): ... ValueError: n must be &gt;= 0 Factorials of floats are OK, but the float must be an exact integer: """ import math if not n &gt;= 0: raise ValueError("n must be &gt;= 0") if math.floor(n) != n: raise ValueError("n must be exact integer") if n+1 == n: # catch a value like 1e300 raise OverflowError("n too large") result = 1 factor = 2 while factor &lt;= n: result *= factor factor += 1 return result def _test(): import doctest doctest.testmod() if __name__ == "__main__": _test() </code></pre> http://stackoverflow.com/questions/100298/code-analysis-in-python/100687#100687 2 Answer by Pierre-Jean Coudert for Code Analysis In Python Pierre-Jean Coudert 2008-09-19T09:19:57Z 2008-09-19T09:19:57Z <p>Thanks to <a href="http://pydev.sourceforge.net/" rel="nofollow">Pydev</a>, you can <a href="http://pydev.sourceforge.net/pylint.html" rel="nofollow">integrate pylint</a> in the <a href="http://www.eclipse.org/" rel="nofollow">Eclipse IDE</a> really easily and get a code report each time you save a modified file.</p> http://stackoverflow.com/questions/91666/ni-cvi-with-python/91735#91735 0 Answer by Pierre-Jean Coudert for NI CVI with Python Pierre-Jean Coudert 2008-09-18T11:22:06Z 2008-09-18T11:22:06Z <p>Here is a <a href="http://decibel.ni.com/content/docs/DOC-1494" rel="nofollow">python sample code calling a CVI</a>.</p> <p>There are <a href="http://www.scipy.org/Cookbook/Data_Acquisition_with_PyUL" rel="nofollow">DaqMx python bindings</a> too.</p> http://stackoverflow.com/questions/91257/scrum-burndown-issues/91290#91290 0 Answer by Pierre-Jean Coudert for Scrum Burndown issues Pierre-Jean Coudert 2008-09-18T09:49:23Z 2008-09-18T09:49:23Z <p>You can integrate the new work at the sprint's start date, to have a great looking Burndown chart.</p> <p>You can tag with a specific marker the additional work and evaluate at the sprint's end why you haven't be able to identify those tasks before.</p> http://stackoverflow.com/questions/1333179/python-critique/1333222#1333222 Comment by Pierre-Jean Coudert on Python Critique Pierre-Jean Coudert 2009-08-26T08:55:06Z 2009-08-26T08:55:06Z @djc I understand your point of view but usually have to be aware of real implementation gotchas when you choose a language. I alway try to keep in mind the Joel's Law of Leaky Abstractions ( <a href="http://www.joelonsoftware.com/articles/LeakyAbstractions.html" rel="nofollow">joelonsoftware.com/articles/LeakyAbstractions.html/&hellip;</a> ). http://stackoverflow.com/questions/1292189/how-does-python-for-loop-work/1292215#1292215 Comment by Pierre-Jean Coudert on How does python for loop work? Pierre-Jean Coudert 2009-08-18T13:54:20Z 2009-08-18T13:54:20Z Yes indeed. But it seemed to be a beginner question. I wanted to keep the response simple. http://stackoverflow.com/questions/1286176/where-can-i-get-technical-information-on-how-the-internals-of-django-works/1287116#1287116 Comment by Pierre-Jean Coudert on Where can i get technical information on how the internals of Django works? Pierre-Jean Coudert 2009-08-17T10:22:15Z 2009-08-17T10:22:15Z Yes, this is a must read ! http://stackoverflow.com/questions/1278042/in-django-is-there-an-easy-way-to-render-a-text-field-as-a-template-in-a-templa/1278528#1278528 Comment by Pierre-Jean Coudert on In Django, is there an easy way to render a text field as a template, in a template ? Pierre-Jean Coudert 2009-08-14T15:30:55Z 2009-08-14T15:30:55Z Thanks for your response ! Sorry for responding quicker ;-) http://stackoverflow.com/questions/791070/what-tools-to-automatically-inline-css-style-to-create-email-html-code/791212#791212 Comment by Pierre-Jean Coudert on What tools to automatically inline CSS style to create email HTML code ? Pierre-Jean Coudert 2009-04-26T20:04:05Z 2009-04-26T20:04:05Z Thanks for this link ! It seems to be exactly what I was looking for. http://stackoverflow.com/questions/791070/what-tools-to-automatically-inline-css-style-to-create-email-html-code/791089#791089 Comment by Pierre-Jean Coudert on What tools to automatically inline CSS style to create email HTML code ? Pierre-Jean Coudert 2009-04-26T16:59:40Z 2009-04-26T16:59:40Z Copy &amp; Paste: that is exactly what I want to avoid... I'm looking for an automated solution. http://stackoverflow.com/questions/130061/book-and-tutorial-recommedations-for-django-1-0/329097#329097 Comment by Pierre-Jean Coudert on Book and tutorial recommedations for Django 1.0 Pierre-Jean Coudert 2009-03-27T08:59:41Z 2009-03-27T08:59:41Z Really good Django in-depth coverage. http://stackoverflow.com/questions/682451/how-to-reduce-cpu-usage-when-moving-a-component-in-a-onmousemove-event-in-delphi/684957#684957 Comment by Pierre-Jean Coudert on How to reduce CPU usage when moving a component in a OnMouseMove event in Delphi 7 ? Pierre-Jean Coudert 2009-03-26T10:44:33Z 2009-03-26T10:44:33Z Corrected. thanks ! http://stackoverflow.com/questions/128498/what-are-the-best-code-refactoring-strategies Comment by Pierre-Jean Coudert on What are the best code refactoring strategies ? Pierre-Jean Coudert 2008-09-24T19:24:58Z 2008-09-24T19:24:58Z @AviD yes, it would be great to collect refactoring best practices here. http://stackoverflow.com/questions/91526/best-programming-jokes/91556#91556 Comment by Pierre-Jean Coudert on Best Programming Jokes Pierre-Jean Coudert 2008-09-18T10:59:38Z 2008-09-18T10:59:38Z 1+ DEAD == DEAE ;-) http://stackoverflow.com/questions/84798/whats-the-best-logging-package-for-delphi Comment by Pierre-Jean Coudert on What's the Best Logging Package for Delphi? Pierre-Jean Coudert 2008-09-17T16:14:13Z 2008-09-17T16:14:13Z Please take a look at previous questions before asking. http://stackoverflow.com/questions/81144/trac-in-a-scrum-team-what-are-the-best-plugins-hacks/81208#81208 Comment by Pierre-Jean Coudert on Trac in a Scrum team : What are the best plugins / hacks ? Pierre-Jean Coudert 2008-09-17T09:56:35Z 2008-09-17T09:56:35Z How does it modify the Trac's Milestone concept ? http://stackoverflow.com/questions/71766/class-static-constants-in-delphi/72047#72047 Comment by Pierre-Jean Coudert on Class/Static Constants in Delphi Pierre-Jean Coudert 2008-09-16T14:05:55Z 2008-09-16T14:05:55Z If you need a private field, you'll need the SetLogger procedure. I agree with the finalization procedure comment.