User Bryan Oakley - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T02:43:31Zhttp://stackoverflow.com/feeds/user/7432http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1929432/searching-for-text-in-a-file/1929494#19294941Answer by Bryan Oakley for Searching for text in a file.Bryan Oakley2009-12-18T16:58:59Z2009-12-18T16:58:59Z<p>For the first part the algorithm goes like this (in pseudo code):</p>
<pre><code>found = False
for every line in the file:
if line contains search term:
found = True
if found:
print line
</code></pre>
http://stackoverflow.com/questions/1805148/why-is-pythonruby-interpreted/1928816#19288160Answer by Bryan Oakley for Why is (python|ruby) interpreted?Bryan Oakley2009-12-18T15:19:13Z2009-12-18T15:19:13Z<p>Raw compute performance is probably not a goal of most interpreted languages. Interpreted languages are typically more concerned about programmer productivity than raw speed. In most cases these languages are plenty fast enough for the tasks the languages were designed to tackle. </p>
<p>Given that, and that just about the only advantages of a compiler are type checking (difficult to do in a dynamic language) and speed, there's not much incentive to write compilers for most interpreted languages.</p>
http://stackoverflow.com/questions/1927475/python-tkinter-padding-woes/1927946#19279460Answer by Bryan Oakley for Python - Tkinter - Padding woesBryan Oakley2009-12-18T12:29:07Z2009-12-18T12:29:07Z<p>No, there isn't an option. You need to adjust your padding so that the scrollbar doesn't extend all the way to the bottom of the window. Perhaps the easiest way is to add a statusbar that extends across the bottom of the window. </p>
http://stackoverflow.com/questions/1905382/starting-python-script-without-explicitly-having-x11-open/1909264#19092640Answer by Bryan Oakley for Starting Python script without explicitly having X11 openBryan Oakley2009-12-15T18:05:47Z2009-12-15T18:05:47Z<p>If I had to guess (and I do...), it sounds like you installed an X11 based version of python and tkinter rather than one that uses the native windowing system on OSX. I think you can safely write your scripts without telling people they have to have X11 running. You merely have to say they have to have a proper environment set up -- either a native version of python+Tkinter or have X11 running and have an X11-based version of python+Tkinter</p>
<p>In other words, this isn't a regression in python that you have to code around, it's just a side effect of your particular installation of python.</p>
http://stackoverflow.com/questions/187064/graphical-diff-for-mac-os-x/187335#1873351Answer by Bryan Oakley for Graphical diff for Mac OS XBryan Oakley2008-10-09T13:51:40Z2009-12-14T20:59:58Z<p><a href="http://sourceforge.net/projects/tkdiff/" rel="nofollow">Tkdiff</a> works on the Mac as well as any other platform where <a href="http://en.wikipedia.org/wiki/Tcl#Tk" rel="nofollow">Tcl/Tk</a> works. <a href="http://sourceforge.net/project/screenshots.php?group%5Fid=64960" rel="nofollow">Screenshot</a>.</p>
http://stackoverflow.com/questions/1902744/when-is-eval-in-ruby-justified/1902835#19028350Answer by Bryan Oakley for When is `eval` in Ruby justifiedBryan Oakley2009-12-14T19:04:04Z2009-12-14T19:04:04Z<p>eval is a tool, it is neither inherently good nor evil. It is justified whenever you are certain it is the right tool for what you are trying to accomplish.</p>
http://stackoverflow.com/questions/1901996/regex-to-validate-the-number-of-pipe-delimited-items/1902110#19021101Answer by Bryan Oakley for Regex to validate the number of pipe delimited itemsBryan Oakley2009-12-14T16:58:14Z2009-12-14T16:58:14Z<p>Why use a regular expression? Just iterate over the string and count each pipe. This is effectively doing what regex does, but without having to keep all of the pattern matching bookeeping.</p>
http://stackoverflow.com/questions/1887871/apart-from-programming-languages-what-else-to-do/1887888#18878887Answer by Bryan Oakley for Apart from programming languages what else to do.Bryan Oakley2009-12-11T12:52:38Z2009-12-11T12:52:38Z<p>To write code is not a big deal. To write code <em>well</em> is an extremely difficult task. Stop focusing on the tools so much and learn about what makes code maintainable and robust. </p>
<p>For example, read about design patterns. Don't focus on the patterns per se, but learn to recognize when a problem you are trying to solve falls into one of the patterns, then use the pattern to guide the solution. </p>
<p>Another example: don't learn about the how-to of object-oriented programming, but the <em>why</em> of object oriented programming. Try to answer for yourself when OO techniques make sense and when they don't.</p>
http://stackoverflow.com/questions/1879694/wxpython-how-to-get-the-id-of-a-widget-when-you-passed-in-1/1881764#18817640Answer by Bryan Oakley for wxPython - How to get the ID of a widget when you passed in -1?Bryan Oakley2009-12-10T15:29:29Z2009-12-10T15:29:29Z<p>I recommend <em>not</em> doing "sizer.Add(wx.Button(...))". It's better to separate widget creation and layout. Is there a compelling reason to write your code the way you have? Why not write it like this:</p>
<pre><code>button1=wx.Button(pan, wx.ID_ANY, ...)
button2=wx.Button(pan, wx.ID_ANY, ...)
...
hbox1.Add(button1)
hbox1.Add(button2)
...
self.Bind(wx.EVT_BUTTON, self.Blah, button1.GetID())
self.Bind(wx.EVT_BUTTON, self.Blah2, button2.GetID())
</code></pre>
<p>There's simply no gain in combining button creation and adding it to a sizer in one line.</p>
<p>Personally I see even greater value in assigning IDs, but that can be onerous for a large number of widgets. I generally only do that for "significant" widgets -- widgets I refer to in other parts of the code. My code typically looks like:</p>
<pre><code>ID_BUTTON1 = wx.NewID()
IO_BUTTON2 = wx.NewID()
class ...:
...
button1 = wx.Button(self, ID_BUTTON1, ...)
...
self.Bind(wx.EVT_BUTTON, ID_BUTTON1, ...)
...
</code></pre>
<p>I think this makes the code easier to understand and easier to maintain over time.</p>
http://stackoverflow.com/questions/1816353/getting-value-of-textctrl-from-a-different-wxpanel/1820395#18203951Answer by Bryan Oakley for Getting value of TextCtrl from a different wxPanelBryan Oakley2009-11-30T15:14:52Z2009-11-30T15:14:52Z<p>One solution is to pass the control to the constructor of the tab, then you can directly reference it. For example:</p>
<pre><code>class Tab1(wx.Panel):
def __init__(self, parent, id, textCtrl1):
wx.Panel.__init__(self, parent, id);
self.textCtrl1 = textCtrl1
...
def Create_OnClick(self, event):
text1 = self.textCtrl1
</code></pre>
<p>Another solution is to move the Create_OnClick handler to the base panel since it knows about all of the other panels (and thus, their children). Or, create a separate controller class that knows about the various widgets and can have handlers that act on behalf of them all.</p>
http://stackoverflow.com/questions/1797541/wxpython-how-to-get-screen-x-y-for-line-in-a-richtextctrl1wxPython: how to get screen x/y for line in a RichTextCtrl?Bryan Oakley2009-11-25T15:07:22Z2009-11-29T14:38:26Z
<p>I want to pop up a window directly beneath the current line (the line with the insertion cursor) in a RichTextCtrl. Is there a way to get the screen coordinate of a specific character or line in the control? There doesn't seem to be, but that's such a glaring omission I figure I must be missing something. </p>
<p>I have lines of varying height so I can't just figure out the line, multiply by line height, and then figure out the offset from the top of the window. What are my options, or am I simply out of luck?</p>
<p>FWIW, I'm using python 2.5 and wxPython 2.8.9.1 (and no ability to upgrade at the moment).</p>
http://stackoverflow.com/questions/1145395/wxpython-how-to-get-styledtextctrl-to-render-all-text-in-monospace-font1wxpython: how to get StyledTextCtrl to render all text in monospace font?Bryan Oakley2009-07-17T20:02:15Z2009-11-23T15:43:25Z
<p>What's the right way to use a monospaced font for all text in a StyledTextCtrl? I'm using it over the simpler TextCtrl because I need the FindText() functionality which is oddly missing from a standard text control.</p>
<p>I'd also like to avoid hard-coding a specific font face, and instead rely on the monospace font defined by the system if possible.</p>
http://stackoverflow.com/questions/1779630/python-programs-coexisting-on-windows/1779665#17796650Answer by Bryan Oakley for Python programs coexisting on WindowsBryan Oakley2009-11-22T19:17:24Z2009-11-22T19:17:24Z<p>write a python script that mimics the way unix shells handle scirpts -- look at the first line and see if it matches #!(name-of-shell). Then have your python script exec that interpreter and feed it the rest of its arguments.</p>
<p>Then, associate .py with your script. </p>
http://stackoverflow.com/questions/1755415/how-do-i-get-stdout-from-tcl-into-a-python-string-variable-when-using-tkinter/1755696#17556963Answer by Bryan Oakley for How do I get stdout from tcl into a python string variable when using tkinter?Bryan Oakley2009-11-18T12:41:25Z2009-11-18T12:41:25Z<p>If the code you are running prints to screen and you're calling it with root.tk.eval() you can't capture that. However, You can redefine what "puts" does in the tcl code and have it do whatever you want. This is part of the beauty of Tcl -- there are no reserved words. </p>
<p>Simply create a proc named "puts" in the tcl interpreter, though make sure it has the exact same interface (ie: respects "-nonewline", can write to files, etc). When the puts normally prints to the screen you can instead have it do whatever you want, such as write to a socket or merely return the string it's supposed to print.</p>
<p>Roughly (untested, and ignoring the case with -nonewline):</p>
<pre><code>root.tk.eval('''
rename puts original_puts
proc puts {args} {
if {[llength $args] == 1} {
return "=> [lindex $args 0]"
} else {
eval original_puts $args
}
}
''')
foo = root.tk.eval('puts "hello, world"')
print foo
=> hello, world
</code></pre>
<p>It will require a little diligence to make sure you don't break the tcl code which expects a standard "puts" statement, but it's not that hard to do. Just make sure you have special cases for one argument, the first argument of "-nonewline", and where there are two arguments (file descriptor and string).</p>
<p>It might get complicated if you call eval and it does two puts statements, or does a puts and then some other code, since the result of the eval is the result of the last statement. However, you can work around that by having puts buffer its output to a global variable and then return the result of that variable each time you do an eval. </p>
<p>So, think outside the box a little and you can find a solution. Tcl is very flexible.</p>
http://stackoverflow.com/questions/811074/what-is-the-coolest-thing-you-can-do-in-10-lines-of-simple-code-help-me-inspir/811176#8111766Answer by Bryan Oakley for What is the coolest thing you can do in <10 lines of simple code? Help me inspire beginners!Bryan Oakley2009-05-01T12:36:16Z2009-11-17T12:02:59Z<p>With <a href="http://en.wikipedia.org/wiki/Tcl" rel="nofollow">Tcl</a> you have a simple text editor with a save button in about 12 lines of code (but no open, that would take another 8 lines). It works across all standard platforms:</p>
<pre><code>pack [frame .toolbar] -side top -fill x
pack [button .save -text save -command save] -in .toolbar -side left
pack [scrollbar .vsb -orient vertical -command [list .text yview]] -side right -fill y
pack [text .text -wrap word -yscrollcommand [list .vsb set]] -side left -fill both -expand true
proc save {} {
set filename [tk_getSaveFile]
if {$filename ne ""} {
set f [open $filename w]
puts $f [.text get 1.0 end-1c]
close $f
}
}
</code></pre>
<p>I realize the goal was 10 lines, so if you want the to stick to 10 lines or less, a simple text editor without load or save is only two lines. That's not too shabby.</p>
<pre><code>pack [scrollbar .vsb -orient vertical -command [list .text yview]] -side left -fill y
pack [text .text -wrap word -yscrollcommand [list .vsb set]] -side left -fill both -expand true
</code></pre>
<p>Execute either of the above blocks of code with "wish <em>filename</em>" on the platform of your choice. Wish comes with most *nix's and the mac but you'll have to install it manually for windows. </p>
<p>To go a step further, that two line script can also be written in python, though it takes eight lines, still under the 10 line goal:</p>
<pre><code>from Tkinter import *
root=Tk()
text = Text(wrap="word")
sb = Scrollbar(orient="vertical", command=text.yview)
text.configure(yscrollcommand=sb.set)
sb.pack(side="right", fill="y")
text.pack(side="left", fill="both", expand=True)
root.mainloop()
</code></pre>
http://stackoverflow.com/questions/1734575/manipulate-screen-buffer-in-python/1737577#17375771Answer by Bryan Oakley for Manipulate screen buffer in pythonBryan Oakley2009-11-15T13:54:32Z2009-11-15T13:54:32Z<p>Instead of "graying out" the desktop, try to overlay a gray, semi-transparent image over the entire screen and then make sure your window is on top of that. You may face a couple of minor limitations; for example, I don't know off the top of my head if it's possible to overlay the mac menubar (and I'm not sure you'd want to).</p>
http://stackoverflow.com/questions/1721298/setting-enviroment-variables-dynamically-on-linux/1721749#1721749-2Answer by Bryan Oakley for Setting Enviroment Variables Dynamically on LinuxBryan Oakley2009-11-12T12:07:24Z2009-11-12T12:07:24Z<p>A fundamental aspect of environment variables is that you cannot affect the environment for any process but your own and child processes that you spawn. You can't create a script that sets "system wide" environment variables that somehow become usable by other processes. </p>
http://stackoverflow.com/questions/1653419/cross-platform-programming-language-with-a-decent-gui-toolkit/1681343#16813433Answer by Bryan Oakley for Cross-Platform Programming Language with a decent gui toolkit?Bryan Oakley2009-11-05T15:37:00Z2009-11-05T15:37:00Z<p>Consider Tcl/Tk. I'm not sure how you define "one binary that is executeable [sic] by all major desktop platforms" but Tcl probably meets this as well as java, and likely better than any other scripting language.</p>
<p>Using the tcl packaging technology of starkits you can either a) create a single file that can be run on any platform that has an appropriate runtime engine (and they are available for all major and many minor platforms), or you can package that platform-specific runtime engine and and cross-platform starkit into a single file executable for each platform.</p>
<p>The starkit technology is something other languages should aspire to. What you get is a complete, fully functional virtual file system within a single file. This lets you easily package up sound files, dll/.so files (which must be copied to disk for obvious (?) reasons), images, data, etc along with your executable code.</p>
<p>Tk, the graphical library, is very mature and has really good support on all platforms. Some people think it looks dated but those impressions are usually based on information that is at least 5 years old. Modern Tk looks quite good. For some examples see the <a href="http://tkdocs.com/" rel="nofollow">tkdocs</a> website. I's not clear whether you're more concerned with eye candy or functionality, but if it's functionality you're interested in then Tk is something to seriously consider. </p>
<p>Most agree that Tcl is an aquired taste but those that use it professionally usually swear by it. I've been doing wxPython programming the last several months and would switch back to tcl/tk in a heartbeat if given the opportunity. </p>
http://stackoverflow.com/questions/1649772/which-open-source-project-to-choose-for-an-usability-evaluation/1649932#16499320Answer by Bryan Oakley for Which open source project to choose for an usability evaluation?Bryan Oakley2009-10-30T13:50:33Z2009-10-30T13:50:33Z<p>I recommend <a href="http://code.google.com/p/robotframework-ride/" rel="nofollow">RIDE</a> -- and IDE for developing <a href="http://code.google.com/p/robotframework/" rel="nofollow">robot framework</a> tests. This tool is fairly young and has many classic mistakes, a few good features, and some good ideas with weak implementations. I think it would make an excellent candidate for a usability review. </p>
<p>I make this suggestion not because I want to point out the flaws in RIDE (after all, I'm a developer on that project so it might show off some of <em>my</em> flaws), but because I think a) it has the potential to help improve the product, and b) I think the tool makes some common mistakes you and your group could learn from.</p>
<p>It also has the advantage of being cross platform, so it should be suitable no matter what platform you're interested in. </p>
http://stackoverflow.com/questions/1648305/potential-employer-asks-to-show-previous-code-instead-of-detailed-interview-how/1649862#16498620Answer by Bryan Oakley for Potential employer asks to show previous code instead of detailed interview - how should we reply? Bryan Oakley2009-10-30T13:40:31Z2009-10-30T13:40:31Z<p>I would say "the code I produced for previous employers belongs to them; it is not mine to share. If hired I would treat the code I develop for you in the same manner".</p>
<p>I would then point them to open source code I've been a part of, but that only works if you've actually worked on significant open source software.</p>
http://stackoverflow.com/questions/1622421/how-do-i-trim-the-number-of-words-in-python/1622432#16224321Answer by Bryan Oakley for How do I trim the number of words in Python?Bryan Oakley2009-10-25T23:15:04Z2009-10-25T23:15:04Z<p>Why do you say "that is too much work"? Too much work for you, or too much for the computer? Is that code part of some performance critical code? </p>
<p>Just do what works and move on to something more important.</p>
http://stackoverflow.com/questions/1620707/what-has-been-your-greatest-programming-revelation/1620841#16208412Answer by Bryan Oakley for What has been your greatest programming revelation?Bryan Oakley2009-10-25T12:55:26Z2009-10-25T12:55:26Z<p>One of my bigger revelations was when I learned that usability isn't about features, it's about the productivity of the end user.</p>
<p>Hugh Macleod nailed it when he said, "It's not what the software does. It's what the user does."</p>
http://stackoverflow.com/questions/1613240/tcl-how-to-use-the-value-of-a-variable-to-create-a-new-variable/1614304#16143044Answer by Bryan Oakley for tcl: how to use the value of a variable to create a new variableBryan Oakley2009-10-23T15:44:02Z2009-10-23T15:44:02Z<p>One of the really interesting things about Tcl is that you can create variable names dynamically, as you are doing in the question you posted. However, this makes it tricky to write and makes your code harder than necessary to understand.</p>
<p>Instead of trying to figure out how to do the equivalent of ${{$t}_top}, it's arguably better to avoid the problem altogether. You can do that by using an associative array. </p>
<p>For example, instead of this:</p>
<pre><code>set t SNS
set ${t}_top [commands that return value]
...
puts [set ${t}_top]
</code></pre>
<p>Do this:</p>
<pre><code>set t SNS
set top($t) [commands that return value]
...
puts $top($t)
</code></pre>
<p>Most people agree that the latter example is much more readable.</p>
http://stackoverflow.com/questions/1607612/python-how-do-i-make-a-subclass-from-a-superclass/1607631#16076314Answer by Bryan Oakley for Python: How do I make a subclass from a superclass?Bryan Oakley2009-10-22T14:28:46Z2009-10-22T14:28:46Z<pre><code>class MySubClass(MySuperClass):
def __init__(self):
MySuperClass.__init__(self)
</code></pre>
<p>The <a href="http://www.python.org/doc/2.5.2/tut/node11.html#SECTION0011500000000000000000" rel="nofollow">section on inheritance</a> in the python documentation explains it in more detail</p>
http://stackoverflow.com/questions/1606957/emacs-with-smaller-font-size-text-doesnt-align/1606977#16069774Answer by Bryan Oakley for Emacs with smaller font size -> Text doesn't alignBryan Oakley2009-10-22T12:49:34Z2009-10-22T12:49:34Z<p>When you changed your font, were you careful to change it to a fixed width font? When you say it looks fine in another editor, is that editor using the same font? </p>
<p>You need to make sure that you use a fixed width (monospace) font in emacs or any other text editor to get text to line up properly. My guess is you picked a proportional font in emacs and you have a fixed width font in the other editor.</p>
http://stackoverflow.com/questions/1602106/in-pythons-tkinter-how-can-i-make-a-label-such-that-you-can-select-the-text-wit/1602312#16023121Answer by Bryan Oakley for In python's tkinter, how can I make a Label such that you can select the text with the mouse?Bryan Oakley2009-10-21T17:26:49Z2009-10-21T17:26:49Z<p>The easiest way is to use a disabled text widget with a height of 1 line:</p>
<pre><code>from Tkinter import *
master = Tk()
w = Text(master, height=1)
w.insert(1.0, "Hello, world!")
w.pack()
w.configure(state="disabled")
# if tkinter is 8.5 or above you'll want the selection background
# to appear like it does when the widget is activated
# comment this out for older versions of Tkinter
w.configure(inactiveselectbackground=w.cget("selectbackground"))
mainloop()
</code></pre>
<p>You could use an entry widget in a similar manner.</p>
http://stackoverflow.com/questions/1588052/gui-program-problem-with-tabbedpanes/1588096#15880962Answer by Bryan Oakley for GUI program, problem with tabbedpanesBryan Oakley2009-10-19T11:09:19Z2009-10-19T11:09:19Z<p>To answer your specific question about using three panels instead of 1, I would suggest two. There's rarely a need to create a panel just to create a single widget. So, one widget for the name and sentence, one for the crime. </p>
<p>As for the question about "is there a better way to design this"?... It sounds like you are learning, so I suggest you don't focus too much on the perfect way to do it. Stick with your original design then after the task is done ask yourself what worked* and what didn't. With that information you'll be able to decide for yourself whether what you did was the right design. </p>
<p>There usually isn't a "best" when designing GUI code -- there are many ways to solve the problem. What you've described sounds like a perfectly good way to attack the problem</p>
<p>(*) "worked" in this context means, was it easy to code? Did it allow you to achieve the layout you desired? Does it make the code maintainable over time if, for example, a requirement comes down to reorganize the GUI?.</p>
http://stackoverflow.com/questions/1560668/importing-proc-variable-into-namespace/1571589#15715892Answer by Bryan Oakley for Importing proc variable into namespaceBryan Oakley2009-10-15T10:48:30Z2009-10-15T10:48:30Z<p>Namespaces and levels are two different things. You don't need uplevel for this problem.</p>
<p>Here's a simple solution that creates the namespace and sets the variable in one line:</p>
<pre><code>proc foo {param} {
namespace eval ::foo_ns [list set x $param]
}
</code></pre>
http://stackoverflow.com/questions/1557069/should-i-duplicate-tests-for-convenience-overloads/1559450#15594501Answer by Bryan Oakley for Should I duplicate tests for convenience overloads?Bryan Oakley2009-10-13T10:43:51Z2009-10-13T10:43:51Z<p>I think the answer is simpler then you think: do you care whether the overloaded methods work or not? If you care that they work, how do you know for certain unless you test them?</p>
<p>It should take you about 15 seconds to write a test that compares the output of the overloaded function with the one that it overloads. Do it and move on.</p>
http://stackoverflow.com/questions/1517447/how-do-you-use-jython-for-your-java-development/1553931#15539310Answer by Bryan Oakley for How do you use Jython for your Java development?Bryan Oakley2009-10-12T10:58:56Z2009-10-12T10:58:56Z<p>we use jython to run 'jybot', the test runner that is part of the <a href="http://code.google.com/p/robotframework/" rel="nofollow">robot framework</a>. It lets us write java code as the glue between our java code and our test scripts.</p>
http://stackoverflow.com/questions/1929432/searching-for-text-in-a-file/1929494#1929494Comment by Bryan Oakley on Searching for text in a file.Bryan Oakley2009-12-18T18:07:22Z2009-12-18T18:07:22Z@danben: yes. That first 'if' could be rewritten as "if not found and line contains the search term"http://stackoverflow.com/questions/1927719/what-is-the-most-elegant-way-of-converting-the-string-a-pdf-to-a-jpg/1927738#1927738Comment by Bryan Oakley on What is the most elegant way of converting the string 'a.pdf' to 'a.jpg' ?Bryan Oakley2009-12-18T16:00:17Z2009-12-18T16:00:17Z@kiamlaluno: when I made my comment there was no backslash before the dot in the regex. http://stackoverflow.com/questions/1927719/what-is-the-most-elegant-way-of-converting-the-string-a-pdf-to-a-jpg/1927795#1927795Comment by Bryan Oakley on What is the most elegant way of converting the string 'a.pdf' to 'a.jpg' ?Bryan Oakley2009-12-18T14:25:53Z2009-12-18T14:25:53Z@jellybean: There wasn't a \ before the "." when I made my comment.http://stackoverflow.com/questions/1927475/python-tkinter-padding-woes/1927968#1927968Comment by Bryan Oakley on Python - Tkinter - Padding woesBryan Oakley2009-12-18T14:24:55Z2009-12-18T14:24:55ZThat won't make any difference. It isn't the choice of geometry manager that is the issue. The issue is, on the Mac there's a resize handle in the bottom-right corner that cannot be covered by a widget. http://stackoverflow.com/questions/1927719/what-is-the-most-elegant-way-of-converting-the-string-a-pdf-to-a-jpg/1927795#1927795Comment by Bryan Oakley on What is the most elegant way of converting the string 'a.pdf' to 'a.jpg' ?Bryan Oakley2009-12-18T12:25:06Z2009-12-18T12:25:06Z".pdf$" matches "xpdf" as well as ".pdf" and thus will do far more than merely replace the literal string .pdf with something else.http://stackoverflow.com/questions/1927719/what-is-the-most-elegant-way-of-converting-the-string-a-pdf-to-a-jpg/1927738#1927738Comment by Bryan Oakley on What is the most elegant way of converting the string 'a.pdf' to 'a.jpg' ?Bryan Oakley2009-12-18T12:23:51Z2009-12-18T12:23:51Zsome of your solutions are imperfect. ".pdf$", for instance, matches "xpdf" as well as ".pdf". And of course, the string replace will do wrong things with all sorts of input. http://stackoverflow.com/questions/208054/user-names-and-white-spaces/1901791#1901791Comment by Bryan Oakley on User Names and White-SpacesBryan Oakley2009-12-16T12:05:55Z2009-12-16T12:05:55ZIf you're worried about multiple spaces, I would argue that a much more usable solution is to collapse multiple spaces into one rather than disallow them altogether. http://stackoverflow.com/questions/1905382/starting-python-script-without-explicitly-having-x11-open/1909264#1909264Comment by Bryan Oakley on Starting Python script without explicitly having X11 openBryan Oakley2009-12-16T01:20:29Z2009-12-16T01:20:29ZOh, agreed! No reason to live with it. My point was to reassure Goose Bumper that it wasn't a regression in Python, just an artifact of what he chose to install.http://stackoverflow.com/questions/1888777/what-is-the-difference-between-executing-a-bash-script-and-sourcing-a-bash-scriptComment by Bryan Oakley on What is the difference between executing a bash script and sourcing a bash script?Bryan Oakley2009-12-15T12:58:38Z2009-12-15T12:58:38Z@Scottie T: where does he say ". ./myscript" in the original question? He doesn't. He specifically says just "./myscript".http://stackoverflow.com/questions/1902744/when-is-eval-in-ruby-justified/1902835#1902835Comment by Bryan Oakley on When is `eval` in Ruby justifiedBryan Oakley2009-12-14T20:06:09Z2009-12-14T20:06:09Z@The Wicked Flea: that's why I included "whenever you are certain". If you think it's the right tool, it's not. It's only when you know it's the right tool and know the ramifications of that decision that it is indeed the right tool.http://stackoverflow.com/questions/1902744/when-is-eval-in-ruby-justified/1902802#1902802Comment by Bryan Oakley on When is `eval` in Ruby justifiedBryan Oakley2009-12-14T19:02:51Z2009-12-14T19:02:51ZThe only thing I might add is "it's justified when you say it is AND you are aware of the ramifications". http://stackoverflow.com/questions/1866307/inspiration-for-easy-to-use-probably-graphical-scripting-languageComment by Bryan Oakley on Inspiration for easy-to-use, probably graphical, scripting languageBryan Oakley2009-12-14T17:21:44Z2009-12-14T17:21:44ZI'm confused -- are you asking specifically for a graphical language you can embed in your product, or a scripting language?
http://stackoverflow.com/questions/1888777/what-is-the-difference-between-executing-a-bash-script-and-sourcing-a-bash-scriptComment by Bryan Oakley on What is the difference between executing a bash script and sourcing a bash script?Bryan Oakley2009-12-14T17:17:10Z2009-12-14T17:17:10ZI don't think this is a duplicate of those. Those specifically ask about the dot (".") command. This question doesn't mention the dot command.http://stackoverflow.com/questions/1901996/regex-to-validate-the-number-of-pipe-delimited-items/1902046#1902046Comment by Bryan Oakley on Regex to validate the number of pipe delimited itemsBryan Oakley2009-12-14T17:00:49Z2009-12-14T17:00:49Zeven though I know the original question required using regular expressions, that's overkill for such a simple problem. I think the better solution is to simply iterate over every character and count the pipes. http://stackoverflow.com/questions/1900956/write-variable-to-file-including-name/1901016#1901016Comment by Bryan Oakley on Write variable to file, including nameBryan Oakley2009-12-14T15:11:23Z2009-12-14T15:11:23ZYou didn't address writing it to a file.