User Daniel Straight - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T10:34:49Zhttp://stackoverflow.com/feeds/user/65393http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1790135/is-there-a-built-in-way-to-replace-the-text-of-a-link-in-a-linklabel-and-have-the0Is there a built-in way to replace the text of a link in a LinkLabel and have the other links automatically adjust so they stay on the same text?Daniel Straight2009-11-24T13:39:48Z2009-11-24T15:11:07Z
<p>In other words, if I have:</p>
<pre><code>var ll = new LinkLabel();
ll.Text = "Some links go here.";
ll.Links.Add(0, 4); // Some
ll.Links.Add(11, 2); // go
</code></pre>
<p>Is there any method I can call to replace the text of the "Some" link with something else while keeping the "go" link the same.</p>
<p>I only want to know if there is a built-in method. This is not hard to code, I just don't want to reinvent the wheel.</p>
<p>I have, of course, consulted the LinkLabel documentation but sometimes methods hide in unexpected places.</p>
http://stackoverflow.com/questions/1772992/how-should-i-set-up-a-user-control-to-fire-events-of-its-children-as-if-they-were1How should I set up a user control to fire events of its children as if they were its own?Daniel Straight2009-11-20T20:16:52Z2009-11-22T17:57:58Z
<p>In other words, I have a UserControl that has, for example, a label on it. Well, when the client registers with the MouseMove event of the UserControl, it should get that event whether the mouse is over the label or somewhere else on the UserControl. What would be the best way to set this up?</p>
<p>C#</p>
http://stackoverflow.com/questions/17586/best-word-wrap-algorithm/857770#8577704Answer by Daniel Straight for Best word wrap algorithm?Daniel Straight2009-05-13T12:49:44Z2009-11-19T02:27:40Z<p>I don't know if anyone will ever read this seeing how old this question is, but I had occasion to write a word wrap function recently, and I want to share what I came up with. I used a TDD approach almost as strict as the one from the <a href="http://gojko.net/2009/02/27/thought-provoking-tdd-exercise-at-the-software-craftsmanship-conference/" rel="nofollow">Go example</a>. I started with the test that wrapping the string "Hello, world!" at 80 width should return "Hello, World!" Clearly, the simplest thing that works is to return the input string untouched. Starting from that, I made more and more complex tests and ended up with a recursive solution that (at least for my purposes) quite efficiently handles the task.</p>
<p>Pseudocode for the recursive solution:</p>
<pre>
Function WordWrap (inputString, width)
Trim the input string of leading and trailing spaces.
If the trimmed string's length is <= the width,
Return the trimmed string.
Else,
Find the index of the last space in the trimmed string, starting at width
If there are no spaces, use the width as the index.
Split the trimmed string into two pieces at the index.
Trim trailing spaces from the portion before the index,
and leading spaces from the portion after the index.
Concatenate and return:
the trimmed portion before the index,
a line break,
and the result of calling WordWrap on the trimmed portion after
the index (with the same width as the original call).
</pre>
<p>This only wraps at spaces, and if you want to wrap a string that already contains line breaks, you need to split it at the line breaks, send each piece to this function and then reassemble the string. Even so, in VB.NET running on a fast machine, this can handle about 20 mb/sec.</p>
http://stackoverflow.com/questions/1732218/is-there-a-language-and-platform-agnostic-declarative-gui-language-that-isnt-xml1Is there a language and platform agnostic declarative GUI language that isn't XML?Daniel Straight2009-11-13T22:09:20Z2009-11-13T22:20:36Z
<p>Basically, I'm looking for a least common denominator declarative GUI language that would be perfectly suitable for rendering with JavaScript to HTML/CSS, with Python to wxPython and with C# to WinForms... emphasis on the least common denominator. Otherwise, I'm perfectly aware this is almost impossible. Basically, JSON for declarative GUIs rather than data.</p>
<p>Oh yeah, and the real kicker: no XML. Period. Ideally, the syntax would be something like Markdown where it doesn't look like code.</p>
<p>If you don't know of any such thing, you can just post some ideas on what you think it should look like and how you think it should (or could) work, because I was planning on creating one myself. I'm just making sure I'm not reinventing the wheel.</p>
http://stackoverflow.com/questions/1713053/more-fun-with-stupid-firebug-errors0More fun with stupid Firebug errorsDaniel Straight2009-11-11T04:40:32Z2009-11-11T14:59:13Z
<p>test.html:</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd"
xml:lang="en">
<head><title>Test</title></head>
<body>
<script language="javascript" type="text/javascript" src="test.js"></script>
</body>
</html>
</code></pre>
<p>test.js:</p>
<pre><code>var a = 4;
</code></pre>
<p>Firebug:</p>
<pre><code>syntax error
var a = 4;
^
</code></pre>
<p>Anyone?</p>
http://stackoverflow.com/questions/1695585/what-kind-of-database-would-be-best-suited-to-maintaining-a-relatively-large-list0What kind of database would be best suited to maintaining a relatively large list of items with a counter for each item that is updated often in real time?Daniel Straight2009-11-08T06:40:13Z2009-11-08T12:10:05Z
<p>Let's pretend it's for word frequency counts in a web crawler. Is relational the way to go (I'm imagining a simple two-column table) or is there a NoSQL option better suited to this task?</p>
<p>When I say better, I mean more conceptually suited to the task. I'm not really concerned with scalability, just simplicity and an obvious conceptual mapping to the task at hand. In the way that, for me at least, CouchDB maps much more sensibly to a blog than MySQL does.</p>
http://stackoverflow.com/questions/1670927/javascript-not-well-formed-error-in-for-loop2Javascript not-well formed error in for loopDaniel Straight2009-11-03T23:54:59Z2009-11-04T00:10:56Z
<p>I copied this code from an <a href="http://www.lazycoder.com/weblog/2009/08/12/a-simple-map-function-for-plain-javascript-arrays/" rel="nofollow">example</a>. I've read it 100 times.</p>
<pre><code>Array.prototype.map = function(fn) {
var r = [];
var l = this.length;
for(var i = 0; i < l; i++) {
r.push(fn(this[i]));
}
return r;
};
</code></pre>
<p>Why does Firefox say:</p>
<pre><code>not well-formed
file:///some/path.html Line: 5
for(var i = 0; i < l; i++) {
-------------------^
</code></pre>
<p><strong>UPDATE</strong></p>
<p>The error is only shown when Firebug is turned on for the page.</p>
http://stackoverflow.com/questions/1643260/using-the-browser-for-desktop-ui2Using the browser for desktop UIDaniel Straight2009-10-29T12:07:36Z2009-10-30T02:04:52Z
<p>How can I use the browser as a UI for a desktop app? The ways I have come up with so far are...</p>
<ol>
<li>Use all HTML/Javascript. Problem: Can't access filesystem or just about anything else.</li>
<li>Run a local webserver while the application is in use. Problem: How do I kill it when the user is done? My users are not technical enough to Ctrl+C.</li>
<li>Embed a browser component in a regular GUI. Problem: Embedded browser components tend to be glitchy at best. The support for Javascript/CSS is never as good as it is in a real browser.</li>
<li>...?</li>
</ol>
<p>The ideal solution would work with any technology. I know there are options like writing Firefox extensions, but I want to have complete freedom in the backend technology and browser independence.</p>
http://stackoverflow.com/questions/1645758/how-can-i-cause-anchored-child-controls-to-resize-themselves0How can I cause anchored child controls to resize themselves?Daniel Straight2009-10-29T18:43:35Z2009-10-29T19:18:23Z
<p>C#. I'm filling a panel with controls such that a scrollbar comes up. When the scrollbar shows up, I would like the controls (anchored top|left|right) to resize so they aren't covered by the scrollbar. If I make the form bigger and then smaller again, they resize properly, but I don't know how to make them do this sizing when the scrollbar shows up.</p>
http://stackoverflow.com/questions/1645302/non-obtrusive-version-control/1645314#16453143Answer by Daniel Straight for Non-obtrusive version controlDaniel Straight2009-10-29T17:27:00Z2009-10-29T17:34:26Z<p>Bazaar has just a .bzr directory at the top level. It also works on all platforms natively (Git is still somewhat hokey on Windows). I find it simpler than Git too.</p>
<p>Community wiki so others can add more info about Bazaar.</p>
<p>These guides should help you get started with bazaar:</p>
<p><a href="http://doc.bazaar-vcs.org/latest/en/mini-tutorial/index.html" rel="nofollow">Bazaar in five minutes</a> </p>
<p><a href="http://doc.bazaar-vcs.org/latest/en/user-guide/index.html" rel="nofollow">Bazaar User Guide</a></p>
http://stackoverflow.com/questions/1645192/what-to-replace-frontpage-with/1645296#16452962Answer by Daniel Straight for What to replace FrontPage with?Daniel Straight2009-10-29T17:23:10Z2009-10-29T17:23:10Z<p>Something to consider is that you could deploy these sites as wikis (which don't have to be publically editable) and edit them directly on the web in your browser. This would give you the ability to click around and do pretty much wysiwyg edits. It would also make it easier to maintain larger collections of data and to make new pages. You also don't really have to do any HTML at all because wikis mostly come pre-HTMLed (and CSSed and Javascripted), you just need to fill in the content.</p>
<p>I should note that this won't work if your webpages are deployed statically on a restrictive shared hosting account, but even most shared hosting supports installing things like wikis these days, so hopefully this is something you can look into.</p>
<p>I should also note that this probably isn't the best way to do local HTML help files, but if the HTML help is online, this is probably still a good choice.</p>
<p>I'm making this community wiki so others can add links to other wikis if they like or add more info on why you might want to or not want to use a wiki for this purpose.</p>
<p>Some wikis to consider:</p>
<ul>
<li><a href="http://www.mediawiki.org/wiki/MediaWiki" rel="nofollow">MediaWiki</a> - The wiki behind wikipedia</li>
<li><a href="http://moinmo.in/" rel="nofollow">MoinMoin</a> - Implemented in Python and popular in that community.</li>
<li><a href="http://www.tiddlywiki.com/" rel="nofollow">TiddlyWiki</a> - Implemented in Javascript and runs on a single page. This is probably the most <em>different</em> wiki that's out there. Some love it, some hate it.</li>
</ul>
http://stackoverflow.com/questions/1645110/whats-the-best-library-to-implement-photo-gallery/1645133#1645133-1Answer by Daniel Straight for What's the best library to implement photo gallery?Daniel Straight2009-10-29T16:58:13Z2009-10-29T16:58:13Z<p>Let me preface by saying, that I understand your question to mean you want to <em>implement</em> a photo gallery system. If instead you are looking for a ready-made photo gallery system to <em>deploy</em>, ignore my answer. I have a way of misreading questions, but yours is especially unclear.</p>
<p>jQuery. If you don't know what you want, just pick the most popular. You aren't in a position yet to make a more informed decision. I don't mean this to be rude, but it sounds like you're coming at this from a position of inexperience, so it's best just to start where there's the most written and the most support. Right now, that's jQuery. If you are more experienced, please give some more details to your question so people can make an informed recommendation. </p>
http://stackoverflow.com/questions/1644415/repainting-bug-in-wxpython-when-resizing-straight-down-with-a-scrolledwindow-scro0Repainting bug in wxPython when resizing straight down with a ScrolledWindow scrolled to the bottomDaniel Straight2009-10-29T15:10:52Z2009-10-29T15:10:52Z
<p>I cannot produce a smaller example than my real application that reproduces the bug, so I'm just going to show a video and hope someone has an idea. I can test any ideas you have and let you know if they work.</p>
<p><a href="http://dl.getdropbox.com/u/2686961/wxbug.avi" rel="nofollow">http://dl.getdropbox.com/u/2686961/wxbug.avi</a></p>
http://stackoverflow.com/questions/1643362/killing-python-webservers1Killing Python webserversDaniel Straight2009-10-29T12:26:51Z2009-10-29T13:33:47Z
<p>I am looking for a simple Python webserver that is easy to kill from within code. Right now, I'm playing with Bottle, but I can't find any way at all to kill it in code. If you know how to kill Bottle (in code, no Ctrl+C) that would be super, but I'll take anything that's Python, simple, and killable.</p>
http://stackoverflow.com/questions/1626631/would-it-be-a-good-idea-or-bad-idea-to-connect-a-vb-net-frontend-with-a-python-ba1Would it be a good idea or bad idea to connect a VB.NET frontend with a Python backend using sockets?Daniel Straight2009-10-26T18:47:40Z2009-10-27T14:42:02Z
<p>I have some really nice Python code to do what I need to do. I don't particularly like any of the Python GUI choices though. wxPython is nice, but for what I need, the speed on resizing, refreshing and dynamically adding controls just isn't there. I would like to create the GUI in VB.NET. I imagine I could use IronPython to link the two, but that creates a dependency on a rather large third-party product. I was perusing the MSDN documentation on Windows IPC and got the idea to use sockets. I copied the Python echo server code from the Python documentation and in under 5 minutes was able to create a client in VB.NET without even reading the System.Net.Sockets documentation, so this certainly doesn't seem too hard.</p>
<p>The question I have is... is this a terrible idea? If so, what should I be doing instead?</p>
<p>If this is a good idea, how do I go about it?</p>
http://stackoverflow.com/questions/1578395/where-should-i-check-state-throw-exception1Where should I check state / throw exception?Daniel Straight2009-10-16T14:28:38Z2009-10-16T17:57:13Z
<p>My situation is something like this:</p>
<pre><code>class AbstractClass:
def __init__(self, property_a):
self.property_a = property_a
@property
def some_value(self):
"""Code here uses property_a but not property_b to determine some_value"""
@property
def property_a(self):
return self.property_a
@property
def property_b(self):
"""Has to be implemented in subclass."""
raise NotImplementedError
class Concrete1(AbstractClass):
"""Code here including an implementation of property_b"""
class Concrete2(AbstractClass):
"""Code here including an implementation of property_b"""
</code></pre>
<p>There is also a condition that if <code>property_b</code> is less than <code>property_a</code>, then <code>property_a</code> is invalid and thus the result of <code>some_value</code> is also invalid.</p>
<p>What I mean is this... if at any time during the object's lifetime, calling <code>property_b</code> would yield a number lower than calling <code>property_a</code>, there's a problem. However, property_b is <strong>not a field</strong>. It is determined dynamically based on <em>n</em> fields, where <em>n</em> >= 1. It is impossible to check this condition while setting <code>property_b</code> because <code>property_b</code> itself is never set. Really, setters are not anticipated to be used <em>anywhere</em> here. All fields are likely to be set in the constructors and then left alone. This means that <code>property_a</code> will be known in the constructor for <code>AbstractClass</code> and <code>property_b</code> only <em>after</em> evaluating the constructor for the concrete classes.</p>
<p><strong><update></strong><br />
The fundamental problem is this: I need to check <code>property_a</code> for validity, but when <code>property_a</code> is set (the most intuitive place to check it), <code>property_b</code> is undefined.<br />
<strong></update></strong></p>
<p>I want to ensure that <code>property_b</code> is never less than <code>property_a</code>. How should I handle it?</p>
<p>Check <code>property_a</code> against <code>property_b</code> in...</p>
<ol>
<li><code>AbstractClass.__init__</code>. This is actually impossible because <code>property_b</code> hasn't been defined yet.</li>
<li><code>AbstractClass.property_a</code>. This seems problematic because I would be throwing an exception in a getter.</li>
<li>Each concrete implementation of <code>property_b</code>. Not only would I be throwing an exception in a getter, I would be duplicating code. Also <code>property_b</code> does not logically depend on <code>property_a</code>.</li>
<li><code>AbstractClass.some_value</code>. This is still throwing an exception in a getter. Also, it is logically impossible for <code>property_b</code> to be less than <code>property_a</code> <em>all the time</em>, not just when trying to determine <code>some_value</code>. Further, if subclasses decide to add other properties that depend on <code>property_a</code>, they may forget to check it against <code>property_b</code>.</li>
<li>Concrete setters for <code>property_b</code>. These don't exist. <code>property_b</code> is sometimes determined from a value set in the constructor, sometimes calculated from multiple values. Also, code duplication.</li>
<li>Concrete class <code>__init__</code> methods. Code duplication. Someone may forget.</li>
<li>???</li>
</ol>
<p><strong>UPDATE</strong></p>
<p>I think what is causing confusion is that <code>property_b</code> is not simply a field. <code>property_b</code> relies on calculations. It is really more a function than a property, if it helps to think about it that way.</p>
http://stackoverflow.com/questions/1556766/should-you-import-all-classes-you-use-in-python1Should you import all classes you use in Python?Daniel Straight2009-10-12T20:35:36Z2009-10-12T21:16:22Z
<p>Python's lack of static typing makes it possible to use and rely on classes without importing them. Should you import them anyway? Does it matter?</p>
<h3>Example</h3>
<p><strong>someclass.py</strong></p>
<pre><code>class SomeClass:
def __init__(self, some_value):
self.some_value = some_value
</code></pre>
<p><strong>someclient.py</strong></p>
<pre><code>class SomeClient:
def __init__(self, some_class_instance):
self.some_class_helper = some_class_instance
</code></pre>
<p>Here, the functionality of <code>SomeClient</code> clearly relies on <code>SomeClass</code> or at least something that behaves like it. However, someclient.py will work just fine without <code>import someclass</code>. Is this ok? It feels wrong to use something without saying anywhere that you're even using it.</p>
http://stackoverflow.com/questions/1552672/what-is-reading-source-on-an-ebook-reader-like1What is reading source on an ebook reader like?Daniel Straight2009-10-12T04:15:43Z2009-10-12T05:14:29Z
<p>There are a few open source projects I would really like to read through the code of to understand better / improve on. The problem is, for me, reading for a long time on the computer screen is tedious. I would love to be able to read code while lounging around and on a screen that was better on my eyes. Has anyone ever tried reading code on an ebook reader? It seems like the e-ink would make it easy on the eyes, plus it would be portable, plus it wouldn't kill any trees. In other words, it sounds perfect, but before I drop a couple benjamins on an ebook reader, I'd like to hear if anyone else has tried this and how it went.</p>
<p>It seems <a href="http://www.hanselman.com/blog/AYearWithAnAmazonKindleAndNewKindleCases.aspx" rel="nofollow">Scott Hanselman discussed using the Kindle to read code</a>, but I wouldn't necessarily want a Kindle. Has anyone had a positive experience with some other device?</p>
<p>I realize this is not directly about programming, but it relates directly to my ability to improve my skills. I think if a good portable reading device for code exists, it could help a lot of programmers.</p>
http://stackoverflow.com/questions/1504835/yet-another-could-not-load-file-or-assembly-or-one-of-its-dependencies-the0Yet another "could not load file or assembly ... or one of its dependencies. The system cannot find the file specified"Daniel Straight2009-10-01T16:00:33Z2009-10-02T15:34:46Z
<p>I have a dll with NUnit tests that had been working fine. I converted it from an Any CPU to an x86 project because I need to use SQLite reliably across different platforms, so I need to include the 32-bit System.Data.SQLite.dll and let everything reference that.</p>
<p>Anyway, after conversion, NUnit gives that error when trying to load the dll.</p>
<p>I don't think this will be enlightening at all, but here is the stack trace:</p>
<pre>System.IO.FileNotFoundException: Could not load file or assembly ... or one of its dependencies. The system cannot find the file specified"
Server stack trace:
at System.Reflection.Assembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection)
at System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection)
at System.Reflection.Assembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection)
at System.Reflection.Assembly.Load(String assemblyString)
at NUnit.Core.Builders.TestAssemblyBuilder.Load(String path)
at NUnit.Core.Builders.TestAssemblyBuilder.Build(String assemblyName, Boolean autoSuites)
at NUnit.Core.Builders.TestAssemblyBuilder.Build(String assemblyName, String testName, Boolean autoSuites)
at NUnit.Core.TestSuiteBuilder.BuildSingleAssembly(TestPackage package)
at NUnit.Core.TestSuiteBuilder.Build(TestPackage package)
at NUnit.Core.SimpleTestRunner.Load(TestPackage package)
at NUnit.Core.ProxyTestRunner.Load(TestPackage package)
at NUnit.Core.ProxyTestRunner.Load(TestPackage package)
at NUnit.Core.RemoteTestRunner.Load(TestPackage package)
at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Int32 methodPtr, Boolean fExecuteInContext, Object[]& outArgs)
at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg, Int32 methodPtr, Boolean fExecuteInContext)
Exception rethrown at [0]:
at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
at NUnit.Core.TestRunner.Load(TestPackage package)
at NUnit.Util.TestDomain.Load(TestPackage package)
at NUnit.Util.TestLoader.LoadTest(String testName)
</pre>
<p>The dll I'm trying to test references another one in the same solution. Everything works fine when I run the GUI that this eventually all gets used in, but the tests won't load.</p>
<p><strong>Update</strong></p>
<p>The file that can't be loaded is the assembly under test, which is just MyAppName.Test.dll.</p>
http://stackoverflow.com/questions/1446672/wxpython-nested-panels-and-accelerators0wxPython, nested panels and acceleratorsDaniel Straight2009-09-18T20:28:53Z2009-09-27T14:27:21Z
<p>Accelerators on wxPython do not seem to work with nested panels. In other words:</p>
<pre> -----------------------------------------------
| Main panel |
| ----------------- ----------------- |
| | Subpanel 1 | | Subpanel 2 | |
| | accelerator | | accelerator | |
| | key for 'a' | | key for 'b' | |
| ----------------- ----------------- |
-----------------------------------------------</pre>
<p>When a control in subpanel 1 has focus, I want Alt+b to still trigger the control in subpanel 2 that uses b as its accelerator key. How do I do this?</p>
<p>If it matters, I'm loading the panel with xrc into a plain old wx.Frame.</p>
http://stackoverflow.com/questions/1469764/c-run-command-prompt-commands/1469781#14697811Answer by Daniel Straight for C# - Run Command Prompt CommandsDaniel Straight2009-09-24T04:30:48Z2009-09-24T04:30:48Z<p>Yes, there is (see link in Matt Hamilton's comment), but it would be easier and better to use .NET's IO classes. You can use File.ReadAllBytes to read the files and then File.WriteAllBytes to write the "embedded" version.</p>
http://stackoverflow.com/questions/1456409/whats-the-closest-thing-to-pyparsing-that-exists-for-net4What's the closest thing to pyparsing that exists for .NET?Daniel Straight2009-09-21T19:36:36Z2009-09-22T16:20:24Z
<p>What I'm especially interested in is the ability to define the grammar in the code as ordinary code without any unnecessary cruft.</p>
<p>I'm aware I could use IronPython. I don't want to.</p>
<p>UPDATE:</p>
<p>To further explain what I'm looking for, I'm including some sample pyparsing code. This is an incomplete parser to convert emacs shortcut keys to more conventional notation. This example is, of course, small enough that string functions would suffice, but it's just to show the cleanness and conciseness of pyparsing.</p>
<pre><code>from pyparsing import Literal, OneOrMore, Optional, Word, printables, replaceWith
CTRL_MODIFIER = Literal('C').setParseAction(replaceWith('Ctrl'))
META_MODIFIER = Literal('M').setParseAction(replaceWith('Alt'))
MODIFIER = CTRL_MODIFIER | META_MODIFIER # Note operator overloading
SEPARATOR = Literal('-').setParseAction(replaceWith('+'))
MODIFIER_LIST = OneOrMore(MODIFIER + SEPARATOR)
KEY = Word(printables) # This is a "word" composed of any number of printable characters.
# The lambda functions here just join the tokens with the literal string
# on which .join is called.
STROKE = (Optional(MODIFIER_LIST) + KEY).setParseAction(
lambda tokens: ' '.join([str(token) for token in tokens]))
BINDING = OneOrMore(STROKE).setParseAction(
lambda tokens: ', '.join([str(token) for token in tokens]))
# Example usage:
# >>> BINDING.transformString('M-/')
# Alt + /
# >>> BINDING.transformString('C-x C-f')
# Ctrl + x, Ctrl + f
# >>> BINDING.transformString('C-x f')
# Ctrl + x, f
# >>> BINDING.transformString('C-x M-c M-butterfly')
# Ctrl + x, Alt + c, Alt + butterfly
</code></pre>
<p>I would like to be able to write grammars in .NET with as much ease in as few lines.</p>
http://stackoverflow.com/questions/1442370/what-are-some-of-the-best-programming-practices/1442373#14423730Answer by Daniel Straight for What are some of the best programming practices?Daniel Straight2009-09-18T02:55:14Z2009-09-18T02:55:14Z<p>Google your questions before asking them on StackOverflow. ;)</p>
<p>Alternatively, click around here for a while:
<a href="http://c2.com/cgi/wiki" rel="nofollow">http://c2.com/cgi/wiki</a></p>
http://stackoverflow.com/questions/1402830/most-frequently-repeated-numbers-in-a-huge-list-of-numbers/1402840#14028403Answer by Daniel Straight for Most frequently repeated numbers in a huge list of numbersDaniel Straight2009-09-10T00:31:39Z2009-09-10T00:31:39Z<p>Java handles hashing. You don't need to write a hash function. Just start pushing stuff in the hash map.</p>
<p>Also, if this is something that only needs to run once (or only occasionally), then don't both optimizing. It will be fast enough. Only bother if it's something that's going to run within an application.</p>
http://stackoverflow.com/questions/1402531/deciding-on-a-language-python-or-java/1402548#14025486Answer by Daniel Straight for Deciding on a language: Python or JavaDaniel Straight2009-09-09T22:49:38Z2009-09-09T22:49:38Z<p>Obligatory <a href="http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html" rel="nofollow">TIOBE index</a> reference. Python is definitely a safe bet.</p>
http://stackoverflow.com/questions/1244946/how-do-i-control-the-overall-size-constraints-of-a-panel-with-miglayout0How do I control the overall size constraints of a panel with MigLayout?Daniel Straight2009-08-07T14:13:32Z2009-08-27T05:28:21Z
<p>I am testing out MigLayout for a project, and I can't seem to figure out the MigLayout way of controlling the size of the whole panel which is being layed out. I am adapting the example in the <a href="http://www.migcalendar.com/miglayout/whitepaper.html" rel="nofollow">MigLayout whitepaper</a>. Also, I am writing in Python and using Jython rather than writing in Java. That said, here is my current code.</p>
<pre><code>layout = MigLayout("fillx",
# Column constraints
"[right]rel[grow,fill]",
# Row constraints
"[]10[]10[]")
panel = JPanel(layout)
panel.add(JLabel("Enter size:"),
"")
panel.add(JTextField(""),
"wrap, width 150:250")
panel.add(JLabel("Enter weight:"),
"")
panel.add(JTextField(""),
"wrap, width 150:250")
panel.add(JButton("Ok"),
"span 2, align center, width 100:150")
</code></pre>
<p>The panel then goes into a JFrame for display. When I resize the frame, the controls resize nicely and obey their minimum sizes. However, there is no minimum size on the frame, nor does there seem to be any way to get to the real minimum size of the panel to set it for the frame. Asking for the panel's minimum size returns a size which, when set on the frame (plus insets), cuts off the button and half of the text fields.</p>
<p>What I want is to be able to set the minimum size for the frame (not hard-coded!) so that the panel fits and none of its controls are cut off. What is the best way to do this?</p>
http://stackoverflow.com/questions/1334308/managing-multiple-branches-in-eclipse-or-getting-a-vs-like-setup-for-eclipse0Managing multiple branches in Eclipse, or getting a VS-like setup for Eclipse.Daniel Straight2009-08-26T12:23:30Z2009-08-26T14:20:18Z
<p>In VS, it's simple. Everything the project needs is stored in the project folder and all VS settings are stored in one place. Eclipse, however, stores Eclipse settings with the project and keeps a .metadata at the workspace level which is needed to detect the projects in the workspace. Thus, I can't simply branch a project and then open it in Eclipse. I need to set up a workspace, branch it into that workspace, copy over all my workspace settings (settings import/export doesn't even work right in Eclipse) so I have the same Eclipse settings, then do some kind of import to get the project in the workspace. This is what I generally refer to as a pain in the freaking neck, and it causes me to not branch any Java projects and to keep them all in one folder. This is also a pain.</p>
<p>Is there any way I can get a setup where I can just branch a project and open it in Eclipse, while maintaining the same Eclipse settings?</p>
<p><strong>UPDATE:</strong> The current state of the question is expressed by the comment to soru's post.</p>
http://stackoverflow.com/questions/1326015/whats-the-difference-between-b-and-strong/1326020#132602015Answer by Daniel Straight for What's the difference between <b> and <strong>?Daniel Straight2009-08-25T04:23:42Z2009-08-25T04:23:42Z<p>They can. <code><strong></code> is the preferred choice, as HTML is supposed to describe what things ARE, not what they should look like. <code><strong></code> can mean different things. <code><b></code> just means bold.</p>
http://stackoverflow.com/questions/242293/are-you-a-good-or-bad-programmer/1317652#1317652-1Answer by Daniel Straight for Are you a good or bad programmer?Daniel Straight2009-08-23T03:01:20Z2009-08-23T03:01:20Z<p>Yes. </p>
http://stackoverflow.com/questions/1312774/log4j-with-third-party-initialized-jvm-multiple-jar-files-and-jython0log4j with third-party-initialized JVM, multiple JAR files and JythonDaniel Straight2009-08-21T15:46:31Z2009-08-21T16:30:46Z
<p>I have a mess I would like to attach log4j logging to. Let me try to explain the process.</p>
<ol>
<li>Third-party application launches a JVM and loads <em>Main.jar</em>. <em>Main.jar</em> includes a properties file for log4j logging and code to read it in with a <code>PropertyConfigurator</code>. Logging in <em>Main.jar</em> works.</li>
<li>Later, third-party application loads <em>JythonApp.jar</em>.</li>
<li><em>JythonApp.jar</em> starts up a Jython interpreter and runs a script which uses classes from <em>Main.jar</em>, included by appending the <em>Main.jar</em> to <code>sys.path</code>. This is where the logging fails. The classes used by the Jython script have logging calls, but they do not log.</li>
</ol>
<p>Any ideas how to make this all work? If you need more information, I will certainly understand and happily provide it.</p>
http://stackoverflow.com/questions/1775727/delete-all-files-if-another-files-in-the-same-directory-has-a-matching-occurenceComment by Daniel Straight on Delete all files if another files in the same directory has a matching occurence of a specific wordDaniel Straight2009-11-21T15:14:17Z2009-11-21T15:14:17ZAlso, are you going to feed the search string to the script or is it going to be looking for any string that occurs in multiple files.http://stackoverflow.com/questions/1775727/delete-all-files-if-another-files-in-the-same-directory-has-a-matching-occurenceComment by Daniel Straight on Delete all files if another files in the same directory has a matching occurence of a specific wordDaniel Straight2009-11-21T15:13:38Z2009-11-21T15:13:38ZHow do you determine which 2 of the 3 files to delete?http://stackoverflow.com/questions/1772992/how-should-i-set-up-a-user-control-to-fire-events-of-its-children-as-if-they-were/1773218#1773218Comment by Daniel Straight on How should I set up a user control to fire events of its children as if they were its own?Daniel Straight2009-11-20T21:19:35Z2009-11-20T21:19:35ZAwesome. Much simpler than I expected.http://stackoverflow.com/questions/547172/c-pass-through-mouse-events-to-parent-controlComment by Daniel Straight on c# pass through mouse events to parent controlDaniel Straight2009-11-19T16:36:35Z2009-11-19T16:36:35ZIt is also somewhat unclear to me what you mean by "pass through."http://stackoverflow.com/questions/547172/c-pass-through-mouse-events-to-parent-controlComment by Daniel Straight on c# pass through mouse events to parent controlDaniel Straight2009-11-19T16:35:12Z2009-11-19T16:35:12ZIs that the correct error message for this code? One is MouseUp the other is MouseDown.http://stackoverflow.com/questions/1746177/ruby-how-to-know-if-script-is-on-3rd-retryComment by Daniel Straight on ruby: how to know if script is on 3rd retry ?Daniel Straight2009-11-17T02:13:11Z2009-11-17T02:13:11ZInstead of retry, put the thing in a 3.times loop?http://stackoverflow.com/questions/1732218/is-there-a-language-and-platform-agnostic-declarative-gui-language-that-isnt-xml/1732263#1732263Comment by Daniel Straight on Is there a language and platform agnostic declarative GUI language that isn't XML?Daniel Straight2009-11-13T23:19:27Z2009-11-13T23:19:27ZHTML is essentially XML and the problem with wiki markup languages is that they don't include things like text boxes and drop-down boxes and buttons, nor ways to lay out forms usually.http://stackoverflow.com/questions/1713053/more-fun-with-stupid-firebug-errors/1715717#1715717Comment by Daniel Straight on More fun with stupid Firebug errorsDaniel Straight2009-11-12T00:51:31Z2009-11-12T00:51:31ZThe language="javascript" was doing it. Thanks.http://stackoverflow.com/questions/1713053/more-fun-with-stupid-firebug-errorsComment by Daniel Straight on More fun with stupid Firebug errorsDaniel Straight2009-11-11T05:36:15Z2009-11-11T05:36:15ZThat's the entire source. Be sure Firebug is active for scripts before refreshing and checking the error console.http://stackoverflow.com/questions/1705516/flexibility-or-consistency-which-is-correct-for-a-good-programming-languageComment by Daniel Straight on Flexibility or Consistency, which is Correct for a good programming language?Daniel Straight2009-11-10T04:08:35Z2009-11-10T04:08:35ZIf everyone is writing code to achieve similar functionality, the problem is the library not the language.http://stackoverflow.com/questions/1695585/what-kind-of-database-would-be-best-suited-to-maintaining-a-relatively-large-list/1696204#1696204Comment by Daniel Straight on What kind of database would be best suited to maintaining a relatively large list of items with a counter for each item that is updated often in real time?Daniel Straight2009-11-09T05:17:42Z2009-11-09T05:17:42ZIt never even occurred to me to keep it in memory... it never does. I don't know why.http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/104937#104937Comment by Daniel Straight on What non-programming books should programmers read?Daniel Straight2009-11-08T08:00:09Z2009-11-08T08:00:09ZI don't think I've ever been more surprised by something on StackOverflow. I would agree that it is about Christianity, but it's also about human nature as mentioned, and a quite brilliant treating of the topic too. I would disagree that it assumes you believe in demons, because I would say the book is not about demons at all, but about people. This is probably my favorite book of all time, but I never in a million years thought it would get a mention on StackOverflow.http://stackoverflow.com/questions/1695585/what-kind-of-database-would-be-best-suited-to-maintaining-a-relatively-large-list/1695596#1695596Comment by Daniel Straight on What kind of database would be best suited to maintaining a relatively large list of items with a counter for each item that is updated often in real time?Daniel Straight2009-11-08T07:05:20Z2009-11-08T07:05:20ZOh definitely free. I'm not so much talking about scaling as concept. I'll edit that into the question.http://stackoverflow.com/questions/1695585/what-kind-of-database-would-be-best-suited-to-maintaining-a-relatively-large-listComment by Daniel Straight on What kind of database would be best suited to maintaining a relatively large list of items with a counter for each item that is updated often in real time?Daniel Straight2009-11-08T07:01:30Z2009-11-08T07:01:30ZOk, not so large. Maybe a million.http://stackoverflow.com/questions/1644415/repainting-bug-in-wxpython-when-resizing-straight-down-with-a-scrolledwindow-scroComment by Daniel Straight on Repainting bug in wxPython when resizing straight down with a ScrolledWindow scrolled to the bottomDaniel Straight2009-11-08T06:41:06Z2009-11-08T06:41:06ZYes I suppose I should've explained better. The boxes are a class derived from wx.Panel that are being added to a wx.ScrolledWindow. The main form is sucked in with XRC.