User conny - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T09:07:11Zhttp://stackoverflow.com/feeds/user/23023http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1714027/version-number-comparison/1714378#17143784Answer by conny for Version number comparisonconny2009-11-11T10:40:04Z2009-11-11T10:40:04Z<p>Is <em>reuse</em> considered elegance in this instance? :)</p>
<pre><code># pkg_resources is in setup_tools
def mycmp(a, b):
from pkg_resources import parse_version as V
return cmp(V(a),V(b))
</code></pre>
http://stackoverflow.com/questions/1612200/how-to-call-a-function-inside-itself/1612575#16125751Answer by conny for How to call a function inside itself?conny2009-10-23T10:27:40Z2009-10-23T10:27:40Z<p>If you include enough <em>uniqueness</em> in your key generation routine, you might be able to avoid this situation in the first place. E.g. have the routine take into account the current timestamp and the local hostname and/or PID. </p>
<p>Looping in such a non-deterministic fashion is generally proof of some part being too naive. That's not good. :-)</p>
<p><hr /></p>
<p>Anyhow, it would at least be good practice to catch it and log some sort of error as opposed to hanging the request and finally timing out:</p>
<pre><code> function key_generator($length = 4)
{
/* The $attempts_left clearly depends on how much trust
you give your key generation code combined with the key space size. */
$attempts_left = pow(16, $length) * 2;
/* ... just guessing, in case your key base is 16, i.e. [0-9a-z] for example */
do {
// ... key generation goes here ...
$key = 'xxxx';
} while ( $this->user_model->valid_key($key) == false && $attempts_left-- > 0 );
if( $attempts_left < 1 )
return false;
else
return $key;
}
</code></pre>
http://stackoverflow.com/questions/1112444/perl-equivalent-of-python-list-comprehension4Perl equivalent of (Python-) list comprehensionconny2009-07-10T23:39:07Z2009-07-11T15:31:12Z
<p>I'm looking for ways to express this Python snippet in Perl:</p>
<pre><code>data = {"A": None, "B": "yes", "C": None}
key_list = [k for k in data if data[k]]
# in this case the same as filter(lambda k: data[k], data) but let's ignore that
</code></pre>
<p>So looking at it one way, I just want the keys where the values are <em>None</em> or <em>undef</em>. Looking at it another way, what I want is the concise perl equivalent of a <a href="http://docs.python.org/tutorial/datastructures.html#list-comprehensions" rel="nofollow">list comprehension with conditional</a>.</p>
http://stackoverflow.com/questions/867796/internet-explorer-ignoring-my-cookies/1033017#10330171Answer by conny for Internet Explorer ignoring my cookiesconny2009-06-23T14:44:54Z2009-06-23T14:44:54Z<p>The cookie in your example is for the "us.is" domain. <strong>IE ignores cookies set for two-letter domains</strong>. To be more exact, it seems to ignore cookies from domains with less than 5 characters (like yours: 2+2).</p>
<p>I remember this bug/feature from IE6 I believe, possibly earlier versions. Reading this, it looks like the behavior is still around in IE7.</p>
<p>An MSKB article suggesting an unpractical workaround can be found here: <a href="http://support.microsoft.com/kb/310676" rel="nofollow">http://support.microsoft.com/kb/310676</a>. </p>
<p>More practical is perhaps to get a longer domain name ;-) or to make sure users are always redirected to one canonical name, i.e. "www.us.is" and plant your cookies there.</p>
http://stackoverflow.com/questions/730508/software-to-manage-user-stories/731972#7319721Answer by conny for Software to manage user stories conny2009-04-08T21:40:36Z2009-04-08T21:40:36Z<p>Nearly all of the free project tools for "agile" methodologies out there do model user stories. Such as <a href="http://www.agile42.com/cms/pages/agilo/" rel="nofollow">Agilo for Scrum</a>, <a href="http://www.xplanner.org/" rel="nofollow">XPlanner</a>, and so on... And perhaps <a href="http://studios.thoughtworks.com/mingle-agile-project-management" rel="nofollow">Mingle</a>, but that is not <em>free</em>.</p>
<p>(-or does "capturing stories" mean something else in your context, other than short pieces of prose?)</p>
http://stackoverflow.com/questions/595490/are-there-any-open-source-cross-platform-nat-punch-throughs/683192#6831920Answer by conny for Are there any open source cross platform NAT punch throughs?conny2009-03-25T19:57:30Z2009-03-25T19:57:30Z<p>I haven't got an answer here I'm afraid, but I do know that a couple of years ago there was some research done in area that ended up spawning some IETF documents. The curious reader might already be familiar with these:</p>
<ul>
<li><a href="http://tools.ietf.org/html/draft-ietf-behave-rfc3489bis-18" rel="nofollow">http://tools.ietf.org/html/draft-ietf-behave-rfc3489bis-18</a></li>
<li><a href="http://tools.ietf.org/html/draft-ietf-behave-turn-13" rel="nofollow">http://tools.ietf.org/html/draft-ietf-behave-turn-13</a></li>
<li>possibly <a href="http://tools.ietf.org/html/draft-ietf-mmusic-ice-19" rel="nofollow">http://tools.ietf.org/html/draft-ietf-mmusic-ice-19</a></li>
<li>(...<em>your-link-here</em>: some research that I probably have missed)</li>
</ul>
http://stackoverflow.com/questions/277256/cancel-a-css-declaration/277350#2773501Answer by conny for Cancel a CSS declarationconny2008-11-10T08:20:21Z2008-11-10T08:20:21Z<p>Give up and use a snippet of javascript to detect the style of the parent and set it? :)</p>
http://stackoverflow.com/questions/263380/showing-too-much-skin-detection-in-software/263519#26351910Answer by conny for Showing too much 'skin' detection in softwareconny2008-11-04T21:32:26Z2008-11-08T21:08:23Z<p>I would say your answer lies in <strong>crowdsourcing</strong> the task. This almost always works and tends to scale <em>very</em> well. </p>
<p>It doesn't have to involve making some users into "admins" and coming up with different permissions - it can be as simple as to enable an "inappropriate" link near each image and keeping a count.</p>
http://stackoverflow.com/questions/204616/how-to-migrate-all-urls-in-svnexternals-properties-across-a-repository/204736#2047360Answer by conny for How to migrate all URLs in svn:externals properties across a repository?conny2008-10-15T13:40:57Z2008-10-15T13:40:57Z<p>You could:</p>
<p>a) check out the old revision, and change your hosts-file to point the old name to the new address, then svn update. In case the URL-path also changed... well then you might as well:</p>
<p>b) take the time to write a script that find the properties in the current (old revision-) working copy and changes the URLs there, without committing them. OR:</p>
<p>c) make a note of the revision(-s) where you checked in the new property values, check out the old version, and simply do a merge those revisions (-that only affect the properties) into your working copy. </p>
<p>d) or, possibly, use svndump to dump the repository data, string-replace the URL in the dump, then restore it.. I would not give you any guarantee that that even works ;-)</p>
http://stackoverflow.com/questions/195177/how-to-update-contacts-in-zimbra-by-scripting/204671#2046710Answer by conny for How to update contacts in Zimbra by scripting ?conny2008-10-15T13:20:50Z2008-10-15T13:20:50Z<p>There's actually also a SOAP interface in Zimbra but from what I've been able to tell by reading the forums at <a href="http://www.zimbra.com/forums/" rel="nofollow">zimbra.com/forums</a>, for some reason they "could not" (?!) document it properly, nor generate any WSDL file; thus I've never used it. </p>
<p>Apparently one would have to study the Java source code of Zimbra to see what's available.</p>
http://stackoverflow.com/questions/200447/tracd-realm/202838#2028380Answer by conny for Tracd Realmconny2008-10-14T21:07:02Z2008-10-14T21:07:02Z<p>The text referred to says that you must specify the realm name as "trac", not "<strong>T</strong>rac", but I have no chance of testing whether that makes any difference, sorry.</p>
http://stackoverflow.com/questions/180893/solo-software-engineering-in-foss-projects/195551#1955510Answer by conny for Solo Software Engineering in FOSS projectsconny2008-10-12T14:31:27Z2008-10-12T14:31:27Z<p>Perhaps you could also claim that there's some "methodology" involved when it comes to <em>bootstrapping</em> an open source project. Most successful small open projects grow according to the <a href="http://en.wikipedia.org/wiki/Snowball_effect" rel="nofollow">snowball effect</a>. </p>
<p>In practice: keep your head cold and don't bother to "open source" until you have at least <em>some</em> assets to share. You'll only be wasting your time on setting up the infrastructure if your source code repository is <em>empty</em>. </p>
<p>The other way around is usually more effective IMHO: start with a repository. Hack away solo and use it to "pre-bake" your project. Then, after a while, go publicize your intents and switch to a public repository.</p>
<p>In the other case, when you can't create anything tangible yet - starting with a blog can help you get accumulate ideas, motivation and attention.</p>
http://stackoverflow.com/questions/195353/where-to-find-a-good-reference-when-choosing-a-database/195430#1954304Answer by conny for Where to find a good reference when choosing a database?conny2008-10-12T12:26:17Z2008-10-12T12:26:17Z<p>Someone recently recommended me <a href="http://www.wikivs.com/wiki/MySQL_vs_PostgreSQL" rel="nofollow">wikivs.com: MySQL vs. PostgreSQL</a> - it is a quite detailed comparison of those two, and might be of help to you.</p>
http://stackoverflow.com/questions/21486/programming-tech-documentaries/191802#1918023Answer by conny for Programming / Tech Documentariesconny2008-10-10T15:14:28Z2008-10-10T15:14:28Z<p><a href="http://www.bbsdocumentary.com/" rel="nofollow">BBS: The Documentary</a></p>
<p>Kind of US-centric in its perspective, but the Fidonet parts are really interesting.</p>
http://stackoverflow.com/questions/182641/how-do-i-display-the-first-letter-as-uppercase/182870#1828701Answer by conny for How do I display the first letter as uppercase?conny2008-10-08T13:53:06Z2008-10-10T15:05:58Z<p>Combining PHP shorthand functions <a href="http://php.net/strtolower" rel="nofollow">strtolower</a> and <a href="http://php.net/ucwords" rel="nofollow">ucwords</a> solves your problem:</p>
<pre><code>function ucname($f, $l)
{
return ucwords(strtolower($f." ".$l));
}
echo ucname($fname, $lname);
</code></pre>
<p>On a side note, keep in mind that you can do that sort of data beautification at many different stages: </p>
<ol>
<li>before insertion, in your application</li>
<li>during insertion, with string functions in the SQL insert/update query</li>
<li>during extraction, with string functions in the SQL select query</li>
<li>after extraction, in your application</li>
</ol>
http://stackoverflow.com/questions/153812/subversion-is-trunk-really-the-best-place-for-the-main-development/157722#1577221Answer by conny for Subversion - is trunk really the best place for the main development?conny2008-10-01T13:58:11Z2008-10-01T13:58:11Z<p>Another example of when the good old "stable trunk, dev in branch" process becomes an issue:</p>
<p>You're developing a web application that depends on a lot of live, possibly user-contributed, data. You can for some reason <strong>not</strong> just generate another instance of the database backend(-s) or external filesystems that you depend on. (For example, your environment might be lacking data model migrations)</p>
<p>Team A has been developing a new feature F in /branches/F. Team B just started another branch to fix some performance issues that occur on the live site in /branches/P, and the <em>first thing</em> Team B needs to do is refactor a bunch of the database tables and/or how files are laid out on the external filesystem. This causes Team A to have to refactor a lot of their new stuff before they can continue development. Then Team C comes in and does another thing... And suddenly everyone's got an issue. </p>
<p>Then comes the merge phase - and after that nobody ever want's to use TortoiseSVN anymore.</p>
http://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard/156676#1566760Answer by conny for Regexp recognition of email address hard?conny2008-10-01T08:13:35Z2008-10-01T08:13:35Z<p>Adding to <strong>Wayne</strong>s answer, there is also a section on <a href="http://www.regular-expressions.info/email.html" rel="nofollow">www.regular-expressions.info</a> dedicated to email, with a few samples.</p>
<p>You can always question whether it's worth it or if in fact <em>any</em> less-than-100%-covering regexp only contributes to a false sense of security. </p>
<p>In the end, actually <em>sending</em> the email is what will provide the real final validation. (-you'll find out if your mailserver has bugs;-)</p>
http://stackoverflow.com/questions/56011/single-quotes-vs-double-quotes-in-python/144163#1441632Answer by conny for Single quotes vs. double quotes in Pythonconny2008-09-27T18:07:24Z2008-09-27T22:02:36Z<p>Quoting the official docs at <a href="http://docs.python.org/ref/strings.html" rel="nofollow">http://docs.python.org/ref/strings.html</a>:</p>
<blockquote>
<p>In plain English: String literals can be enclosed in matching single quotes (') or double quotes (").</p>
</blockquote>
<p>So there is no difference. Instead, people will tell you to choose whichever style that matches the context, <em>and to be consistent</em>. And I would agree - adding that it is pointless to try to come up with "conventions" for this sort of thing because you'll only end up confusing any newcomers.</p>
http://stackoverflow.com/questions/1813049/how-to-retain-array-in-javascript/1813068#1813068Comment by conny on How to retain array in javascript?conny2009-11-28T17:13:14Z2009-11-28T17:13:14ZOh come on. That's like saying "you should do the right thing" without saying what the right thing is.http://stackoverflow.com/questions/1797553/what-are-the-biggest-hurdles-to-overcome-from-being-a-desktop-programmer-to-a-webComment by conny on what are the biggest hurdles to overcome from being a desktop programmer to a web programmer?conny2009-11-25T15:38:18Z2009-11-25T15:38:18ZLOL desktop programmer, that's a great term! They generally weigh more than the laptop programmers I assume :-Dhttp://stackoverflow.com/questions/1787079/do-you-actually-remember-all-of-the-different-ways-to-progam-via-many-apisComment by conny on Do you actually remember all of the different ways to progam via many API'sconny2009-11-25T15:33:41Z2009-11-25T15:33:41ZIf I had enough rep I would tag this [subjective]. Interesting question though.http://stackoverflow.com/questions/1747831/ajax-code-not-able-to-call-a-php-fileComment by conny on AJAX code not able to call a .php file.conny2009-11-17T10:28:10Z2009-11-17T10:28:10Z..and/or pop open the javascript console of your browser and tell us if there's an error message there.http://stackoverflow.com/questions/1714358/mls-how-is-differ-two-mls-data-get-from-rets-serverComment by conny on MLS - How is differ two MLS Data get from RETS server?conny2009-11-11T10:50:43Z2009-11-11T10:50:43ZI would suggest that you start by better tagging your quesion - why not "mls" for example...http://stackoverflow.com/questions/104355/bioinformatics-job-opportunities/104409#104409Comment by conny on Bioinformatics: job opportunities?conny2009-11-04T16:56:34Z2009-11-04T16:56:34Z...and the last two bullets in that list probably comprise another very practical and relevant area: lab asset management!http://stackoverflow.com/questions/1112444/perl-equivalent-of-python-list-comprehensionComment by conny on Perl equivalent of (Python-) list comprehensionconny2009-10-23T09:03:02Z2009-10-23T09:03:02ZHmm. In hindsight that <i>does</i> sound quite ambiguous. I guess that by "I want the keys" I referred to "I want them - so that I can filter them out" but the question that got answered was the right one: how to do pick certain stuff out of a collection in a one liner. Sorry :)http://stackoverflow.com/questions/1454243/use-pregmatch-to-find-if-string-contains-script-tags/1454258#1454258Comment by conny on Use preg_match to find if string contains script-tagsconny2009-09-21T12:26:47Z2009-09-21T12:26:47ZThe question simply says "string", which does not necessarily imply that there is a document structure...http://stackoverflow.com/questions/15995/useful-code-which-uses-reduce-in-python/280242#280242Comment by conny on Useful code which uses reduce() in pythonconny2009-07-28T09:48:38Z2009-07-28T09:48:38ZWhy did you append the ", 0" in the last example? To be able to handle the eventuality of an empty list, or are there other reasons?http://stackoverflow.com/questions/15995/useful-code-which-uses-reduce-in-pythonComment by conny on Useful code which uses reduce() in pythonconny2009-07-28T09:29:36Z2009-07-28T09:29:36ZGreat question, I'm learning a lot here from reading the comments :o)http://stackoverflow.com/questions/1112444/perl-equivalent-of-python-list-comprehension/1112462#1112462Comment by conny on Perl equivalent of (Python-) list comprehensionconny2009-07-13T09:17:06Z2009-07-13T09:17:06ZYeah the two proposed solutions are very similar, but I think the note about undef was helpful, so I'll go with the majority vote. Thanks, all!
http://stackoverflow.com/questions/288968/can-i-use-named-groups-in-a-perl-regex-to-get-the-results-in-a-hashComment by conny on Can I use named groups in a Perl regex to get the results in a hash?conny2009-07-11T20:24:48Z2009-07-11T20:24:48ZFor search engine findability:
named groups are sometimes also referred to as "symbolic group names".http://stackoverflow.com/questions/1013084/django-stops-printing-to-stdoutComment by conny on Django stops printing to stdoutconny2009-06-23T15:06:46Z2009-06-23T15:06:46ZWhat is the python version you're using?http://stackoverflow.com/questions/867796/internet-explorer-ignoring-my-cookies/1033017#1033017Comment by conny on Internet Explorer ignoring my cookiesconny2009-06-23T14:45:30Z2009-06-23T14:45:30ZI assumed that there would be a question about IE and two-letter domains on S.O. already, but in that case I wasn't able to find it.http://stackoverflow.com/questions/959221/remove-the-space-between-checkboxesComment by conny on Remove the space between checkboxesconny2009-06-06T14:01:30Z2009-06-06T14:01:30ZThis <i>could</i> be a pretty tough question to answer because of differences between web browsers - I say could because you have provided quite little information about your context, say:
* what browser are you using?
* what doctype declaration did you use?
* ...is the page rendering in quirks mode?
* are you striving for cross browser compatibility?