RHSeeger

1,840
Reputation
90 views

Registered User

Name RHSeeger
Member for 1 year
Seen 1 hour ago
Website
Location New York City Area
Age
1d
answered Input from keyboard in Tcl
2d
revised Encode value as base64
added 75 characters in body
2d
answered Encode value as base64
Nov
23
comment TCL as a Server Side Programming Language
@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.
Nov
18
comment Does assigning objects to null in Java impact garbage collection?
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.
Nov
18
comment How do I get stdout from tcl into a python string variable when using tkinter?
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.
Nov
10
comment Why doesn’t C# switch statement allow using typeof/GetType() ?
@Erryn - Wow, so the reason is "people are too stupid to understand the concept that the order you specify switch cases impacts which one is evaluated". 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.
Nov
9
answered maven - is it a good / common practice to use it only for dependency mgmt and then let the ant do everything else..?
Nov
5
accepted Tcl for getting ASCII code for every character in a string
Nov
4
accepted Escaping an apostrophe in Java
Nov
4
answered Escaping an apostrophe in Java
Nov
4
answered Tcl for getting ASCII code for every character in a string
Nov
3
comment Who owns documentation?
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 "technical writing" isn't a distinct skillset.
Nov
3
comment What’s with the love of dynamic Languages
@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)
Oct
30
comment What’s with the love of dynamic Languages
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 "end" expresses the intent/meaning rather than how to get there; it says "the last element".
Oct
30
awarded  Enlightened
Oct
28
comment Do you keep your project files under version control?
"...changes her pom using m2eclipse..."? 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.
Oct
28
comment Do you keep your project files under version control?
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.
Oct
27
awarded  Necromancer
Oct
23
comment What are common file extensions for web programming languages?
AOLServer developers are, apparently, better at mapping clean URLs to the underlying pages I guess.
Oct
23
answered What are common file extensions for web programming languages?
Oct
23
answered tcl: how to use the value of a variable to create a new variable
Oct
23
accepted What is difference in several styles for proc syntax in tcl?
Oct
23
answered What is difference in several styles for proc syntax in tcl?
Oct
23
answered Why is determining if a function is pure difficult?
Oct
23
answered Design of an Alternative (Fluent?) Interface for Regular Expressions
Oct
21
comment String substitution using tcl API
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.
Oct
21
accepted String substitution using tcl API
Oct
21
answered What are the diferences between <b>text</b>, <strong>Text</strong> and <span class=”bold”>Text</span>?
Oct
21
revised String substitution using tcl API
added 477 characters in body
Oct
21
answered String substitution using tcl API
Oct
21
comment Passing list to Tcl procedure
I disagree that you'd necessarily code myprocedure to take a variable number of arguments (ie, use "args"). 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.
Oct
20
revised Passing list to Tcl procedure
edited body
Oct
20
comment Do autoboxing and unboxing behave differently in Java and C#
I was under the impression that List<Double> existed long before Type Erasure in Java, or am I misunderstanding what you're saying?
Oct
20
revised Passing list to Tcl procedure
added 80 characters in body
Oct
20
answered Passing list to Tcl procedure
Oct
19
comment ClassCastException when eclipse “fixed” my code
Because Type Erasure is ... annoying.
Oct
19
answered Is making an empty string constant worth it?
Oct
19
comment Why won’t Tcl die?
To be fair, it's bad Tcl... it's possible to write bad code in any language.
Oct
18
comment Why won’t Tcl die?
It's a standard scripting language of it's time (like perl, etc) that's based on a Lisp syntax rather than C. I honestly don't understand why that's so hard for people to grasp.
Oct
16
comment O(nlogn) Algorithm - Find three evenly spaced ones within binary string
s/question on an Algorithms test/thought for a Master's thesis/
Oct
15
comment O(nlogn) Algorithm - Find three evenly spaced ones within binary string
It looks like you're converting a problem with N elements into 2 problems with N-1 elements. Dividing it in half would mean converting it into 2 problems with N/2 elements.
Oct
15
comment Is conversion to String using (”” + <int value>) bad practice?
+1 for checking the source and reporting back. Admittedly, may be considered premature optimization, but good information nonetheless.
Oct
14
comment Why do I need to use break?
@ScottDorman - There is no fall-through... so reorganization wouldn't change anything if the break didn't need to be there. If there was fall-through, and code re-ordering could cause a problem, then the break wouldn't be required anyways.
Oct
14
comment Why do I need to use break?
There's no confusion at all. Case branches in C# do not fall through. Hence, the 0 case above would do nothing. The break statement in C# switches serves no purpose whatsoever, other than adding verbosity to make things clearer for people coming from other languages that had different rules.
Oct
14
comment O(nlogn) Algorithm - Find three evenly spaced ones within binary string
It would be amusing, if somewhat painful, if the answer the professor expected is "There is no algorithm with a complexity of better than n^2, and here's why...".
Oct
14
comment O(nlogn) Algorithm - Find three evenly spaced ones within binary string
A random string would have, in general, an equal number of 1s and 0s. Your array of indexes would be of length n/2... it grows in length at a speed of n/2, so the algorithmic complexity should be unchanged at n^2.
Oct
14
comment O(nlogn) Algorithm - Find three evenly spaced ones within binary string
You still seem to have two loops of O(n), nested, which makes it O(n^2)
Oct
14
revised O(nlogn) Algorithm - Find three evenly spaced ones within binary string
added 272 characters in body
Oct
14
revised O(nlogn) Algorithm - Find three evenly spaced ones within binary string
added 948 characters in body