User Henrik Gustafsson - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T19:17:27Z http://stackoverflow.com/feeds/user/2010 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/36870#36870 6 Answer by Henrik Gustafsson for Should a function have only one return statement ? Henrik Gustafsson 2008-08-31T14:13:10Z 2009-11-16T11:54:40Z <p>There are good things to say about having a single exit-point, just as there are bad things to say about the inevitable <a href="http://c2.com/cgi/wiki?ArrowAntiPattern" rel="nofollow">"arrow"</a> programming that results.</p> <p>If using multiple exit points during input validation or resource allocation, I try to put all the 'error-exits' very visibly at the top of the function.</p> <p>Both the <a href="http://ssdl-wiki.cs.technion.ac.il/wiki/index.php/Spartan%5Fprogramming" rel="nofollow">Spartan Programming</a> article of the "SSDSLPedia" and <a href="http://c2.com/cgi/wiki?SingleFunctionExitPoint" rel="nofollow">the single function exit point</a> article of the "Portland Pattern Repository's Wiki" have some insightful arguments around this. Also, of course, there is <a href="#36711" rel="nofollow">this post</a> to consider.</p> <p>If you really want a single exit-point (in any non-exception-enabled language) for example in order to release resources in one single place, I find the careful application of goto to be good; see for example this rather contrived example (compressed to save screen real-estate):</p> <pre><code>int f(int y) { int value = -1; void *data = NULL; if (y &lt; 0) goto clean; if ((data = malloc(123)) == NULL) goto clean; /* More code */ value = 1; clean: free(data); return value; } </code></pre> <p>Personally I, in general, dislike arrow programming more than I dislike multiple exit-points, although both are useful when applied correctly. The best, of course, is to structure your program to require neither. Breaking down your function into multiple chunks usually help :)</p> <p>Although when doing so, I find I end up with multiple exit points anyway as in this example, where some larger function has been broken down into several smaller functions:</p> <pre><code>int g(int y) { value = 0; if ((value = g0(y, value)) == -1) return -1; if ((value = g1(y, value)) == -1) return -1; return g2(y, value); } </code></pre> <p>Depending on the project or coding guidelines, most of the boiler-plate code could be replaced by macros. As a side note, breaking it down this way makes the functions g0, g1 ,g2 very easy to test individually.</p> <p>Obviously, in an OO and exception-enabled language, I wouldn't use if-statements like that (or at all, if I could get away with it with little enough effort), and the code would be much more plain. And non-arrowy. And most of the non-final returns would probably be exceptions.</p> <p>In short;</p> <ul> <li>Few returns are better than many returns</li> <li>More than one return is better than huge arrows, and <a href="http://www.refactoring.com/catalog/replaceNestedConditionalWithGuardClauses.html" rel="nofollow">guard clauses</a> are generally ok.</li> <li>Exceptions could/should probably replace most 'guard clauses' when possible.</li> </ul> http://stackoverflow.com/questions/423943/postgresql-replication-strategies/425603#425603 3 Answer by Henrik Gustafsson for PostgreSQL replication strategies Henrik Gustafsson 2009-01-08T19:45:19Z 2009-11-12T09:22:51Z <p>If you haven't already, I'd suggest a look at the <a href="http://www.postgresql.org/docs/8.4/static/high-availability.html" rel="nofollow">High Availability, Load Balancing, and Replication</a> chapter of the PostgreSQL manual. It gives a clear overview of the available techiques and their features.</p> http://stackoverflow.com/questions/549451/line-breaking-widget-layout-for-android 2 Line-breaking widget layout for Android Henrik Gustafsson 2009-02-14T17:56:13Z 2009-10-20T18:37:29Z <p>I'm trying to create an activity that presents some data to the user. The data is such that it can be divided into 'words', each being a widget, and sequence of 'words' would form the data ('sentence'?), the ViewGroup widget containing the words. As space required for all 'words' in a 'sentence' would exceed the available horizontal space on the display, I would like to wrap these 'sentences' as you would a normal piece of text.</p> <p>The following code:</p> <pre><code>public class WrapTest extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); LinearLayout l = new LinearLayout(this); LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams( LinearLayout.LayoutParams.FILL_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT); LinearLayout.LayoutParams mlp = new LinearLayout.LayoutParams( new ViewGroup.MarginLayoutParams( LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT)); mlp.setMargins(0, 0, 2, 0); for (int i = 0; i &lt; 10; i++) { TextView t = new TextView(this); t.setText("Hello"); t.setBackgroundColor(Color.RED); t.setSingleLine(true); l.addView(t, mlp); } setContentView(l, lp); } } </code></pre> <p>yields something like the left picture, but I would want a layout presenting the same widgets like in the right one.</p> <p><img src="http://fnord.se/android/01-have.png" alt="non-wrapping" /> <img src="http://fnord.se/android/01-want.png" alt="wrapping" /></p> <p>Is there such a layout or combination of layouts and parameters, or do I have to implement my own ViewGroup for this?</p> http://stackoverflow.com/questions/549451/line-breaking-widget-layout-for-android/560958#560958 3 Answer by Henrik Gustafsson for Line-breaking widget layout for Android Henrik Gustafsson 2009-02-18T12:59:38Z 2009-10-20T18:37:29Z <p>I made my own layout that does what I want, but it is quite limited at the moment. I'll have to add the xml-support stuff later, but this should be enough as a proof of concept. Comments and improvement suggestions are of course welcome</p> <p>The activity:</p> <pre><code>package se.fnord.xmms2.predicate; import se.fnord.android.layout.PredicateLayout; import android.app.Activity; import android.graphics.Color; import android.os.Bundle; import android.widget.TextView; public class Predicate extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); PredicateLayout l = new PredicateLayout(this); for (int i = 0; i &lt; 10; i++) { TextView t = new TextView(this); t.setText("Hello"); t.setBackgroundColor(Color.RED); t.setSingleLine(true); l.addView(t, new PredicateLayout.LayoutParams(2, 0)); } setContentView(l); } } </code></pre> <p>Or in an XML layout:</p> <pre><code>&lt;se.fnord.android.layout.PredicateLayout android:id="@+id/predicate_layout" android:layout_width="fill_parent" android:layout_height="wrap_content" /&gt; </code></pre> <p>And the Layout:</p> <pre><code>package se.fnord.android.layout; import android.content.Context; import android.util.AttributeSet; import android.view.View; import android.view.ViewGroup; /** * ViewGroup that arranges child views in a similar way to text, with them laid * out one line at a time and "wrapping" to the next line as needed. * * Code licensed under CC-by-SA * * @author Henrik Gustafsson * @see http://stackoverflow.com/questions/549451/line-breaking-widget-layout-for-android * @license http://creativecommons.org/licenses/by-sa/2.5/ * */ public class PredicateLayout extends ViewGroup { private int line_height; public static class LayoutParams extends ViewGroup.LayoutParams { public final int horizontal_spacing; public final int vertical_spacing; /** * @param horizontal_spacing Pixels between items, horizontally * @param vertical_spacing Pixels between items, vertically */ public LayoutParams(int horizontal_spacing, int vertical_spacing) { super(0, 0); this.horizontal_spacing = horizontal_spacing; this.vertical_spacing = vertical_spacing; } } public PredicateLayout(Context context) { super(context); } public PredicateLayout(Context context, AttributeSet attrs){ super(context, attrs); } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { assert(MeasureSpec.getMode(widthMeasureSpec) != MeasureSpec.UNSPECIFIED); final int width = MeasureSpec.getSize(widthMeasureSpec) - getPaddingLeft() - getPaddingRight(); int height = MeasureSpec.getSize(heightMeasureSpec) - getPaddingTop() - getPaddingBottom(); final int count = getChildCount(); int line_height = 0; int xpos = getPaddingLeft(); int ypos = getPaddingTop(); for (int i = 0; i &lt; count; i++) { final View child = getChildAt(i); if (child.getVisibility() != GONE) { final LayoutParams lp = (LayoutParams) child.getLayoutParams(); child.measure( MeasureSpec.makeMeasureSpec(width, MeasureSpec.AT_MOST), MeasureSpec.makeMeasureSpec(height, MeasureSpec.AT_MOST)); final int childw = child.getMeasuredWidth(); line_height = Math.max(line_height, child.getMeasuredHeight() + lp.vertical_spacing); if (xpos + childw &gt; width) { xpos = getPaddingLeft(); ypos += line_height; } xpos += childw + lp.horizontal_spacing; } } this.line_height = line_height; if (MeasureSpec.getMode(heightMeasureSpec) == MeasureSpec.UNSPECIFIED){ height = ypos + line_height; } setMeasuredDimension(width, height); } @Override protected ViewGroup.LayoutParams generateDefaultLayoutParams() { return new LayoutParams(1, 1); // default of 1px spacing } @Override protected boolean checkLayoutParams(ViewGroup.LayoutParams p) { if (p instanceof LayoutParams) return true; return false; } @Override protected void onLayout(boolean changed, int l, int t, int r, int b) { final int count = getChildCount(); final int width = r - l; int xpos = getPaddingLeft(); int ypos = getPaddingTop(); for (int i = 0; i &lt; count; i++) { final View child = getChildAt(i); if (child.getVisibility() != GONE) { final int childw = child.getMeasuredWidth(); final int childh = child.getMeasuredHeight(); final LayoutParams lp = (LayoutParams) child.getLayoutParams(); if (xpos + childw &gt; width) { xpos = getPaddingLeft(); ypos += line_height; } child.layout(xpos, ypos, xpos + childw, ypos + childh); xpos += childw + lp.horizontal_spacing; } } } } </code></pre> <p>With the result:</p> <p><img src="http://fnord.se/android/01-have2.png" alt="Wrapped widgets" /></p> http://stackoverflow.com/questions/654275/favorite-online-lectures-and-presentations/655203#655203 16 Answer by Henrik Gustafsson for Favorite online lectures and presentations Henrik Gustafsson 2009-03-17T17:15:13Z 2009-10-16T13:31:36Z <p>Sometimes when I get an episode of OCD I arrange videos I like into YouTube playlists. These might be interesting:</p> <ul> <li><a href="http://www.youtube.com/view%5Fplay%5Flist?p=BDAB2BA83BB6588E" rel="nofollow">Clean Code Talks</a><br /> Miško Hevery's series of talks on code quality and testing. Great stuff.</li> <li><a href="http://www.youtube.com/view%5Fplay%5Flist?p=AFFC9CBB57988795" rel="nofollow">"Good Stuff"</a><br /> Talks that didn't fit any other category. Watch <a href="http://www.youtube.com/watch?v=aMnn0Jq0J-E&amp;feature=PlayList&amp;p=AFFC9CBB57988795&amp;index=8" rel="nofollow">Three Beautiful Quicksorts</a>, <a href="http://www.youtube.com/watch?v=xXhnJl4AVg0&amp;feature=PlayList&amp;p=AFFC9CBB57988795&amp;index=7" rel="nofollow">Byzantine Agreement</a> and <a href="http://www.youtube.com/watch?v=Iy8R5TZNV1A&amp;feature=PlayList&amp;p=AFFC9CBB57988795&amp;index=20" rel="nofollow">The Paradox of Choice</a> (the latter not strictly programming related)</li> <li><a href="http://www.youtube.com/view%5Fplay%5Flist?p=95E61100DF25B81C" rel="nofollow">Advanced Topics in Programming Languages</a><br /> The Google Tech Talk series with the same name. I especially found <a href="http://www.youtube.com/watch?v=k5FltpgKcVk&amp;feature=PlayList&amp;p=95E61100DF25B81C&amp;index=5" rel="nofollow">A Lock-Free concurrent Hash Table</a>, <a href="http://www.youtube.com/watch?v=1FX4zco0ziY&amp;feature=PlayList&amp;p=95E61100DF25B81C&amp;index=6" rel="nofollow">The Java Memory Model</a>, <a href="http://www.youtube.com/watch?v=HmxnCEa8Ctw&amp;feature=PlayList&amp;p=95E61100DF25B81C&amp;index=11" rel="nofollow">Concurrency and Message Passing in Newsqueak</a> and <a href="http://www.youtube.com/watch?v=wDN%5FEYUvUq0&amp;feature=PlayList&amp;p=95E61100DF25B81C&amp;index=1" rel="nofollow">Java Puzzlers</a> enlightening.</li> <li><a href="http://www.youtube.com/view%5Fplay%5Flist?p=198B3FBEEF267B51" rel="nofollow">UI design etc</a><br /> At least check out <a href="http://www.youtube.com/watch?v=EuELwq2ThJE&amp;feature=PlayList&amp;p=198B3FBEEF267B51&amp;index=0" rel="nofollow">Don't Make Me Click</a></li> <li><a href="http://www.youtube.com/view%5Fplay%5Flist?p=613C7432FD8A1B6F" rel="nofollow">Eclipse development</a></li> <li><a href="http://www.youtube.com/view%5Fplay%5Flist?p=D3D512EB7EC14A4F" rel="nofollow">Agile etc</a><br /> Don't miss Mary Poppendiecks <a href="http://www.youtube.com/watch?v=ypEMdjslEOI&amp;feature=PlayList&amp;p=D3D512EB7EC14A4F&amp;index=4" rel="nofollow">The role of leadership in software development</a></li> <li><a href="http://www.youtube.com/view%5Fplay%5Flist?p=4E81859265562302" rel="nofollow">Google Test Automation Conference 2008</a> </li> </ul> <p>I wouldn't do a very good job answering if I didn't point you to <a href="http://www.infoq.com/" rel="nofollow">InfoQ</a>. There are some great videos there. Also see these related (bordering on duplicate) SO questions:</p> <ul> <li><a href="http://stackoverflow.com/questions/34662/must-see-tech-talks-presentations">Must-see tech talks/presentations?</a></li> <li><a href="http://stackoverflow.com/questions/93915/conferences-that-offer-videos-for-downloading">Conferences that offer videos for downloading?</a></li> <li><a href="http://stackoverflow.com/questions/282534/what-are-great-programming-related-online-talks-videos">What are great programming-related online talks / videos?</a></li> <li><a href="http://stackoverflow.com/questions/671516/java-ee-video-lectures">Java EE video lectures</a></li> <li><a href="http://stackoverflow.com/questions/581381/videos-about-c-programming">Videos about c++ programming?</a></li> <li><a href="http://stackoverflow.com/questions/119238/what-are-your-favorite-cs-video-lectures">What are your favorite CS video lectures?</a></li> <li><a href="http://stackoverflow.com/questions/236107/what-online-video-based-courses-are-out-there">What online, video-based courses are out there?</a></li> <li><a href="http://stackoverflow.com/questions/548560/are-there-any-online-videos-lectures-about-computer-organization-and-architecture">Are there any online videos lectures about "computer organization and architecture"?</a></li> <li><a href="http://stackoverflow.com/questions/100772/c-training-videos">C# Training videos</a></li> <li><a href="http://stackoverflow.com/questions/1215863/what-is-your-favorite-open-courseware-class">What is your favorite Open Courseware Class?</a></li> </ul> http://stackoverflow.com/questions/1576737/releasing-python-gil-in-c-code/1577009#1577009 1 Answer by Henrik Gustafsson for Releasing python GIL in C++ code Henrik Gustafsson 2009-10-16T09:12:03Z 2009-10-16T13:29:22Z <p>Not having any idea what SWIG is I'll attempt an answer anyway :)</p> <p>Use something like this to release/acquire the GIL:</p> <pre><code>class GILReleaser { GILReleaser() : save(PyEval_SaveThread()) {} ~GILReleaser() { PyEval_RestoreThread(save); } PyThreadState* save; }; </code></pre> <p>And in the code-block of your choosing, utilize RAII to release/acquire GIL:</p> <pre><code>{ GILReleaser releaser; // ... Do stuff ... } </code></pre> http://stackoverflow.com/questions/1566491/what-is-the-proper-way-of-disabling-an-osgi-service-at-service-start 2 What is the proper way of disabling an OSGi service at service start? Henrik Gustafsson 2009-10-14T14:09:57Z 2009-10-15T16:06:23Z <p>I have created an OSGi bundle with an exposed (declarative) service. If I, when activate is called, notice that something is amiss such that I can not provide the service, I need to prevent it from being exposed. At the moment the activation function looks like so:</p> <pre><code>public void activate(ComponentContext context, Map&lt;String, Object&gt; properties) { pid = (String) properties.get(Constants.SERVICE_PID); try { ... } catch(Exception e) { context.disableComponent(pid); } } </code></pre> <p>Another alternative is to just wrap/propagate the exception (or throw a new one, depending) like this:</p> <pre><code>public void activate(ComponentContext context, Map&lt;String, Object&gt; properties) { try { ... } catch(Exception e) { throw new ComponentException("Some reason"); } } </code></pre> <p>I can not find the correct behavior specified in the section on declarative services in the <a href="http://www.osgi.org/download/r4v42/r4.cmpn.pdf" rel="nofollow">OSGi Service Platform Service Compendium</a>, but I might be missing something</p> http://stackoverflow.com/questions/25007/conditional-formatting-percentage-to-color-conversion/25065#25065 5 Answer by Henrik Gustafsson for Conditional formatting -- percentage to color conversion Henrik Gustafsson 2008-08-24T14:11:08Z 2009-10-06T13:55:38Z <p>What you probably want to do is to assign your 0% to 100% some points in a HSV or HSL color-space. From there you can intrapolate colors (and yellow just happens to be between red and green :) and <a href="http://en.wikipedia.org/wiki/HSL%5Fcolor%5Fspace" rel="nofollow">convert them to RGB</a>. That will give you a nice looking gradient between the two.</p> <p>Assuming that you will use the color as a status indicator and from a user-interface perspective, however, that is probably not such a good idea, since we're quite bad at seeing small changes in color. So dividing the value into, for example, three to seven buckets would give you more noticeable differences when things change, at the cost of some precision (which you most likely would not be able to appreciate anyway).</p> <p>So, all the math aside, in the end I'd recommend a look-up-table with the following colors with v being the input value:</p> <pre><code>#e7241d for v &lt;= 12% #ef832c for v &gt; 12% and v &lt;= 36% #fffd46 for v &gt; 36% and v &lt;= 60% #9cfa40 for v &gt; 60% and v &lt;= 84% #60f83d for v &gt; 84% </code></pre> <p>These have been very naïvely converted from HSL values (0.0, 1.0, 1.0), (30.0, 1.0, 1.0), (60.0, 1.0, 1.0), (90.0, 1.0, 1.0), (120.0, 1.0, 1.0), and you might want to adjust the colors somewhat to suit your purposes (some don't like that red and green aren't 'pure').</p> <p>Please see:</p> <ul> <li><a href="http://richnewman.wordpress.com/2007/04/29/using-hsl-color-hue-saturation-luminosity-to-create-better-looking-guis-part-1/" rel="nofollow">Using HSL Color (Hue, Saturation, Luminosity) To Create Better-Looking GUIs</a> for some discussion and</li> <li><a href="http://www.bobpowell.net/RGBHSB.htm" rel="nofollow">RGB and HSL Colour Space Conversions</a> for sample C# source-code.</li> </ul> http://stackoverflow.com/questions/1443129/completely-wrap-an-object-in-python/1443389#1443389 1 Answer by Henrik Gustafsson for Completely wrap an object in Python Henrik Gustafsson 2009-09-18T09:14:12Z 2009-09-18T09:14:12Z <p>Start with this and mess with stuff in the loop to suit your needs:</p> <pre><code>import inspect class Delegate(object): def __init__(self, implementation): self.__class__ = implementation.__class__ for n, m in inspect.getmembers(implementation, callable): if not n.startswith('_'): setattr(self, n, m) </code></pre> <p>The ability to wrap not-new-style-objects is left as an exercise to the reader :)</p> http://stackoverflow.com/questions/1426241/problem-configparser-in-python/1426520#1426520 0 Answer by Henrik Gustafsson for Problem configparser in python Henrik Gustafsson 2009-09-15T11:09:39Z 2009-09-15T11:09:39Z <p>Yea, the config parser probably isn't the best choice...but if you really want to, try this:</p> <pre><code>import unittest from ConfigParser import SafeConfigParser from cStringIO import StringIO def _parse_float_list(string_value): return [float(v.strip()) for v in string_value.split(',')] def _generate_float_list(float_values): return ','.join(str(value) for value in float_values) def get_float_list(parser, section, option): string_value = parser.get(section, option) return _parse_float_list(string_value) def set_float_list(parser, section, option, float_values): string_value = _generate_float_list(float_values) parser.set(section, option, string_value) class TestConfigParser(unittest.TestCase): def setUp(self): self.a = [5e6,6e6,7e6,8e6,8.5e6,9e6,9.5e6,10e6,11e6,12e6] self.p = [0.0,0.001,0.002,0.003,0.004,0.005,0.006,0.007,0.008,0.009,0.01,0.015,0.05,0.1,0.15,0.2] def testRead(self): parser = SafeConfigParser() f = StringIO('''[values] a: 5e6, 6e6, 7e6, 8e6, 8.5e6, 9e6, 9.5e6, 10e6, 11e6, 12e6 p: 0.0 , 0.001, 0.002, 0.003, 0.004, 0.005, 0.006, 0.007, 0.008, 0.009, 0.01 , 0.015, 0.05 , 0.1 , 0.15 , 0.2 ''') parser.readfp(f) self.assertEquals(self.a, get_float_list(parser, 'values', 'a')) self.assertEquals(self.p, get_float_list(parser, 'values', 'p')) def testRoundTrip(self): parser = SafeConfigParser() parser.add_section('values') set_float_list(parser, 'values', 'a', self.a) set_float_list(parser, 'values', 'p', self.p) self.assertEquals(self.a, get_float_list(parser, 'values', 'a')) self.assertEquals(self.p, get_float_list(parser, 'values', 'p')) if __name__ == '__main__': unittest.main() </code></pre> http://stackoverflow.com/questions/310963/relational-schema-for-fowlers-temporal-expressions/312534#312534 4 Answer by Henrik Gustafsson for Relational Schema for Fowler's Temporal Expressions Henrik Gustafsson 2008-11-23T13:42:53Z 2009-08-25T14:38:14Z <p>I'm afraid this answer will be a lot of references and very little practical code, and it has been a while since I last messed with this, but...</p> <p>I think the two technologies you want to mix here are <a href="http://en.wikipedia.org/wiki/Active%5Fdatabase" rel="nofollow">'active databases'</a> and <a href="http://en.wikipedia.org/wiki/Temporal%5Fdatabase" rel="nofollow">'temporal databases'</a>.</p> <p>The first would be useful for evaluating the rules and so on, and the second is useful to store temporal data and evaluate at when a certain record is valid. Both of these are pretty large research areas, but you can do most of the temporal stuff in plain SQL (provided your database has good time support). The active part is harder in SQL, but <a href="http://www.postgresql.org/" rel="nofollow">PostgreSQL</a> at least has rules to help slightly with this. I don't know about the others databases, but most of them has rule/trigger/constraint support that would be able to translate to what you are looking for.</p> <p><strong>Active databases</strong> are databases that can react to changes in the facts that it stores using rules. These rules are specified in implementation specific languages, but for every day discussion <a href="http://en.wikipedia.org/wiki/Event%5FCondition%5FAction" rel="nofollow">Event-Condition-Action rules</a> (ECA Rules) are common. For an introduction to active database systems read the articles <a href="http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.48.7020&amp;rep=rep1&amp;type=pdf" rel="nofollow">The Active Database Management System Manifesto</a> and <a href="http://cs.ulb.ac.be/public/%5Fmedia/teaching/infoh415/p63-paton.pdf" rel="nofollow">Active Database Systems</a>. For some more information on ECA rules, check out <a href="http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.54.3287&amp;rep=rep1&amp;type=pdf" rel="nofollow">Logical Events and ECA Rules</a> (the pages are in reverse order o_0) and <a href="http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.47.4152&amp;rep=rep1&amp;type=pdf" rel="nofollow">Events in an Active Object-Oriented Database System</a>.</p> <p><strong>Events processing</strong> is a special case of the rule handling dealing with how to handle composite events and trigger their actions appropriately. An interesting read regarding this is <a href="http://www.dbis.ethz.ch/education/ws0708/adv%5Ftop%5Finfsyst/papers/snoop%5Fvldb94.pdf" rel="nofollow">Composite Events for Active Databases: Semantics, Contexts and Detection</a> and <a href="http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.48.5246&amp;rep=rep1&amp;type=pdf" rel="nofollow">Anatomy of a Composite Event Detector</a>. Also see the <a href="http://complexevents.com/" rel="nofollow">Complex Event Processing</a> site and the <a href="http://en.wikipedia.org/wiki/Event%5FStream%5FProcessing" rel="nofollow">Event Stream Processing</a> and <a href="http://en.wikipedia.org/wiki/Complex%5Fevent%5Fprocessing" rel="nofollow">Complex Event Processing</a> wikipedia articles.</p> <p><strong>Temporal databases</strong> can be seen as a database that can understand time, and in particular two specific kinds of time; valid-time and transaction-time. The valid-time of a record is the time period during which that record is valid, and the transaction-time of a record is the time during which it is present in the database. As a good practical introduction I'd recommand <em>the</em> book on how to do temporal databases in SQL: <a href="http://www.cs.arizona.edu/people/rts/tdbbook.pdf" rel="nofollow">Developing Time-Oriented Database Applications in SQL</a> by Richard T. Snodgrass.</p> <p>Oterhwise, everything you might possibly want to know about temporal databases can be read in <a href="http://timecenter.cs.aau.dk/TimeCenterPublications/TR-90.pdf" rel="nofollow">Temporal Database Entries for the Springer Encyclopedia of Database Systems</a> which is a pretty comprehensive document (I would start at the 'Temporal Database' entry), but to get started a bit quicker, check out the <a href="http://www.cs.aau.dk/~csj/Glossary/index.html" rel="nofollow">Temporal Database Glossary</a> which is rather easier to browse and read, and the site <a href="http://timecenter.cs.aau.dk/index.htm" rel="nofollow">Time Center</a> whose publications part has (or did have...) links to most notable publications in the area.</p> <p>So, now that you know all about this you see quickly that the image on page 11 can be expressed as a composite event, and can be detected/evaluated as such provided you have implemented the proper required subset of a composite event detector, and the rest could be expressed as a entries in tables with temporal aspects :)</p> <p>Martin Fowler addresses much of this himself in his <a href="http://martinfowler.com/ap2/timeNarrative.html" rel="nofollow">Patterns for things that change with time</a> that summarizes many patterns that deals with time.</p> <p>In the end, I would probably create a database schema for the temporal information and either use the DB rules for the active parts or implement that part in the application (there be dragons though). If you use PostgreSQL, the rule mechanisms are described in <a href="http://www.postgresql.org/docs/8.3/interactive/rules.html" rel="nofollow">The Rule System</a> part of the docs.</p> <p>Much to read, but if you thoroughly understand all this your professional net worth can go up quite a bit :)</p> <p>Also, good terms to google are 'temporal database', 'active database', 'ECA Rule'.</p> http://stackoverflow.com/questions/1279140/why-are-different-types-of-software-architecure-important-in-the-software-industr/1279268#1279268 1 Answer by Henrik Gustafsson for Why are different types of software architecure important in the software industry? Henrik Gustafsson 2009-08-14T17:58:43Z 2009-08-14T17:58:43Z <p>Some random ramblings: </p> <p>(Note: I talk about architecture the concept, not architecture the artifact)</p> <p>The architecture of a system is the overall design and make-up of a system. Architecture is always present, but you might want to make sure your architecture is good enough. Basically architecture is be done as part of the development process; up-front, during the development or accidentally. Avoid the last one.</p> <p>One reason for doing some up-front architecture is to find out which decisions about a system you need to make early (due to interoperability, for example) and which you can postpone until you actually need it.</p> <p>If you mind your architecture continuously during development, making sure you always have a clean structure (and not being afraid to change it when the right reasons are given), your system will be much more easy to extend and modify as needed.</p> <p>I find that a mix of the two is good, trying to find out the necessary Big Decisions early and try to delay making them as late as possible (but no later!) when you have as much information as possible to base your decisions on. Early architecture is also useful for determining the smallest parts needed to get a minimal working system which can grow as the requirements become clear.</p> <p>Also, architecture can be seen as a communication tool; by using well known architectural patterns and metaphors it becomes very easy to communicate the intent and workings of your system to other people. A well-architectured system can be recognized by being easy to understand in layers of pieces; you can understand one part without having to know the details about all other parts. It is basically the tour-guide and road-signs to the system :)</p> http://stackoverflow.com/questions/962361/how-can-i-speed-up-update-replace-operations-in-postgresql 5 How can I speed up update/replace operations in PostgreSQL? Henrik Gustafsson 2009-06-07T17:28:56Z 2009-07-03T14:35:13Z <p>We have a rather specific application that uses PostgreSQL 8.3 as a storage backend (using Python and psycopg2). The operations we perform to the important tables are in the majority of cases inserts or updates (rarely deletes or selects).</p> <p>For sanity reasons we have created our own <a href="http://martinfowler.com/eaaCatalog/dataMapper.html" rel="nofollow">Data Mapper</a>-like layer that works reasonably well, but it has one big bottleneck, the update performance. Of course, I'm not expecting the update/replace scenario to be as speedy as the 'insert to an empty table' one, but it would be nice to get a bit closer.</p> <p>Note that this system is free from concurrent updates</p> <p>We always set all the fields of each rows on an update, which can be seen in the terminology where I use the word 'replace' in my tests. I've so far tried two approaches to our update problem:</p> <ol> <li><p>Create a <code>replace()</code> procedure that takes an array of rows to update:</p> <pre><code>CREATE OR REPLACE FUNCTION replace_item(data item[]) RETURNS VOID AS $$ BEGIN FOR i IN COALESCE(array_lower(data,1),0) .. COALESCE(array_upper(data,1),-1) LOOP UPDATE item SET a0=data[i].a0,a1=data[i].a1,a2=data[i].a2 WHERE key=data[i].key; END LOOP; END; $$ LANGUAGE plpgsql </code></pre></li> <li><p>Create an <code>insert_or_replace</code> rule so that everything but the occasional delete becomes multi-row inserts</p> <pre><code>CREATE RULE "insert_or_replace" AS ON INSERT TO "item" WHERE EXISTS(SELECT 1 FROM item WHERE key=NEW.key) DO INSTEAD (UPDATE item SET a0=NEW.a0,a1=NEW.a1,a2=NEW.a2 WHERE key=NEW.key); </code></pre></li> </ol> <p>These both speeds up the updates a fair bit, although the latter slows down inserts a bit: </p> <pre><code>Multi-row insert : 50000 items inserted in 1.32 seconds averaging 37807.84 items/s executemany() update : 50000 items updated in 26.67 seconds averaging 1874.57 items/s update_andres : 50000 items updated in 3.84 seconds averaging 13028.51 items/s update_merlin83 (i/d/i) : 50000 items updated in 1.29 seconds averaging 38780.46 items/s update_merlin83 (i/u) : 50000 items updated in 1.24 seconds averaging 40313.28 items/s replace_item() procedure : 50000 items replaced in 3.10 seconds averaging 16151.42 items/s Multi-row insert_or_replace: 50000 items inserted in 2.73 seconds averaging 18296.30 items/s Multi-row insert_or_replace: 50000 items replaced in 2.02 seconds averaging 24729.94 items/s </code></pre> <p>Random notes about the test run:</p> <ul> <li>All tests are run on the same computer as the database resides; connecting to localhost.</li> <li>Inserts and updates are applied to the database in batches of of 500 items, each sent in its own transaction (<strong>UPDATED</strong>).</li> <li>All update/replace tests used the same values as were already in the database.</li> <li>All data was escaped using the psycopg2 adapt() function.</li> <li>All tables are truncated and vacuumed before use (<strong>ADDED</strong>, in previous runs only truncation happened)</li> <li><p>The table looks like this:</p> <pre><code>CREATE TABLE item ( key MACADDR PRIMARY KEY, a0 VARCHAR, a1 VARCHAR, a2 VARCHAR ) </code></pre></li> </ul> <p>So, the real question is: How can I speed up update/replace operations a bit more? (I think these findings might be 'good enough', but I don't want to give up without tapping the SO crowd :)</p> <p>Also anyones hints towards a more elegant replace_item(), or evidence that my tests are completely broken would be most welcome.</p> <p>The test script is available <a href="http://fnord.se/perftest.py" rel="nofollow">here</a> if you'd like to attempt to reproduce. Remember to check it first though...it WorksForMe, but...</p> <p>You will need to edit the db.connect() line to suit your setup.</p> <p><strong>EDIT</strong></p> <p>Thanks to andres in #postgresql @ freenode I have another test with a single-query update; much like a multi-row insert (listed as update_andres above).</p> <pre><code>UPDATE item SET a0=i.a0, a1=i.a1, a2=i.a2 FROM (VALUES ('00:00:00:00:00:01', 'v0', 'v1', 'v2'), ('00:00:00:00:00:02', 'v3', 'v4', 'v5'), ... ) AS i(key, a0, a1, a2) WHERE item.key=i.key::macaddr </code></pre> <p><strong>EDIT</strong></p> <p>Thanks to merlin83 in #postgresql @ freenode and jug/jwp below I have another test with an insert-to-temp/delete/insert approach (listed as "update_merlin83 (i/d/i)" above).</p> <pre><code>INSERT INTO temp_item (key, a0, a1, a2) VALUES ( ('00:00:00:00:00:01', 'v0', 'v1', 'v2'), ('00:00:00:00:00:02', 'v3', 'v4', 'v5'), ...); DELETE FROM item USING temp_item WHERE item.key=temp_item.key; INSERT INTO item (key, a0, a1, a2) SELECT key, a0, a1, a2 FROM temp_item; </code></pre> <p>My gut feeling is that these tests are not very representative to the performance in the real-world scenario, but I think the differences are great enough to give an indication of the most promising approaches for further investigation. The perftest.py script contains all updates as well for those of you who want to check it out. It's fairly ugly though, so don't forget your goggles :)</p> <p><strong>EDIT</strong></p> <p>andres in #postgresql @ freenode pointed out that I should test with an insert-to-temp/update variant (listed as "update_merlin83 (i/u)" above).</p> <pre><code>INSERT INTO temp_item (key, a0, a1, a2) VALUES ( ('00:00:00:00:00:01', 'v0', 'v1', 'v2'), ('00:00:00:00:00:02', 'v3', 'v4', 'v5'), ...); UPDATE item SET a0=temp_item.a0, a1=temp_item.a1, a2=temp_item.a2 FROM temp_item WHERE item.key=temp_item.key </code></pre> <p><strong>EDIT</strong></p> <p>Probably final edit: I changed my script to match our load scenario better, and it seems the numbers hold even when scaling things up a bit and adding some randomness. If anyone gets very different numbers from some other scenario I'd be interested in knowing about it.</p> http://stackoverflow.com/questions/1015581/continuous-unit-testing-with-pydev-python-and-eclipse/1040367#1040367 1 Answer by Henrik Gustafsson for Continuous unit testing with Pydev (Python and Eclipse) Henrik Gustafsson 2009-06-24T19:16:37Z 2009-06-24T19:29:25Z <p>I just realized that PyDev has rather powerful scripting support. Unfortunately I don't have the time to do it all for you (but if you complete this, please post it here :)</p> <p>If you create a file named <code>pyedit_nose.py</code> that looks like this in an otherwise empty folder :</p> <pre><code>assert cmd is not None assert editor is not None if cmd == 'onSave': from java.lang import Runtime from java.io import BufferedReader from java.io import InputStreamReader from org.eclipse.core.resources import ResourcesPlugin from org.eclipse.core.resources import IMarker from org.eclipse.core.resources import IResource proc = Runtime.getRuntime().exec('ls -al') extra_message = BufferedReader(InputStreamReader(proc.inputStream)).readLine() r = ResourcesPlugin.getWorkspace().getRoot() for marker in r.findMarkers(IMarker.PROBLEM, False, IResource.DEPTH_INFINITE): if marker.getAttribute(IMarker.MESSAGE).startsWith("Some test failed!"): marker.delete() for rr in r.getProjects(): marker = rr.createMarker(IMarker.PROBLEM) marker.setAttribute(IMarker.MESSAGE, "Some test failed! " + extra_message) marker.setAttribute(IMarker.PRIORITY, IMarker.PRIORITY_HIGH) marker.setAttribute(IMarker.SEVERITY, IMarker.SEVERITY_ERROR) </code></pre> <p>and set up Preferences->PyDev->Scripting Pydev to point to this directory you will get all projects in your workspace marked with an error every time a file is saved.</p> <p>By executing a script that returns the test results in some easy to parse format rather than <code>ls</code> and parsing the output you should be able to put your markers in the right places.</p> <p>See this for some starting points:</p> <ul> <li><a href="http://fabioz.com/pydev/manual%5Farticles%5Fscripting.html" rel="nofollow">Jython Scripting in Pydev</a></li> <li><a href="http://help.eclipse.org/stable/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/api/org/eclipse/core/resources/IMarker.html" rel="nofollow">IMarker</a> is what represents a marker.</li> <li><a href="http://help.eclipse.org/stable/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/api/org/eclipse/core/resources/IResource.html" rel="nofollow">IResource</a> is what you attach your markers to. Can be workspaces, projects, files, directories etc. <code>resource.createMarker(IMarker.PROBLEM)</code> creates a problem marker.</li> <li><a href="http://help.eclipse.org/stable/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/api/org/eclipse/core/resources/IProject.html" rel="nofollow">IProject</a> is a type of <code>IResource</code> that represents a project. Use the <code>members()</code> method to get the contents.</li> </ul> http://stackoverflow.com/questions/1015581/continuous-unit-testing-with-pydev-python-and-eclipse/1039552#1039552 0 Answer by Henrik Gustafsson for Continuous unit testing with Pydev (Python and Eclipse) Henrik Gustafsson 2009-06-24T16:44:23Z 2009-06-24T16:44:23Z <p>Pydev does have some unit-test integration, but that's only as a run configuration...so...</p> <p>This is not a very elegant way, but if you:</p> <ol> <li>Enable Project->Build Automatically</li> <li>In your project properties, add a new builder of type Program</li> <li>Configure it to run your tests and select 'during auto builds'</li> </ol> <p>Then at least you will get something that outputs the test results to the console on resource saves.</p> http://stackoverflow.com/questions/705420/how-do-i-pull-a-remote-tracking-branch-while-in-the-master-branch/1039445#1039445 1 Answer by Henrik Gustafsson for how do I pull a remote tracking branch while in the master branch Henrik Gustafsson 2009-06-24T16:27:36Z 2009-06-24T16:27:36Z <p>If you combine Apikot and Jeremy you get:</p> <pre><code>git pull --rebase origin branch </code></pre> <p>Or, if you haven't set the branch mapping up in your config:</p> <pre><code>git pull --rebase origin &lt;src&gt;:&lt;dst&gt; </code></pre> http://stackoverflow.com/questions/1037513/git-cherry-confusion-doesnt-work-as-described-in-doc/1039416#1039416 2 Answer by Henrik Gustafsson for git cherry confusion - doesn't work as described in doc Henrik Gustafsson 2009-06-24T16:22:28Z 2009-06-24T16:22:28Z <p>It also says "The commits are compared with their patch id, obtained from the git-patch-id program.". When applied your cherry-picked diff, did it perchance end up being a slightly different diff?</p> <p>In that case not only will the the commit id differ, but also the patch id as git-patch-id will report different patch ids for the commits and thus they won't be considered to be in each others' branches.</p> <p>It's easy to check for this:</p> <pre><code>git show 533e2559342910fbffa2be5b38fdd7f2ddb2ed53 | git-patch-id git show 409c61b3304373a73c787fdf9c08cc338934b74d | git-patch-id </code></pre> <p>If the first sha1 returned by git-patch-id differs between the both runs, that is what has happened.</p> <p>Caveat lector -- I haven't tried my theory, but that's how I interpret the man-pages.</p> http://stackoverflow.com/questions/1030169/git-easy-way-pull-latest-of-all-submodules/1032653#1032653 8 Answer by Henrik Gustafsson for Git - easy way pull latest of all submodules Henrik Gustafsson 2009-06-23T13:42:29Z 2009-06-23T13:42:29Z <p>For git 1.6.1 or above you can use something similar to (modified to suit):</p> <pre><code>git submodule foreach git pull </code></pre> <p>See <a href="http://www.kernel.org/pub/software/scm/git/docs/v1.6.1.3/git-submodule.html" rel="nofollow">git-submodule(1)</a> for details</p> http://stackoverflow.com/questions/805345/re-posix-and-system-v-ipc/826686#826686 1 Answer by Henrik Gustafsson for RE: Posix and System V IPC Henrik Gustafsson 2009-05-05T20:04:17Z 2009-05-05T20:21:12Z <ol> <li>I'd say message queues by far on the basis that the operations you perform on a message queue has almost identical mappings on to socket operations.</li> <li>Probably equally hard, I'd suggest you implement some slightly more network friendly abstraction on top of shm...such as a message queue. Shared memory not very suited for networking even though there are some network-enabled implementations of it, but the ones I've come across are leaky abstractions indeed.</li> </ol> http://stackoverflow.com/questions/800030/remove-carriage-return-in-unix/802439#802439 3 Answer by Henrik Gustafsson for Remove carriage return in Unix Henrik Gustafsson 2009-04-29T13:48:10Z 2009-04-29T13:48:10Z <pre><code>tr -d '\r' &lt; infile &gt; outfile </code></pre> <p>See <a href="http://www.opengroup.org/onlinepubs/009695399/utilities/tr.html" rel="nofollow">tr(1)</a></p> http://stackoverflow.com/questions/16568/how-to-select-the-nth-row-in-a-sql-database-table/16777#16777 13 Answer by Henrik Gustafsson for How to select the nth row in a SQL database table? Henrik Gustafsson 2008-08-19T19:22:15Z 2009-04-28T13:16:46Z <p>There are ways of doing this in optional parts of the standard, but a lot of databases support their own way of doing it.</p> <p>A really good site that talks about this and other things is <a href="http://troels.arvin.dk/db/rdbms/#select-limit" rel="nofollow">http://troels.arvin.dk/db/rdbms/#select-limit</a>.</p> <p>Basically, PostgreSQL and MySQL supports the non-standard:</p> <pre><code>SELECT... OFFSET x LIMIT y </code></pre> <p>Oracle, DB2 and MSSQL supports the standard windowing functions:</p> <pre><code>SELECT * FROM ( SELECT ROW_NUMBER() OVER (ORDER BY key ASC) AS rownumber, columns FROM tablename ) AS foo WHERE rownumber &lt;= n </code></pre> <p>(which I just copied from the site linked above since I never use those DBs)</p> <p><em>Update:</em> As of PostgreSQL 8.4 the standard windowing functions are supported, so expect the second example to work for PostgreSQL as well. </p> http://stackoverflow.com/questions/787797/cannot-commit-a-git-tag/787802#787802 14 Answer by Henrik Gustafsson for Cannot commit a git tag Henrik Gustafsson 2009-04-24T22:28:36Z 2009-04-24T22:42:39Z <p>I think you want</p> <pre><code>git push --tags </code></pre> <p>as that, well, pushes all your tags :)</p> <p>There are some alternatives of course, this being git and all (replace origin with your repo of choice):</p> <pre><code>git push origin tag 0.5 </code></pre> <p>or</p> <pre><code>git push origin refs/tags/0.5:refs/tags/0.5 </code></pre> <p>See <a href="http://www.kernel.org/pub/software/scm/git/docs/git-push.html" rel="nofollow">git-push(1)</a> for further details. "<a href="http://www.gitready.com/" rel="nofollow">git ready</a>" has some useful info in their <a href="http://www.gitready.com/beginner/2009/02/03/tagging.html" rel="nofollow">tagging</a> article as well.</p> http://stackoverflow.com/questions/605681/sorting-out-a-git-mess/605714#605714 10 Answer by Henrik Gustafsson for Sorting out a Git mess Henrik Gustafsson 2009-03-03T09:29:10Z 2009-04-20T08:40:43Z <p>I would probably start by pushing all the repositories to separate branches in a central repository, from which I can rebase, merge etc between branches easily.</p> <p>A good visualization tool such as <a href="http://wiki.github.com/krig/git-age" rel="nofollow">git-age</a>, <a href="http://wiki.github.com/Caged/gitnub" rel="nofollow">gitnub</a>, <a href="http://gitx.frim.nl/" rel="nofollow">gitx</a>, <a href="http://live.gnome.org/giggle" rel="nofollow">giggle</a> can work wonders, but your task will probably be rather tedious unless you can find the branching points. If there are similar patches applied to all branches you can use (interactive) <a href="http://www.kernel.org/pub/software/scm/git/docs/git-rebase.html" rel="nofollow">rebase</a> to reorder your commits such that they are in the same order. Then you can start 'zipping up' your branches, moving the branch-point upwards by putting commits into master. A nice description on how to reorder commits using rebase can be found <a href="http://gitready.com/advanced/2009/03/20/reorder-commits-with-rebase.html" rel="nofollow">here</a>.</p> <p>Chances are the actions you need to take are described in the links provided by the <a href="http://www.kernel.org/pub/software/scm/git/docs/howto-index.html" rel="nofollow">Git Howto Index</a>. A good <a href="http://zrusin.blogspot.com/2007/09/git-cheat-sheet.html" rel="nofollow">cheat sheet</a> is always nice to have within reach. Also, I suspect the followup to Eric Sinks post "<a href="http://www.ericsink.com/entries/dvcs%5Fdag%5F1.html" rel="nofollow">DVCS and DAGs, Part 1</a>" will contain something useful (It didn't, but was an interesting read nontheless).</p> <p>Additional good-to-have links are: <a href="http://www-cs-students.stanford.edu/~blynn/gitmagic/" rel="nofollow">Git Magic</a>, <a href="http://gitready.com/" rel="nofollow">Git Ready</a> and <a href="http://www.sourcemage.org/Git%5FGuide" rel="nofollow">SourceMage Git Guide</a></p> <p>I hope all the repos had good commit messages that tell you the purpose of each patch, it's that or code review :)</p> <p>As for how to maintain customizations we've had luck with the following:</p> <p>We started by separating (or keeping separate) the customized code from the generic code. Then we've tried two approaches; both which worked fine:</p> <ol> <li>All deployments got their own repositories where the customization was kept.</li> <li>All deployments got their own branch in a 'customization'-repository.</li> </ol> <p>After the first deployment and seeing that the second was a fact we spent some time trying to foresee future customization/cutting points to reduce duplication across the customized repos (alt. 1, which is the approach we currently use) and in the base/core repo.</p> <p>And yes, we do try to refactor mercilessly whenever we notice the core/customization split slipping :)</p> http://stackoverflow.com/questions/760002/reasons-not-to-code-a-program/760145#760145 1 Answer by Henrik Gustafsson for Reasons not to code a program? Henrik Gustafsson 2009-04-17T12:02:59Z 2009-04-17T12:02:59Z <p>Vastly simplified, but select the smallest of:</p> <ul> <li>For a home-brewn tool: cost = (task_execution_time * uses * $/user-h + tool_development_time * $/dev-h</li> <li>For a purchased tool: cost = task_execution_time * uses * $/user-h + tool_purchase_price</li> <li>Without a tool: cost = task_execution_time * uses * $/user-h</li> </ul> <p>cost is the cost of performing the <code>task</code> <code>uses</code> number of times. task_execution_time is the (person-)time it takes to perform the task including any overhead, tool_development_time is the time it takes to develop the tool.</p> <p>I'm leaving out a lot of variables to keep it simple. Add more to suit :)</p> http://stackoverflow.com/questions/28881/why-doesnt-sort-sort-the-same-on-every-machine/28903#28903 11 Answer by Henrik Gustafsson for Why doesn't **sort** sort the same on every machine? Henrik Gustafsson 2008-08-26T19:21:56Z 2009-04-16T15:42:57Z <p>The <a href="http://developer.apple.com/documentation/Darwin/Reference/ManPages/man1/sort.1.html" rel="nofollow">man-page</a> on OS X says:</p> <blockquote> <p><strong>***</strong> WARNING <strong>***</strong> The locale specified by the environment affects sort order. Set LC_ALL=C to get the traditional sort order that uses native byte values.</p> </blockquote> <p>which might explain things.</p> <p>If some of your systems have no locale support, they would default to that locale (C), so you wouldn't have to set it on those. If you have some that supports locales and want the same behavior, set <code>LC_ALL=C</code> on those systems. That would be the way to have as many systems as I know do it the same way.</p> <p>If you don't have any locale-less systems, just making sure they share locale would probably be enough.</p> <p>For more canonical information, see the The Single UNIX ® Specification, Version 2 description of <a href="http://opengroup.org/onlinepubs/007908799/xbd/locale.html" rel="nofollow">locale</a>, <a href="http://opengroup.org/onlinepubs/007908799/xbd/envvar.html" rel="nofollow">environment variables</a>, <a href="http://opengroup.org/onlinepubs/007908799/xsh/setlocale.html" rel="nofollow">setlocale()</a> and the description of the <a href="http://opengroup.org/onlinepubs/007908799/xcu/sort.html" rel="nofollow">sort(1)</a> utility.</p> http://stackoverflow.com/questions/93915/conferences-that-offer-videos-for-downloading/677915#677915 0 Answer by Henrik Gustafsson for Conferences that offer videos for downloading? Henrik Gustafsson 2009-03-24T15:27:48Z 2009-03-24T15:27:48Z <p><a href="http://www.oredev.org/" rel="nofollow">Øredev</a> has published some talks from <a href="http://www.oredev.org/toppmeny/video.4.3f1ff754117a0ed3480800013788.html" rel="nofollow">2007</a> and <a href="http://www.oredev.org/topmenu/video.4.45b270a411a9ed8e1278000948.html" rel="nofollow">2008</a>.</p> http://stackoverflow.com/questions/669678/what-is-the-smoothest-most-appealing-syntax-youve-found-for-asserting-parameter/671813#671813 0 Answer by Henrik Gustafsson for What is the smoothest, most appealing syntax you've found for asserting parameter correctness in c#? Henrik Gustafsson 2009-03-22T23:35:36Z 2009-03-22T23:35:36Z <p>Just as a contrast, <a href="http://googletesting.blogspot.com/2009/02/to-assert-or-not-to-assert.html" rel="nofollow">this</a> post by <a href="http://misko.hevery.com/" rel="nofollow">Miško Hevery</a> on the <a href="http://googletesting.blogspot.com/" rel="nofollow">Google Testing Blog</a> argues that this kind of parameter checking might not always be a good thing. The resulting debate in the comments also raises some interesting points.</p> http://stackoverflow.com/questions/628430/version-control-approaches-in-scrum/631022#631022 2 Answer by Henrik Gustafsson for Version control approaches in Scrum Henrik Gustafsson 2009-03-10T16:12:34Z 2009-03-10T16:21:20Z <p>Whenever we have a story or a set of stories that threatens to leave the master branch in disarray for several days or involves 'many' developers we create a branch for that (not very common, we try to task things to avoid this, but it happens) as a sort of risk-mitigation thing. We want to be sure that the master branch is always ready for release at the end of each sprint, even if it potentially means that we might not have increased the value of the master branch after the sprint.</p> <p>The story/feature/task branch is synchronized against the master branch very often, and the goal is to always have the branch merged back well before the end of the sprint.</p> <p>Of course, we all use '<a href="http://git-scm.com/" rel="nofollow">git</a>', so in effect we always have a local branch that we work on, and we've become pretty good at synchronizing with master often enough to avoid big-bang integrations and seldom enough to not leave useless/unused code in the master branch.</p> <p>Other than that, we do '<a href="http://labs.seapine.com/wiki/index.php/Surround%5FSCM%5FBranching%5FStrategies#Branch%5FBy%5FPurpose" rel="nofollow">branch-by-purpose</a>'. I also wrote a bit more about how we do git <a href="http://stackoverflow.com/questions/605681/605714#605714">here</a>.</p> http://stackoverflow.com/questions/625491/python-conditional-lock/625554#625554 1 Answer by Henrik Gustafsson for python conditional lock Henrik Gustafsson 2009-03-09T09:31:39Z 2009-03-09T09:31:39Z <p>It sounds like you want something similar to a <a href="http://en.wikipedia.org/wiki/Readers-writer%5Flock" rel="nofollow">Readers-Writer lock</a>.</p> <p>This is probably not what you want, but might be a clue:</p> <pre><code>from __future__ import with_statement import threading def RWLock(readers = 1, writers = 1): m = _Monitor(readers, writers) return (_RWLock(m.r_increment, m.r_decrement), _RWLock(m.w_increment, m.w_decrement)) class _RWLock(object): def __init__(self, inc, dec): self.inc = inc self.dec = dec def acquire(self): self.inc() def release(self): self.dec() def __enter__(self): self.inc() def __exit__(self): self.dec() class _Monitor(object): def __init__(self, max_readers, max_writers): self.max_readers = max_readers self.max_writers = max_writers self.readers = 0 self.writers = 0 self.monitor = threading.Condition() def r_increment(self): with self.monitor: while self.writers &gt; 0 and self.readers &lt; self.max_readers: self.monitor.wait() self.readers += 1 self.monitor.notify() def r_decrement(self): with self.monitor: while self.writers &gt; 0: self.monitor.wait() assert(self.readers &gt; 0) self.readers -= 1 self.monitor.notify() def w_increment(self): with self.monitor: while self.readers &gt; 0 and self.writers &lt; self.max_writers: self.monitor.wait() self.writers += 1 self.monitor.notify() def w_decrement(self): with self.monitor: assert(self.writers &gt; 0) self.writers -= 1 self.monitor.notify() if __name__ == '__main__': rl, wl = RWLock() wl.acquire() wl.release() rl.acquire() rl.release() </code></pre> <p>(Unfortunately not tested)</p> http://stackoverflow.com/questions/621954/ways-of-representing-frequency-of-updates-as-a-graph/622029#622029 0 Answer by Henrik Gustafsson for Ways of representing frequency of updates as a graph? Henrik Gustafsson 2009-03-07T15:56:03Z 2009-03-07T15:56:03Z <p>I think the <a href="http://en.wikipedia.org/wiki/Radar%5Fchart" rel="nofollow">radar chart</a> (or circular area chart) would be a good bet. Take a look at the excellent <a href="http://extremepresentation.typepad.com/blog/2006/09/choosing%5Fa%5Fgood.html" rel="nofollow">Choosing a good chart</a> post and PDF chart-selecting-guide over at the <a href="http://extremepresentation.typepad.com/blog/" rel="nofollow">Extreme Presentation(tm) Method</a> site.</p> http://stackoverflow.com/questions/549451/line-breaking-widget-layout-for-android/560958#560958 Comment by Henrik Gustafsson on Line-breaking widget layout for Android Henrik Gustafsson 2009-10-20T18:02:51Z 2009-10-20T18:02:51Z Dunno if you've got enough rep to edit anyway, but at least it's wikied now http://stackoverflow.com/questions/549451/line-breaking-widget-layout-for-android/560958#560958 Comment by Henrik Gustafsson on Line-breaking widget layout for Android Henrik Gustafsson 2009-10-20T17:30:40Z 2009-10-20T17:30:40Z Also, if you make any improvements it'd be neat if you posted them here :) http://stackoverflow.com/questions/549451/line-breaking-widget-layout-for-android/560958#560958 Comment by Henrik Gustafsson on Line-breaking widget layout for Android Henrik Gustafsson 2009-10-20T17:29:09Z 2009-10-20T17:29:09Z The site made me agree that &quot;user contributed content licensed under cc-wiki with attribution required&quot;, so... Check the bottom for details http://stackoverflow.com/questions/1426241/problem-configparser-in-python/1426520#1426520 Comment by Henrik Gustafsson on Problem configparser in python Henrik Gustafsson 2009-09-22T20:08:07Z 2009-09-22T20:08:07Z Works for me; output is something like &quot;Ran 2 tests in 0.001s OK&quot; http://stackoverflow.com/questions/962361/how-can-i-speed-up-update-replace-operations-in-postgresql/1079634#1079634 Comment by Henrik Gustafsson on How can I speed up update/replace operations in PostgreSQL? Henrik Gustafsson 2009-07-24T14:34:22Z 2009-07-24T14:34:22Z I think this should be a new question http://stackoverflow.com/questions/34020/are-python-threads-buggy/34031#34031 Comment by Henrik Gustafsson on Are python threads buggy? Henrik Gustafsson 2009-06-14T03:02:44Z 2009-06-14T03:02:44Z I would, and this talk agrees with me, and provides ample examples: <a href="http://blip.tv/file/2232410" rel="nofollow">blip.tv/file/2232410</a> In most cases it won't matter though. Still, see the talk, it's great! http://stackoverflow.com/questions/962361/how-can-i-speed-up-update-replace-operations-in-postgresql/963819#963819 Comment by Henrik Gustafsson on How can I speed up update/replace operations in PostgreSQL? Henrik Gustafsson 2009-06-08T09:12:02Z 2009-06-08T09:12:02Z Yea, got that hint from #postgresql as well, I just haven't had the time to try it out yet. I will though :) http://stackoverflow.com/questions/962361/how-can-i-speed-up-update-replace-operations-in-postgresql/963819#963819 Comment by Henrik Gustafsson on How can I speed up update/replace operations in PostgreSQL? Henrik Gustafsson 2009-06-08T08:01:09Z 2009-06-08T08:01:09Z Oh, sorry, I meant that every row we update gets all its fields set, not that we always update all rows http://stackoverflow.com/questions/962361/how-can-i-speed-up-update-replace-operations-in-postgresql/962535#962535 Comment by Henrik Gustafsson on How can I speed up update/replace operations in PostgreSQL? Henrik Gustafsson 2009-06-07T19:19:34Z 2009-06-07T19:19:34Z I will certainly look for the checkpoint warnings, it looks very relevant; thanks! http://stackoverflow.com/questions/962361/how-can-i-speed-up-update-replace-operations-in-postgresql/962430#962430 Comment by Henrik Gustafsson on How can I speed up update/replace operations in PostgreSQL? Henrik Gustafsson 2009-06-07T18:45:56Z 2009-06-07T18:45:56Z I tried running all tests with the table locked in all transactions; no change. http://stackoverflow.com/questions/962361/how-can-i-speed-up-update-replace-operations-in-postgresql Comment by Henrik Gustafsson on How can I speed up update/replace operations in PostgreSQL? Henrik Gustafsson 2009-06-07T17:58:30Z 2009-06-07T17:58:30Z Not in the test-script, no. In the real world, one. http://stackoverflow.com/questions/962361/how-can-i-speed-up-update-replace-operations-in-postgresql/962379#962379 Comment by Henrik Gustafsson on How can I speed up update/replace operations in PostgreSQL? Henrik Gustafsson 2009-06-07T17:54:32Z 2009-06-07T17:54:32Z The key is unique, so it will only ever return one row. Nevertheless, I tried, and there was no noticeable change in performance either way. Thanks though! http://stackoverflow.com/questions/665061/python-defaultdict-became-unmarshallable-object-in-2-6/944344#944344 Comment by Henrik Gustafsson on Python: defaultdict became unmarshallable object in 2.6? Henrik Gustafsson 2009-06-03T13:53:41Z 2009-06-03T13:53:41Z gc.disable(); timeit(cPickle.dumps, ...); gc.enable() gets the time down to around 14 seconds, which might be a good enough improvement http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/36870#36870 Comment by Henrik Gustafsson on Should a function have only one return statement ? Henrik Gustafsson 2009-04-27T06:41:51Z 2009-04-27T06:41:51Z <a href="http://www.opengroup.org/onlinepubs/009695399/functions/free.html" rel="nofollow">opengroup.org/onlinepubs/009695399/&hellip;</a> &quot;If ptr is a null pointer, no action shall occur.&quot; http://stackoverflow.com/questions/669678/what-is-the-smoothest-most-appealing-syntax-youve-found-for-asserting-parameter/671813#671813 Comment by Henrik Gustafsson on What is the smoothest, most appealing syntax you've found for asserting parameter correctness in c#? Henrik Gustafsson 2009-03-23T00:56:41Z 2009-03-23T00:56:41Z Certainly these kinds of checks are useful in many situations, I just wanted the contrasting opinion around for future generations :)