Bryan Oakley
|
Registered User
|
I started as a FORTRAN programmer, paid my dues writing C and X11/Motif, switched to Perl, discovered Tk, and from that, Tcl, and spent the next decade plus writing cross-platform GUIs in Tcl/Tk. I recently switch to using Python and Ruby, though more due to economic factors rather than technical reasons. |
|
22h |
revised |
There Is Any Smalltalk IDE That Isn’t Like a VM? add "smalltalk" to the title |
|
2d |
revised |
Open a new browser window from a Python script in Google App Engine Skript -> script |
|
2d |
comment |
Searching for text in a file. @danben: yes. That first 'if' could be rewritten as "if not found and line contains the search term" |
|
2d |
answered | Searching for text in a file. |
|
2d |
revised |
Searching for text in a file. added homework tag |
|
2d |
comment |
What is the most elegant way of converting the string ‘a.pdf’ to ‘a.jpg’ ? @kiamlaluno: when I made my comment there was no backslash before the dot in the regex. |
|
2d |
answered | Why is (python|ruby) interpreted? |
|
2d |
comment |
What is the most elegant way of converting the string ‘a.pdf’ to ‘a.jpg’ ? @jellybean: There wasn't a \ before the "." when I made my comment. |
|
2d |
comment |
Python - Tkinter - Padding woes That 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. |
|
Dec 18 |
answered | Python - Tkinter - Padding woes |
|
Dec 18 |
comment |
What is the most elegant way of converting the string ‘a.pdf’ to ‘a.jpg’ ? ".pdf$" matches "xpdf" as well as ".pdf" and thus will do far more than merely replace the literal string .pdf with something else. |
|
Dec 18 |
comment |
What is the most elegant way of converting the string ‘a.pdf’ to ‘a.jpg’ ? some 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. |
|
Dec 17 |
revised |
Specifying chars in python fixed typos |
|
Dec 17 |
revised |
suggestion required related to rewriting and string manipulation edited tags |
|
Dec 16 |
revised |
Test Driven Development - What exactly is the test? "know member" -> "known member" |
|
Dec 16 |
comment |
User Names and White-Spaces If 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. |
|
Dec 16 |
comment |
Starting Python script without explicitly having X11 open Oh, 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. |
|
Dec 15 |
accepted | Starting Python script without explicitly having X11 open |
|
Dec 15 |
answered | Starting Python script without explicitly having X11 open |
|
Dec 15 |
comment |
What is the difference between executing a bash script and sourcing a bash script? @Scottie T: where does he say ". ./myscript" in the original question? He doesn't. He specifically says just "./myscript". |
|
Dec 14 |
comment |
When is `eval` in Ruby justified @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. |
|
Dec 14 |
answered | When is `eval` in Ruby justified |
|
Dec 14 |
comment |
When is `eval` in Ruby justified The only thing I might add is "it's justified when you say it is AND you are aware of the ramifications". |
|
Dec 14 |
comment |
Inspiration for easy-to-use, probably graphical, scripting language I'm confused -- are you asking specifically for a graphical language you can embed in your product, or a scripting language? |
|
Dec 14 |
comment |
What is the difference between executing a bash script and sourcing a bash script? I don't think this is a duplicate of those. Those specifically ask about the dot (".") command. This question doesn't mention the dot command. |
|
Dec 14 |
comment |
Regex to validate the number of pipe delimited items even 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. |
|
Dec 14 |
answered | Regex to validate the number of pipe delimited items |
|
Dec 14 |
revised |
Python/Linux - A function callback every time a key is pressed (regardless of which window has focus)? "everything" -> "every time" in title |
|
Dec 14 |
comment |
Write variable to file, including name You didn't address writing it to a file. |
|
Dec 11 |
comment |
Is it acceptable for developers to have little or no knowledge of UI design? You make good points, but I don't see how they are helpful to this discussion. Yes, UI design is critical, but that doesn't answer the question. Lots of programmers write code that lives on the back end, far away from the user. Should they be required to learn about UI design? |
|
Dec 11 |
revised |
Is it acceptable for developers to have little or no knowledge of UI design? "btu" -> "but" |
|
Dec 11 |
comment |
Is it acceptable for developers to have little or no knowledge of UI design? "flash" has nothing to do with interaction design IMO. The question isn't about "flash", it's about knowing how to make something usable. The two have nothing to do with each other. If you think "flash" is important in enterprise applications, maybe it's a good thing they don't let you affect design decisions. |
|
Dec 11 |
answered | Apart from programming languages what else to do. |
|
Dec 10 |
comment |
wxPython - How to get the ID of a widget when you passed in -1? Don't let the desire to create less code cause you to write an incorrect amount of code. While we should all strive to write less code, we should write as few lines of code as necessary but no fewer. Remember, your ultimate goal is to write code that a) works, and b) is maintainable. Cramming code into fewer lines doesn't work toward either of those goals IMO. |
|
Dec 10 |
answered | wxPython - How to get the ID of a widget when you passed in -1? |
|
Dec 9 |
revised |
want to make a complex c++ gui simply "more that" -> "more than" |
|
Dec 8 |
awarded | ● Fanatic |
|
Dec 2 |
comment |
Encode value as base64 You can run the command "source base64.tcl" to load the file into the current namespace. |
|
Dec 1 |
revised |
what does this element do? added 8 characters in body; edited title |
|
Nov 30 |
accepted | Getting value of TextCtrl from a different wxPanel |
|
Nov 30 |
answered | Getting value of TextCtrl from a different wxPanel |
|
Nov 30 |
comment |
wxPython: how to get screen x/y for line in a RichTextCtrl? Thank you, that solved my problem. Combined with self.GetScreenPosition() and caret.GetSize() I'm able to compute the baseline of current line. |
|
Nov 29 |
comment |
Programming language with native code support, No framework (I write the framework) why the requirement for compiling to native code? Judging by what you are building I don't see why that is a requirement. You're leaving out many good choices, especially if "easy" is one of your criteria. Tcl, Python, Ruby would all make your task easier. Are you concerned about deployment? Some scripting languages (for example. Tcl) make it trivial to wrap up files into a single executable). |
|
Nov 28 |
comment |
How To Distribute a Project Built In a Interpreted Language? Strangely, many years after the introduction of starkits and starpacks, no other interpreted language has yet to come up with anything that comes close to the power and flexibility of starpacks, starkits and tclkits. |
|
Nov 28 |
revised |
How To Distribute a Project Built In a Interpreted Language? added 14 characters in body |
|
Nov 26 |
awarded | ● Nice Answer |
|
Nov 25 |
revised |
When should and shouldn’t you break away from OOP for speed/performance? deleted 3 characters in body |
|
Nov 25 |
asked | wxPython: how to get screen x/y for line in a RichTextCtrl? |
|
Nov 23 |
revised |
wxpython: how to get StyledTextCtrl to render all text in monospace font? added 1 characters in body; edited tags |
|
Nov 22 |
answered | Python programs coexisting on Windows |
