User RHSeeger - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T01:48:14Z http://stackoverflow.com/feeds/user/26816 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1833831/encode-value-as-base64/1835075#1835075 0 Answer by RHSeeger for Encode value as base64 RHSeeger 2009-12-02T19:01:01Z 2009-12-02T19:42:05Z <p>If you have the ability to load Tcl libraries (packages/modules) into your environment, you can just use the <a href="http://www.tcl.tk/software/tcllib/" rel="nofollow">Tcllib</a> implementation. That's what Vinko Vrsalovic was showing the command from in his response.</p> <pre><code>% package require base64 2.4 % base64::encode bob Ym9i </code></pre> http://stackoverflow.com/questions/1689227/maven-is-it-a-good-common-practice-to-use-it-only-for-dependency-mgmt-and-the/1703880#1703880 0 Answer by RHSeeger for maven - is it a good / common practice to use it only for dependency mgmt and then let the ant do everything else..? RHSeeger 2009-11-09T21:17:46Z 2009-11-09T21:17:46Z <p>Honestly, I would love to see a dependency management tool that implemented that part of Maven, specifically as a command line tool. For everything BUT dependency management, I find Maven to be absolutely awful if you're doing anything but exactly what the most general case is. Every time I try to do something that isn't "normal" (system/acceptance tests, etc), I run into a brick wall due to </p> <ul> <li>either horrid documentation, </li> <li>being told it's "not the maven way" (when it's a task that needs to happen, and "the way" shouldn't be a factor), or </li> <li>being told to wait for the next version of maven, because maybe it'll be supported then.</li> </ul> <p>I'd love to have a command line tool that can implement the "I need this as a dependency, go get it" functionality of Maven, possibly even using the pom.xml files of various packages. Then I could just use that in a Makefile and happy :)</p> http://stackoverflow.com/questions/1675749/escaping-an-apostrophe-in-java/1675775#1675775 1 Answer by RHSeeger for Escaping an apostrophe in Java RHSeeger 2009-11-04T18:34:11Z 2009-11-04T18:34:11Z <p>Using <a href="http://commons.apache.org/lang/api/org/apache/commons/lang/StringEscapeUtils.html" rel="nofollow">StringEscapeUtils</a>:</p> <pre><code>StringEscapeUtils.escapeSql(yourstring); </code></pre> http://stackoverflow.com/questions/1675677/tcl-for-getting-ascii-code-for-every-character-in-a-string/1675758#1675758 4 Answer by RHSeeger for Tcl for getting ASCII code for every character in a string RHSeeger 2009-11-04T18:31:20Z 2009-11-04T18:31:20Z <p>The following code should work:</p> <pre><code>set data {CREATE TABLE} foreach char [split $data ""] { lappend output [scan $char %c] } set output ;# 67 82 69 65 84 69 32 84 65 66 76 69 </code></pre> <p>As far as the extra characters in your output, it seems like the problem is with your input data from the file. Is there some reason there would be null characters (\0) in between every character in the file?</p> http://stackoverflow.com/questions/1614520/what-are-common-file-extensions-for-web-programming-languages/1614557#1614557 0 Answer by RHSeeger for What are common file extensions for web programming languages? RHSeeger 2009-10-23T16:30:44Z 2009-10-23T16:30:44Z <p>AOLServer using Tcl - .adp</p> http://stackoverflow.com/questions/1613240/tcl-how-to-use-the-value-of-a-variable-to-create-a-new-variable/1613506#1613506 1 Answer by RHSeeger for tcl: how to use the value of a variable to create a new variable RHSeeger 2009-10-23T13:39:35Z 2009-10-23T13:39:35Z <p>Each line of code in Tcl is run through the substitution phase (in which variables, commands, etc are substituted) only once... generally. As such, something like</p> <pre><code>set var1 1 set var2 var1 set var3 $$var2 </code></pre> <p>won't wind up with var3 equaling 1, since the substitutor will replace "$$var2" with "the value of the variable named '$var2' (literally)" and stop.</p> <p>What you need it to either go about things another way or to force another round of substitution. The other way is generally to avoid needing a second round of substitution (as shown by Jackson):</p> <pre><code>set var3 [set $var2] </code></pre> <p>Here, the $var2 is replaced, during substitution, by "var1"... then [set var1] returns 1... then var3 gets set to the value of "1"... and you're good.</p> http://stackoverflow.com/questions/1611592/what-is-difference-in-several-styles-for-proc-syntax-in-tcl/1611949#1611949 5 Answer by RHSeeger for What is difference in several styles for proc syntax in tcl? RHSeeger 2009-10-23T07:52:35Z 2009-10-23T07:52:35Z <p>They are mostly the same:</p> <p>Defines a command with no arguments</p> <pre><code>proc dosomething {} { #code here } </code></pre> <p>Same as above, defines a command with no arguments</p> <pre><code>proc dosomething { } { #code here } </code></pre> <p>Not valid... should throw an error</p> <pre><code>proc dosomething { #code here } </code></pre> <p>Defines a command with a variable number of arguments (ie, varargs)</p> <pre><code>proc dosomething args { #code here } </code></pre> <p>Defines a command, in the top level namespace, with no arguments (same as the first two in most cases)</p> <pre><code>proc ::dosomething {} { #code here } </code></pre> <p>There's no such thing as a local proc, btw. They can be inside a namespace, but all procs are global.</p> http://stackoverflow.com/questions/1609303/why-is-determining-if-a-function-is-pure-difficult/1611292#1611292 0 Answer by RHSeeger for Why is determining if a function is pure difficult? RHSeeger 2009-10-23T03:49:21Z 2009-10-23T03:49:21Z <p>Note that the complexity depends on the language, too. For the more dynamic languages, it's possible to redefine anything at any time. For example, in Tcl</p> <pre><code>proc myproc {a b} { if { $a &gt; $b } { return $a } else { return $b } } </code></pre> <p>Every single piece of that could be modified at any time. For example:</p> <ul> <li>the "if" command could be rewritten to use and update global variables</li> <li>the "return" command, along the same lines, could do the same thing</li> <li>the could be an execution trace on the if command that, when "if" is used, the return command is redefined based on the inputs to the if command</li> </ul> <p>Admittedly, Tcl is an extreme case; one of the most dynamic languages there is. That being said, it highlights the problem that it can be difficult to determine the purity of a function even once you've entered it.</p> http://stackoverflow.com/questions/1579023/design-of-an-alternative-fluent-interface-for-regular-expressions/1611252#1611252 1 Answer by RHSeeger for Design of an Alternative (Fluent?) Interface for Regular Expressions RHSeeger 2009-10-23T03:34:59Z 2009-10-23T03:34:59Z <p>The short answer, for me, is that, once you get to regular expressions (or other pattern matching that does the same thing) that are long enough to cause a problem... you should probably be considering if they're the right tool for the job in the first place.</p> <p>Honestly, any fluent interface seems like it would be harder to read than a standard regular expression. For really short expressions, the fluent version is verbose, but not too long; it's readable. But so is the regular expression for something that long.</p> <p>For a medium sized regular expression, a fluent interface becomes unwieldy; long enough that it's hard, if not impossible, to read.</p> <p>For a long regular expression (ie, the email address one), where the regular expression is actually hard (if not impossible) to read, the fluent version became impossible to read 10 pages ago.</p> http://stackoverflow.com/questions/1603052/what-are-the-diferences-between-btext-b-strongtext-strong-and-span-clas/1603083#1603083 3 Answer by RHSeeger for What are the diferences between <b>text</b>, <strong>Text</strong> and <span class="bold">Text</span>? RHSeeger 2009-10-21T19:32:06Z 2009-10-21T19:32:06Z <p>All three, in theory, wind up doing the same thing, visually, in the browser. However, they have a different "meaning":</p> <ul> <li>The &lt;b>&lt;/b> tags say to make the text bold. They're formatting</li> <li>The &lt;strong>&lt;/strong> tags say that the contents are, semantically, to stand out</li> <li>The &lt;span class="bold">&lt;/span> tags say that the contents are grouped in some way, and give no other real information about it.</li> </ul> <p>The preferred method, to the best of my knowledge, is &lt;strong>&lt;/strong>, since that indicates that the text needs to stand out semantically... and lets the browser make them stand out visually (or audibly if a screen reader). </p> http://stackoverflow.com/questions/1602076/string-substitution-using-tcl-api/1602326#1602326 2 Answer by RHSeeger for String substitution using tcl API RHSeeger 2009-10-21T17:28:34Z 2009-10-21T17:46:17Z <p>Take a look at <a href="http://www.tcl.tk/man/tcl8.5/TclLib/SubstObj.htm" rel="nofollow">Tcl_SubstObj</a>. It's the C equivalent of the [subst] command, which appears to be what you're looking for.</p> <p>As you indicated in your comment, subst doesn't quite do what you're looking to do. If it helps, the following Tcl code may be what you're looking for:</p> <pre><code>&gt; set mydata {mylist item $listitem group item {$group item}} &gt; set listitem {1 2 3} &gt; subst $mydata ;# error: can't read "group": no such variable &gt; proc groupsubst {data} { return [uplevel 1 list $data] } &gt; groupsubst $mydata ;# mylist item {1 2 3} group item {$group item} </code></pre> http://stackoverflow.com/questions/1596711/passing-list-to-tcl-procedure/1596827#1596827 3 Answer by RHSeeger for Passing list to Tcl procedure RHSeeger 2009-10-20T19:35:49Z 2009-10-20T20:56:48Z <p>It depends on the version of Tcl you're using, but: For 8.5:</p> <pre><code>set mylist {a b c} myprocedure option1 option2 {*}$mylist </code></pre> <p>For 8.4 and below:</p> <pre><code>set mylist {a b c} eval myprocedure option1 option2 $mylist # or, if option1 and 2 are variables eval myprocedure [list $option1] [list $option2] $mylist # or, as Bryan prefers eval myprocedure \$option1 \$option2 $mylist </code></pre> http://stackoverflow.com/questions/213985/is-making-an-empty-string-constant-worth-it/1589007#1589007 1 Answer by RHSeeger for Is making an empty string constant worth it? RHSeeger 2009-10-19T14:30:49Z 2009-10-19T14:30:49Z <p>As a tangent to the question, I generally recommend using a utility function when what you're really checking for is "no useful value" rather than, specifically, the empty string. In general, I tend to use:</p> <pre><code>import org.apache.commons.lang.StringUtils; // Check if a String is whitespace, empty ("") or null. StringUtils.isBlank(mystr); // Check if a String is empty ("") or null. StringUtils.isEmpty(mystr); </code></pre> <p>The concept being that the above two:</p> <ul> <li>Check the various other cases, including being null safe, and (more importantly)</li> <li>Conveys what you are trying to test, rather than how to test it.</li> </ul> http://stackoverflow.com/questions/1560523/onlogn-algorithm-find-three-evenly-spaced-ones-within-binary-string/1567428#1567428 0 Answer by RHSeeger for O(nlogn) Algorithm - Find three evenly spaced ones within binary string RHSeeger 2009-10-14T16:26:15Z 2009-10-14T18:45:43Z <p>I assume the reason this is nlog(n) is due to the following:</p> <ul> <li>To find the 1 that is the start of the triplet, you need to check (n-2) characters. If you haven't found it by that point, you won't (chars n-1 and n cannot start a triplet) <em>(O(n))</em></li> <li>To find the second 1 that is the part of the triplet (started by the first one), you need to check m/2 (m=n-x, where x is the offset of the first 1) characters. This is because, if you haven't found the second 1 by the time you're halfway from the first one to the end, you won't... since the third 1 must be exactly the same distance past the second. <em>(O(log(n)))</em></li> <li>It O(1) to find the last 1 since you know the index it must be at by the time you find the first and second.</li> </ul> <p>So, you have n, log(n), and 1... O(nlogn)</p> <p><strong>Edit:</strong> Oops, my bad. My brain had it set that n/2 was logn... which it obviously isn't (doubling the number on items still doubles the number of iterations on the inner loop). This is still at n^2, not solving the problem. Well, at least I got to write some code :)</p> <p><hr /></p> <p>Implementation in Tcl</p> <pre><code>proc get-triplet {input} { for {set first 0} {$first &lt; [string length $input]-2} {incr first} { if {[string index $input $first] != 1} { continue } set start [expr {$first + 1}] set end [expr {1+ $first + (([string length $input] - $first) /2)}] for {set second $start} {$second &lt; $end} {incr second} { if {[string index $input $second] != 1} { continue } set last [expr {($second - $first) + $second}] if {[string index $input $last] == 1} { return [list $first $second $last] } } } return {} } get-triplet 10101 ;# 0 2 4 get-triplet 10111 ;# 0 2 4 get-triplet 11100000 ;# 0 1 2 get-triplet 0100100100 ;# 1 4 7 </code></pre> http://stackoverflow.com/questions/1560668/importing-proc-variable-into-namespace/1566006#1566006 1 Answer by RHSeeger for Importing proc variable into namespace RHSeeger 2009-10-14T12:43:59Z 2009-10-14T12:49:44Z <p>Ok, you have two different problems. The first is that the namespace doesn't already exist; the second is that you need to write the code so that the variable is created/written in that namespace. Overall, this require only a tiny modification of Hai's code:</p> <pre><code>proc foo {param} { # Create the namespace if it doesn't already exist namespace eval ::foo_ns {} # Set the variable in the namespace set ::foo_ns::x $param } </code></pre> <p><hr /></p> <p>As commentary on some of the problems you were having:</p> <pre><code>proc foo {param} { namespace eval foo_ns { uplevel {set foo_ns::x $param } } } </code></pre> <p>This doesn't work because you are, effectively, saying the following: in the namespace "foo_ns", run the following code: at the top level of the stack, rung the following code: "set foo::x $param"</p> <p>However, at the top level of the stack, the variable "param" has no value (its only defined within the procedure. You'll need to make sure it gets substitured beforehand. I'd include code that would work but, honestly, I'm afraid it will cause confusion with the actual answer to the question... so I'll leave it out.</p> http://stackoverflow.com/questions/1544050/force-another-programs-standard-output-to-be-unbuffered-using-python/1544690#1544690 1 Answer by RHSeeger for Force another program's standard output to be unbuffered using Python RHSeeger 2009-10-09T16:02:16Z 2009-10-09T16:02:16Z <p>Its worth noting that some programs only buffer their output when they think it's not going to a "real user" (ie, a tty). When they detect that their output is being read by another program, they buffer.</p> <p>The emulation of a tty is one of the things that <a href="http://expect.nist.gov/" rel="nofollow">Expect</a> does in automating other processes.</p> <p>There is a <a href="http://sourceforge.net/projects/pexpect/" rel="nofollow">pure Python implementation of Expect</a>, but I don't know how well it handles tty emulation.</p> http://stackoverflow.com/questions/1544362/how-to-handle-big-integers-64-bit-numbers-in-tcl/1544530#1544530 4 Answer by RHSeeger for How to handle big integers (64 bit) numbers in tcl? RHSeeger 2009-10-09T15:35:08Z 2009-10-09T15:47:53Z <p>As of Tcl 8.5, integers are now Bignums (arbitrary precision)</p> <p>If you're using an older version (which you've said you are, 8.4.x), you'll need to consider what you need to use the numbers for. Most of the standard commands won't accept Bignums, since it hadn't been added to the core at that time. However, if you're just doing math with them, you might want to take a look at</p> <ul> <li>the <a href="http://wiki.tcl.tk/1246" rel="nofollow">tcllib package</a>, which has a library for arbitrary precision math, or</li> <li>the <a href="http://mpexpr.sourceforge.net/" rel="nofollow">mexpr package</a>. </li> </ul> <p>Lastly, it's worth <a href="http://wiki.tcl.tk/%5F/gsearch?S=arbitrary+precision+integers&amp;%5Fcharset%5F=UTF-8" rel="nofollow">searching the Tclers Wiki</a> for other options.</p> http://stackoverflow.com/questions/1537480/java-references-values-are-addresses-values/1537500#1537500 1 Answer by RHSeeger for Java references values are addresses values? RHSeeger 2009-10-08T12:26:25Z 2009-10-08T12:26:25Z <p>From: <a href="http://stackoverflow.com/questions/1040868/java-syntax-and-meaning-behind-b1ef9157-binary-address">http://stackoverflow.com/questions/1040868/java-syntax-and-meaning-behind-b1ef9157-binary-address</a></p> <blockquote> <p>The hex digits are an object ID or hashcode.</p> </blockquote> http://stackoverflow.com/questions/1521444/so-was-that-data-structures-algorithms-course-really-useful-after-all/1521511#1521511 1 Answer by RHSeeger for So was that Data Structures & Algorithms course really useful after all? RHSeeger 2009-10-05T18:02:25Z 2009-10-05T18:02:25Z <p>For me, knowing the exact algorithms has been... nice as background knowledge. However, the thing that's been the most useful is the more general background of having to pay attention to how different pieces of an algorithm interact. For instance, there can be places in code where moving one piece of code (ie, outside a loop) can make a huge difference in both time and space. </p> <p>Its less of the specific knowledge the course taught and, rather, more that it acted like several years of experience. The course took something that might take years to encounter (have drilled into you) all the variations of in pure "real world experience" and condensed it. </p> http://stackoverflow.com/questions/1496246/functional-programming-model-efficiency-erlang-specific/1498262#1498262 4 Answer by RHSeeger for functional programming model efficiency (Erlang specific) RHSeeger 2009-09-30T13:52:38Z 2009-09-30T13:52:38Z <blockquote> <p>Hi I am a newbie in the C world. When I think of how we need to solve the following problem (and there are a long list of similar ones), I think it's really inefficient because we are speaking of a lot of looping. Apprently, language like Erlang would not need the clumsy looping to solve this problem, but with C (I guess other procedural programming language needs to as well, maybe?) you must do in such a way.</p> </blockquote> <p>See what I did there? ;)</p> <p>As stated by others, recursion is a perfectly normal (and efficient) way to solve things in many languages. Not directly related, but... for some things, recursion is considerably clearer to understand than looping would be (the reverse is, of course, also true)... fib(n).</p> http://stackoverflow.com/questions/1493162/how-does-one-instantiate-an-array-of-maps-in-java/1493256#1493256 0 Answer by RHSeeger for How does one instantiate an array of maps in Java? RHSeeger 2009-09-29T15:19:07Z 2009-09-29T15:19:07Z <p>Short answer appears to be that you really just can't. </p> <p>See the following for a blog about it. <a href="http://www.bloggingaboutjava.org/2006/01/java-generics-quirks/" rel="nofollow">http://www.bloggingaboutjava.org/2006/01/java-generics-quirks/</a></p> <p>One of the comments to the blog states that:</p> <blockquote> <p>Actually, the engineers made the creation of such an Array illegal. So the creation of an array from generic Class fails. The Collection.toArray method followed by a Cast to the Array works at compile time.</p> <p>This solves not the problem, that the ArrayStoreCheck can’t be done during Runtime, but you can create an Array of generics in this way.</p> </blockquote> <p>As suggested by Bill the Lizard, you probably are better off using a </p> <pre><code>List&lt;Map&lt;String,Integer&gt;&gt; </code></pre> http://stackoverflow.com/questions/1487102/what-factors-do-you-consider-when-deciding-what-to-work-on-next/1487642#1487642 4 Answer by RHSeeger for What factors do you consider when deciding what to work on next? RHSeeger 2009-09-28T15:19:15Z 2009-09-28T15:19:15Z <p>I tend to weigh 4 items based on things when deciding what to work on next:</p> <ul> <li>Is this item a requirement for something else?</li> <li>Can I work on this item yet (ie, am I waiting on something for it)?</li> <li>How fast/easily can I get this item done?</li> <li>How interesting do I find the work required for this item?</li> </ul> http://stackoverflow.com/questions/1478268/whats-the-difference-between-a-command-and-a-statement/1478403#1478403 7 Answer by RHSeeger for whats the difference between a command and a statement RHSeeger 2009-09-25T16:50:39Z 2009-09-25T16:50:39Z <p>Traditionally, in Tcl, the phrase "everything is a command" means that there's no such thing as a "reserved word" command, or one that is defined by the system that you can't change. Every single executable piece of Tcl code is of the format:</p> <pre><code>command ?arg1? ... ?argN? </code></pre> <p>There's no such thing as a command that's part of the syntax and can't be overwritten (like "if" and other control structures in most languages). It's entirely possible to redefine the "if" command to do something slightly different.</p> <p>For example, you could redefine "while" as:</p> <pre><code>proc while {expression body} { for {} {[uplevel 1 expr $expression]} {} { uplevel 1 $body } } </code></pre> <p>The above code being untested... but it shows the general idea.</p> http://stackoverflow.com/questions/1477470/how-do-i-write-a-function-to-permanently-change-a-passed-string/1477705#1477705 0 Answer by RHSeeger for How do I write a function to permanently change a passed string RHSeeger 2009-09-25T14:41:20Z 2009-09-25T14:41:20Z <p>Your example may be over simplified, but just in case... Be careful of doing things like this because you're going to leak memory. After your function call, you no longer have a pointer to (part of) the original memory you allocated.</p> <p>As mentioned by <em>unwind</em>, returning the new pointer may be a better choice. While it achieves the same goal, it makes it more obvious that you need to keep the original pointer around for the purposes of releasing the memory. The counter argument being that it gives the impression that you can free the original pointer once you have the return value, which you can't do because they both point at (different locations) in the same memory block.</p> http://stackoverflow.com/questions/485120/will-emacs-make-me-a-better-programmer/1472061#1472061 0 Answer by RHSeeger for Will emacs make me a better programmer? RHSeeger 2009-09-24T14:27:52Z 2009-09-24T14:27:52Z <p>I'd argue that the best programmers tend to be the ones that will take the time to customize their environment, making it faster/easier to perform the tasks that they are likely to do. Emacs is one of the most powerful editors when it comes to customizing your environment. It has a steep learning curve but, once you're past that, there's virtually no limit to what you can make it do for you.</p> <p>Someone once said that the best programmers are the lazy ones; the ones that, once they need to do something more than once, find a way to automate it so that it takes less effort to do. Emacs allows you to be very, very lazy ;)</p> http://stackoverflow.com/questions/1467390/what-is-the-best-way-in-tcl-v8-4-to-have-a-proc-return-an-array/1467466#1467466 0 Answer by RHSeeger for What is the best way in Tcl v8.4 to have a proc return an array? RHSeeger 2009-09-23T17:25:00Z 2009-09-23T17:25:00Z <p>My preference, if you need to use arrays, is the [array get/set] combo you showed:</p> <pre><code>proc mine {} { array set foo { red 1 blue 2 green 3 } array get foo } tcl&gt; array set foo [mine] 2 </code></pre> <p>That being said, if you're using Tcl 8.5 or later, you can consider using dicts. They're generally going to be faster and cleaner.</p> http://stackoverflow.com/questions/1460136/why-pysqlite-does-not-work-properly/1460176#1460176 2 Answer by RHSeeger for Why pysqlite does not work properly? RHSeeger 2009-09-22T13:41:09Z 2009-09-22T13:41:09Z <blockquote> <p>I just ignored the last line and decided to continue.</p> </blockquote> <p>You can't just ignore the last line. It was telling you there was an error, so it couldn't compile. The next thing you ran told you it couldn't install because it couldn't compile. Then, your python told you it couldn't run the code because it wasn't installed. You need to get the compile step working before you move on to installing it.</p> http://stackoverflow.com/questions/1455898/how-to-do-apply-in-tcl-8-4/1456638#1456638 0 Answer by RHSeeger for How to do apply in Tcl 8.4? RHSeeger 2009-09-21T20:23:11Z 2009-09-21T20:23:11Z <p><strong>Short answer:</strong></p> <p>If you have the command name in a variable, you can run it by placing the variable as the first word of the line:</p> <pre><code>set mycommand puts $mycommand "hello world" </code></pre> <p><strong>Longer answer:</strong></p> <p>You have arguments you want expanded, without breaking the edge cases for your command, so you can use eval to "reparse" the line once you create it. Basically, you can use "eval" to expand all the arguments, then use "list" to protect certain ones from expansion</p> <pre><code>% proc {my llength of args} {args} { return [llength $args] } % set mycommand {my llength of args} % set args "1 2 3" % eval $mycommand $args ;# Expands the command, so may blow up ambiguous command name "my": {my llength} {my llength of args} % eval [list $mycommand] [list $args] ;# protect the args, so it's not expanded, not what you want 1 % eval [list $mycommand] $args ;# Protect the things you don't want expanded (command named), but allow the args to be expanded to individual arguments 3 </code></pre> http://stackoverflow.com/questions/1454668/jsr168-portlet-request-cuts-param-value-after-symbol/1455068#1455068 1 Answer by RHSeeger for JSR168 portlet request cuts param value after # symbol RHSeeger 2009-09-21T15:21:45Z 2009-09-21T15:21:45Z <p>Anything after the # in an URL specifies the location on the page the browser should display; it's not part of the URL itself. As such, if you want an actual # in your URL, it needs to be escaped (if the parser is actually compliant).</p> <p>In theory, you could parse the whole URL being sent to you manually, but the better solution is to get the caller of your page to send you a correct URL in the first place (well, a URL that represents what they want, since the one in question is valid, per se).</p> http://stackoverflow.com/questions/1450354/unit-testing-how-much-more-time-does-it-really-add/1450385#1450385 0 Answer by RHSeeger for Unit Testing - how much more time does it really add? RHSeeger 2009-09-20T05:42:09Z 2009-09-20T05:42:09Z <p>For my programming, I tend to only test that parts of the code that I can't intuitively look at and know it's going to work (which some people will argue isn't enough, but that's neither here nor there). </p> <p>I've been programming that way a long time, and that I use those tests to help me write my code in the first place. Given that, the time to write my tests add, basically, nothing to my overall development time. If I skipped writing the tests I do, it "might" save me 10% of my time overall, if that.</p> <p>When I first started using automated testing, I'd say a doubling over the overall time to write code is a fair estimate. But, over time, I've gotten to where I am not (adding next to no time). Honestly, it's something you get used to and it becomes part of how you design your code in the first place.</p> <p>Edit: It occurs to me to add that there are times when writing the test code still adds a fair amount of time to my coding, sometimes well more than double. That being said, those times are few and far between as I tend to avoid code that does so... it's a code smell to me.</p> http://stackoverflow.com/questions/1784848/create-a-fully-featured-environment-for-tcl-tk-development-under-windows/1784919#1784919 Comment by RHSeeger on Create a Fully Featured Environment For Tcl/Tk Development Under Windows RHSeeger 2009-11-23T19:22:07Z 2009-11-23T19:22:07Z As programming languages Python and Perl are very limited. But Tk has bindings in the language it is actually developed for, Tcl. http://stackoverflow.com/questions/1779253/tcl-as-a-server-side-programming-language/1779284#1779284 Comment by RHSeeger on TCL as a Server Side Programming Language RHSeeger 2009-11-23T14:43:27Z 2009-11-23T14:43:27Z @dmullins: They won't. AOLServer works just like any other app server; it evaluates the page code and sends normal html/css/js/whatever back to the user. I'm a huge fan of AOLServer, personally. http://stackoverflow.com/questions/449409/does-assigning-objects-to-null-in-java-impact-garbage-collection/938080#938080 Comment by RHSeeger on Does assigning objects to null in Java impact garbage collection? RHSeeger 2009-11-18T19:48:33Z 2009-11-18T19:48:33Z That is, imo, a solid foray into the world of straw man arguments. Just because you CAN create a situation where setting the variable to null will solve the issue in that particular case (and I'm not convinced that you have done such) does not imply that setting it to null is a good idea in every case. Adding in the code to set every variable you're not using anymore to null, even when they'd go out of scope shortly thereafter, just adds to code bloat and makes the code less maintainable. http://stackoverflow.com/questions/1755415/how-do-i-get-stdout-from-tcl-into-a-python-string-variable-when-using-tkinter/1755696#1755696 Comment by RHSeeger on How do I get stdout from tcl into a python string variable when using tkinter? RHSeeger 2009-11-18T15:03:05Z 2009-11-18T15:03:05Z Luckily, Tcl is amazingly easy to learn. A person can easily get to the point where they can write useful code in it in a day or so. http://stackoverflow.com/questions/1711005/why-doesnt-c-switch-statement-allow-using-typeof-gettype Comment by RHSeeger on Why doesn't C# switch statement allow using typeof/GetType() ? RHSeeger 2009-11-10T20:48:57Z 2009-11-10T20:48:57Z @Erryn - Wow, so the reason is &quot;people are too stupid to understand the concept that the order you specify switch cases impacts which one is evaluated&quot;. There are a number of things I envy about C#, but there are so many things like this, where the devs play it safe because there are stupid people in the world, that makes me reconsider. http://stackoverflow.com/questions/1667689/who-owns-documentation/1667724#1667724 Comment by RHSeeger on Who owns documentation? RHSeeger 2009-11-03T15:06:11Z 2009-11-03T15:06:11Z IMHO a technical writer should be able to write decent software. If he can't, then cut his salary and hire a decent software developer. Honestly, I find the opinion silly. If you're paying someone to be a software developer (with a salary for that role), then you shouldn't expect them to be filling other roles. Should they be able to document their system/tool well enough for an actual writer to actually produce documentation? Sure... but you make is sound like &quot;technical writing&quot; isn't a distinct skillset. http://stackoverflow.com/questions/42934/whats-with-the-love-of-dynamic-languages/1229675#1229675 Comment by RHSeeger on What's with the love of dynamic Languages RHSeeger 2009-11-03T14:19:28Z 2009-11-03T14:19:28Z @erikkallen: Its the same as learning what the different inputs to a standard library are for any other language. In fact, every command in core Tcl is, more or less, just part of the standard library. In theory, there are no commands that couldn't be removed and re-implemented as pure Tcl code. That being said, the inputs and what they mean are fairly consistent across that library (ie, end means the same thing across all the commands) http://stackoverflow.com/questions/42934/whats-with-the-love-of-dynamic-languages/1229675#1229675 Comment by RHSeeger on What's with the love of dynamic Languages RHSeeger 2009-10-30T14:16:25Z 2009-10-30T14:16:25Z I'll be a slight bit pedantic and point out that it doesn't add any keywords to the language itself, it adds that to that command. That being said, it's a matter of being clearer. The term &quot;end&quot; expresses the intent/meaning rather than how to get there; it says &quot;the last element&quot;. http://stackoverflow.com/questions/116121/do-you-keep-your-project-files-under-version-control/1638643#1638643 Comment by RHSeeger on Do you keep your project files under version control? RHSeeger 2009-10-28T20:55:49Z 2009-10-28T20:55:49Z &quot;...changes her pom using m2eclipse...&quot;? What does m2eclipse have to do with the pom file? Certainly it uses it, but changes to the pom should be independent of the plugin. http://stackoverflow.com/questions/116121/do-you-keep-your-project-files-under-version-control/119377#119377 Comment by RHSeeger on Do you keep your project files under version control? RHSeeger 2009-10-28T20:53:19Z 2009-10-28T20:53:19Z So, the VC repository should have the config files for every IDE? NetBeans, Eclipse, Emacs, vi, whatever else? I specifically disagree with the idea that these files because the developer should be responsible for setting up their own IDE. http://stackoverflow.com/questions/1614520/what-are-common-file-extensions-for-web-programming-languages/1614557#1614557 Comment by RHSeeger on What are common file extensions for web programming languages? RHSeeger 2009-10-23T20:24:12Z 2009-10-23T20:24:12Z AOLServer developers are, apparently, better at mapping clean URLs to the underlying pages I guess. http://stackoverflow.com/questions/1602076/string-substitution-using-tcl-api/1602326#1602326 Comment by RHSeeger on String substitution using tcl API RHSeeger 2009-10-21T22:05:01Z 2009-10-21T22:05:01Z The code inside the proc is equivalent. The proc itself uses uplevel specifically to make sure that code/variable substitution happens at the stack level it was called from. You couldn't use [eval [concat ...]] inside my proc and get the same results. http://stackoverflow.com/questions/1596711/passing-list-to-tcl-procedure/1598108#1598108 Comment by RHSeeger on Passing list to Tcl procedure RHSeeger 2009-10-21T03:08:48Z 2009-10-21T03:08:48Z I disagree that you'd necessarily code myprocedure to take a variable number of arguments (ie, use &quot;args&quot;). Whether you do so depends entirely on whether or not you need it to take a variable number of inputs, not on how one particular caller happens to have it's inputs available to it. http://stackoverflow.com/questions/1597154/do-autoboxing-and-unboxing-behave-differently-in-java-and-c/1597222#1597222 Comment by RHSeeger on Do autoboxing and unboxing behave differently in Java and C# RHSeeger 2009-10-20T20:55:58Z 2009-10-20T20:55:58Z I was under the impression that List&lt;Double&gt; existed long before Type Erasure in Java, or am I misunderstanding what you're saying? http://stackoverflow.com/questions/1591227/classcastexception-when-eclipse-fixed-my-code/1591278#1591278 Comment by RHSeeger on ClassCastException when eclipse "fixed" my code RHSeeger 2009-10-19T21:31:38Z 2009-10-19T21:31:38Z Because Type Erasure is ... annoying.