User AnSGri - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T06:01:41Zhttp://stackoverflow.com/feeds/user/1764http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/366502/do-you-write-interactive-console-applications4Do you write interactive console applications?AnSGri2008-12-14T12:45:03Z2009-11-24T03:10:43Z
<p>I believe people still write a lot of console applications, including interactive ones, especially small utilities and administrative interfaces. Mostly for sake of simplicity.</p>
<p>Do you write interactive console applications? Do you think it should be even easier than already is?</p>
<p><strong>U:</strong> for clarity, let's define 'interactive console application' an any application running in terminal listening to user's commands. I.e. some command shell.</p>
<p><em>Java and .NET suggestions especially welcome.</em></p>
<p>I do have a very simple solution: <a href="http://cliche.sourceforge.net/" rel="nofollow">cliche.sourceforge.net</a>.</p>
<pre>
package asg.cliche.sample;
import asg.cliche.Command;
import asg.cliche.ShellFactory;
import java.io.IOException;
public class HelloWorld {
@Command // One,
public String hello() {
return "Hello, World!";
}
@Command // two,
public int add(int a, int b) {
return a + b;
}
public static void main(String[] args) throws IOException {
ShellFactory.createConsoleShell("hello", "", new HelloWorld())
.commandLoop(); // and three.
}
}
</pre>
<p>Three additional lines of code aren't bad, I think...</p>
http://stackoverflow.com/questions/1524272/how-to-deal-with-look-and-feel-differences-between-standard-dialogs-and-wpf1How to deal with look-and-feel differences between standard dialogs and WPF?AnSGri2009-10-06T08:23:16Z2009-10-06T08:30:43Z
<p>Hello everybody,
please help resolving one look-and-feel inconsistency issue in WPF.</p>
<p>Look at the picture from <a href="http://msdn.microsoft.com/en-us/magazine/cc785480.aspx" rel="nofollow">MSDN Magazine article on Advanced WPF</a>:</p>
<p><img src="http://i.msdn.microsoft.com/cc785480.fig08%28en-us%29.gif" alt="Different button appearance" /></p>
<p><code>MessageBox.Show(message)</code> is called, and why the button on it looks different than buttons on the main window?</p>
<p>The Open File standard WPF dialog has the same problem, only worse: on Vista it looks like old XP (if not win2k) dialog, when all other apps use new cool Vista dialogs.</p>
<p>So,</p>
<ul>
<li>What explains such strange behavior of PresentationFramework?</li>
<li>How can I make my app use default system dialogs, with system styles, that don't look like win2k?</li>
</ul>
http://stackoverflow.com/questions/445899/is-there-a-library-that-generates-uis-based-on-metadata-declarations-like-this2Is there a library that generates UIs based on metadata declarations like this>>?AnSGri2009-01-15T07:06:56Z2009-10-04T13:37:07Z
<p>Hello,<br />
Do you know about a library that allows us to generate UI by just stating that it should be generated?</p>
<p>I think there must be a person who have implemented a mechanism allowing us to transform code like this:</p>
<pre><code>class Main {
@Command
int add(int a, int b) {
return a+b;
}
}
</code></pre>
<p>into, say, a dialog with 2 text fields and a button? Or into a webform? You've got the idea, right?</p>
<p>The type of UI and the language doesn't matter, if it allows us to simply say, "This should be a command" without those lots of XML files scattered all over the application.</p>
<p>And, btw, what do you think about this kind of meta-programming?</p>
http://stackoverflow.com/questions/454937/the-future-of-naked-objects-pattern-and-ui-auto-generation4The future of Naked Objects pattern (and UI auto-generation)AnSGri2009-01-18T10:34:05Z2009-10-04T13:36:24Z
<p>I ask about the <a href="http://en.wikipedia.org/wiki/Naked_objects" rel="nofollow">pattern</a>, not <a href="http://nakedobjects.org" rel="nofollow">framework</a>. This is kind of follow-up to a question on <a href="http://stackoverflow.com/questions/445899/is-there-a-library-that-generates-uis-based-on-metadata-declarations-like-this">UI auto-generation</a>.</p>
<ol>
<li><p>Do you believe in the concept of UI auto-generation from metadata?</p></li>
<li><p>What kind of problems can be approached this way?</p></li>
</ol>
<p>The question arose when I've created a <a href="http://cliche.sourceforge.net" rel="nofollow">small library</a> to support my student projects, which generates interactive CLI in runtime based on object's metadata. And I think CLI it generates is quite decent.</p>
<p>On the other extreme is the <a href="http://nakedobjects.org" rel="nofollow">Naked Objects Framework</a>, which is rather universal, but UI it generates is horrible, IMO.</p>
<p>It's clear, every problem is specific and needs specific UI, but maybe there are several classes of problems where auto-generation is acceptable?</p>
http://stackoverflow.com/questions/638962/how-do-you-properly-compute-pairwise-differences-in-scheme1How do you properly compute pairwise differences in Scheme?AnSGri2009-03-12T14:46:16Z2009-04-06T12:43:48Z
<p>Hello,</p>
<p>Given a list of numbers, say, <code>(1 3 6 10 0)</code>, how do you compute differences (x<sub>i</sub> - x<sub>i-1</sub>), provided that you have x<sub>-1</sub> = 0 ?</p>
<p>(the result in this example should be <code>(1 2 3 4 -10)</code>)</p>
<p>I've found this solution to be correct:</p>
<pre>
(define (pairwise-2 f init l)
(first
(foldl
(λ (x acc-data)
(let ([result-list (first acc-data)]
[prev-x (second acc-data)])
(list
(append result-list (list(f x prev-x)))
x)))
(list empty 0)
l)))
(pairwise-2 - 0 '(1 3 6 10 0))
;; => (1 2 3 4 -10)
</pre>
<p>However, I think there should be more elegant though no less flexible solution. It's just ugly.</p>
<p>I'm new to functional programming and would like to hear any suggestions on the code.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/381502/is-there-a-way-to-obtain-names-of-method-parameters-in-java5Is there a way to obtain names of method parameters in Java?AnSGri2008-12-19T16:50:24Z2009-03-30T22:33:32Z
<p>Hello,<br />
I'm writing small and very <a href="http://en.wikipedia.org/wiki/DRY" rel="nofollow">DRY</a> framework, which heavily relies on metadata. I'd like to know if there is a way to obtain method parameter names, i.e. given some method</p>
<pre><code>public void a(int myIntParam, String theString) { ... }
</code></pre>
<p>get the strings <code>"myIntParam"</code> and <code>"theString"</code>.</p>
<p>I know I could annotate parameters, but that wouldn't be nice...</p>
<pre><code>public void a(
@Param("myIntParam") int myIntParam,
@Param("theString") String theString
) { ... }
</code></pre>
http://stackoverflow.com/questions/638962/how-do-you-properly-compute-pairwise-differences-in-scheme/639253#6392531Answer by AnSGri for How do you properly compute pairwise differences in Scheme?AnSGri2009-03-12T15:49:01Z2009-03-12T15:49:01Z<p>After refining and adapting to PLT Scheme <a href="http://stackoverflow.com/users/20481/plinth">plinth</a>'s <a href="http://stackoverflow.com/questions/638962/how-do-you-properly-compute-pairwise-differences-in-scheme/639081#639081">code</a>, I think nearly-perfect solution would be: </p>
<pre>
(define (pairwise-apply f l0 l)
(if (empty? l)
'()
(let ([l1 (first l)])
(cons (f l1 l0) (pairwise-apply f l1 (rest l))))))
</pre>
http://stackoverflow.com/questions/199177/what-are-the-good-free-programming-text-editors-for-windows/622094#6220941Answer by AnSGri for What are the good free programming text editors for Windows?AnSGri2009-03-07T16:35:38Z2009-03-07T16:35:38Z<p><a href="http://ourcomments.org/Emacs/EmacsW32.html" rel="nofollow">One True Editor</a></p>
http://stackoverflow.com/questions/515996/java-for-intermediate-net-developer/516270#5162700Answer by AnSGri for Java for intermediate .NET DeveloperAnSGri2009-02-05T15:09:18Z2009-02-05T15:09:18Z<p>Whatever your level is, <a href="http://www.ibm.com/developerworks/library/j-jsf1/" rel="nofollow">JSF for Nonbelievers</a> is the best introduction to JSP/JSF.</p>
http://stackoverflow.com/questions/477502/what-is-good-online-documentation/477973#4779731Answer by AnSGri for What is Good Online Documentation?AnSGri2009-01-25T17:42:55Z2009-01-25T17:42:55Z<p><em>Real</em> code examples, as well as minimal.</p>
<p>Hello-world–style examples are great, but we need to know all the caveats that should be taken into account in the production code, i.e. security implications, thread unsafety, etc.</p>
http://stackoverflow.com/questions/469799/what-are-the-appropriate-uses-for-ms-access/469834#4698340Answer by AnSGri for What are the appropriate uses for MS Access?AnSGri2009-01-22T16:26:42Z2009-01-22T16:26:42Z<p>I think Access is somewhat different from other Office apps in a way that to be <em>somehow</em> productive with it you should know a lot of things, i.e. database basics.</p>
<p>In my limited experience I've never met a person who <em>really</em> knows how to use Word or Excel effectively, who knows how to use every obscure feature. So most people use Office when they need something quick and dirty but decent-looking.</p>
http://stackoverflow.com/questions/458802/doesnt-linq-to-sql-miss-the-point-arent-orm-mappers-subsonic-etc-sub-opti/460185#4601856Answer by AnSGri for Doesn't Linq to SQL miss the point? Aren't ORM-mappers (SubSonic, etc.) sub-optimal solutions?AnSGri2009-01-20T05:14:41Z2009-01-20T05:14:41Z<p>As Dmitriy <a href="http://stackoverflow.com/questions/458802/doesnt-linq-to-sql-miss-the-point-arent-orm-mappers-subsonic-etc-sub-opti#458860">pointed out</a>, developers don't know SQL. More precisely, the majority <em>know</em> SQL, but don't <em>understand</em> it and definitely don't like, so they tend to search for the magic bullet, creating the demand for things like Linq to make the illusion (hm, abstraction) that they don't use anything different than their beloved classes.</p>
<p>That's very bad, as <a href="http://www.joelonsoftware.com/articles/LeakyAbstractions.html" rel="nofollow">the law of leaky abstractions</a> always holds true.</p>
<p>Some ORM solutions are definite good (e.g. JPA/Hibernate), not because using them you don't have to worry about SQL. In fact, to use JPA effectively you need very deep understanding of the DB in general, querying abilities in particular. The good point is that they <em>make the machine do the boring work</em>, to the point where it autogenerates entire database from scratch.</p>
<p>Linq to SQL, as I think, doesn't solve real problem. It's kind of other presentation, nothing more. It might be good, though it overcomplicates the already complex language. On the other hand, Linq to Objects is very interesting concept, because it's kind of sql-querying the collections.</p>
http://stackoverflow.com/questions/457822/what-are-the-things-java-got-right/458873#4588730Answer by AnSGri for What are the things Java got right? AnSGri2009-01-19T19:40:42Z2009-01-19T19:40:42Z<p>The most important thing after GC is reflection. It isn't new, but sould be everywhere from now on.</p>
http://stackoverflow.com/questions/366453/best-practices-for-debugging/366471#3664715Answer by AnSGri for Best practices for debuggingAnSGri2008-12-14T12:15:57Z2008-12-14T12:15:57Z<p>One very best practice is not diving into debugger immediately but look at the code and <em>think hard</em> for some time.</p>
http://stackoverflow.com/questions/366225/where-is-ada-used-apart-from-safety-critical-software/366468#3664681Answer by AnSGri for Where is Ada used (apart from safety-critical software)?AnSGri2008-12-14T12:14:05Z2008-12-14T12:14:05Z<p>I don't know for sure, but, having read a lot about Ada, I considered it to be perfectly appropriate for every physics-related computational/automation tasks, because of all these compile-time and runtime checks (one tasty thing is that you can make two incompatible floating-point types, e.g. Length and Mass).</p>
http://stackoverflow.com/questions/366295/is-programming-for-the-elite-or-can-everybody-learn-to-program/366464#3664640Answer by AnSGri for Is programming for the elite or can everybody learn to programAnSGri2008-12-14T12:07:44Z2008-12-14T12:07:44Z<p>The statement that some people just can't program makes sense to me. However, today's programming languages are mostly imperative ones (Java, C, whatever you name). And there are completely different programming — functional programming. These may be more appropriate for some people, I think — and these people will be Great Developers, because so few today realize the potential of functional programming.</p>
<p>I can't explain better because I haven't got the functional paradigm yet...</p>
http://stackoverflow.com/questions/256910/jstl-foreach-tag-problems-with-enumeration-and-with-understanding-how-it-should1JSTL forEach tag: problems with enumeration, and with understanding how it should workAnSGri2008-11-02T14:15:20Z2008-11-02T16:35:26Z
<p>Hello,<br />
I've experienced rather strange behavior of JSTL forEach tag.</p>
<p>I have some bean called SessionBean:</p>
<pre><code>public class SessionBean {
private Collection<MyObject> objects;
public Collection<MyObject> getObjects() {return objects;}
...
}
</code></pre>
<p>And a simple JSP page like that:</p>
<pre><code><%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
<%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<body>
<f:view>
<h:form>
<c:forEach var="myObject" items="#{SessionBean.objects}">
<h:outputText value="#{myObject}" /> <br />
</c:forEach>
</h:form>
</f:view>
</body>
</code></pre>
<p>And, it doesn't work. Exeption thrown is</p>
<pre>
javax.servlet.jsp.JspTagException: Don't know how to iterate over supplied "items" in <forEach>
at org.apache.taglibs.standard.tag.common.core.ForEachSupport.toForEachIterator(ForEachSupport.java:255)
at org.apache.taglibs.standard.tag.common.core.ForEachSupport.supportedTypeForEachIterator(ForEachSupport.java:219)
....
</pre>
<p><em>Why?</em><br />
And then I change <code>items="#{SessionBean.objects}"</code> to items=<code>"${SessionBean.objects}"</code>, and there's no exception. Except for MyObjects aren't printed.</p>
<p>Then, I make the same change to <code><h:outputText value="#{myObject}" /></code>, and it's invalid value for this attribute.</p>
<p>Finally, replacing JSF <code>outputText</code> tag with just <code>${myObject}</code> works as expected.</p>
<p>Could somebody explain, what happens here on each phase, please?</p>
<p><strong>U:</strong> SessionBean is managed by JSF, and surely was created, for it performs some actions in the header.</p>
<p><strong>RESOLUTION:</strong> The problem proved to be due to incompatibility between JSTL and JSF in J2EE 1.4. Switching to J2EE 5 made the first variant work just fine.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/221277/jtidy-node-findbody-how-to-use/221402#2214020Answer by AnSGri for JTidy Node.findBody() — How to use?AnSGri2008-10-21T10:30:38Z2008-10-21T10:30:38Z<p>I found there's <em>much</em> simpler method to extract the body:</p>
<pre>
tidy = new Tidy();
tidy.setXHTML(true);
<b>tidy.setPrintBodyOnly(true);</b>
</pre>
<p>And then use tidy on the Reader-Writer pair.</p>
<p>Simple as it should be.</p>
http://stackoverflow.com/questions/221277/jtidy-node-findbody-how-to-use0JTidy Node.findBody() — How to use?AnSGri2008-10-21T09:18:52Z2008-10-21T10:30:38Z
<p>Hello,<br />
I'm trying to do XHTML DOM parsing with JTidy, and it seems to be rather counterintuitive task. In particular, there's a method to parse HTML:</p>
<pre><code>Node Tidy.parse(Reader, Writer)
</code></pre>
<p>And to get the <body /> of that Node, I assume, I should use</p>
<pre><code>Node Node.findBody(TagTable)
</code></pre>
<p>Where should I get an instance of that TagTable? (Constructor is protected, and I haven't found a factory to produce it.)</p>
<p>I use JTidy 8.0-SNAPSHOT.</p>
http://stackoverflow.com/questions/194349/what-is-the-proper-way-to-store-apps-conf-data-in-java3What is the proper way to store app's conf data in Java?AnSGri2008-10-11T17:29:38Z2008-10-18T02:45:28Z
<p>Hello, colleagues,<br />
where do you store <em>user-specific</em> and <em>machine-specific</em> <strong>runtime</strong> configuration data for J2SE application?</p>
<p>(For example, <em>C:\Users\USERNAME\AppData\Roaming\</em> on Windows and <em>/home/username</em> on Unix)</p>
<p>How do you get these locations in the filesystem in platform-independent way?</p>
<p>Thanks for your advice!</p>
http://stackoverflow.com/questions/138999/how-to-output-html-from-jsp-block0How to output HTML from JSP <%! ... %> block?AnSGri2008-09-26T12:03:10Z2008-09-26T17:04:19Z
<p>I just started learning JSP technology, and came across a wall.</p>
<p><em>How do you output HTML from a method in <%! ... %> JSP declaration block?</em></p>
<p>This doesn't work:</p>
<pre><code><%!
void someOutput() {
out.println("Some Output");
}
%>
...
<% someOutput(); %>
</code></pre>
<p>Server says there's no “out”.</p>
<p><strong>U:</strong> I do know how to rewrite code with this method returning a string, but is there a way to do this inside <%! void () { } %> ? Though it may be non-optimal, it's still interesting.</p>
http://stackoverflow.com/questions/70762/what-is-the-license-for-unlicensed-material3What is the license for unlicensed material?AnSGri2008-09-16T09:38:30Z2008-09-16T15:42:12Z
<p>Suppose I've found a “text” somewhere in open access (say, on public network share). I have no means to contact the author, I even don't know who is the author.</p>
<p>What can I legally do with such “text”?</p>
<p><strong>Update:</strong> I am not going to publish that “text”, but rather learn from it myself.</p>
<p><strong>Update:</strong> So, if I ever see an anonymous code, article, whatever, shouldn't I even open it, because otherwise I'd copy its contents to my brain?</p>
http://stackoverflow.com/questions/71491/how-do-you-grab-a-text-from-webpage-java1How do you grab a text from webpage (Java)?AnSGri2008-09-16T11:48:33Z2008-09-16T13:38:40Z
<p>I'm planning to write a simple J2SE application to aggregate information from multiple web sources.</p>
<p>The most difficult part, I think, is extraction of meaningful information from web pages, if it isn't available as RSS or Atom feeds. For example, I might want to extract a list of questions from stackoverflow, but I absolutely don't need that huge tag cloud or navbar.</p>
<p>What technique/library would you advice?</p>
<p><strong>Updates/Remarks</strong></p>
<ul>
<li>Speed doesn't matter — as long as it can parse about 5MB of HTML in less than 10 minutes.</li>
<li>It sould be really simple.</li>
</ul>
http://stackoverflow.com/questions/2658/version-control-getting-started/14729#147290Answer by AnSGri for Version Control. Getting started...AnSGri2008-08-18T14:47:18Z2008-08-18T14:47:18Z<p>Just use TortoiseSVN, and you can live even without knowing actual Subversion commands... But that's bad. Luckily there will always be a “great opportunity” to learn them by heart — when your priceless repository first gets corrupted.</p>
<p>Yes, it happens.</p>
http://stackoverflow.com/questions/1524272/how-to-deal-with-look-and-feel-differences-between-standard-dialogs-and-wpf/1524286#1524286Comment by AnSGri on How to deal with look-and-feel differences between standard dialogs and WPF?AnSGri2009-10-06T08:36:42Z2009-10-06T08:36:42ZIn fact, this three-part series answers all my questions. Thanks!http://stackoverflow.com/questions/381502/is-there-a-way-to-obtain-names-of-method-parameters-in-java/699302#699302Comment by AnSGri on Is there a way to obtain names of method parameters in Java?AnSGri2009-03-31T18:50:25Z2009-03-31T18:50:25ZVery good idea! I'll definitely convert all those @Param to single @Params.http://stackoverflow.com/questions/661758/when-will-you-switch-to-ie8/661812#661812Comment by AnSGri on When will you switch to IE8?AnSGri2009-03-20T07:32:24Z2009-03-20T07:32:24ZStrange.. It seems IE8 finally got all the neat features of both Firefox and Chrome, except performance, but with those colored tabs.http://stackoverflow.com/questions/638962/how-do-you-properly-compute-pairwise-differences-in-scheme/639081#639081Comment by AnSGri on How do you properly compute pairwise differences in Scheme?AnSGri2009-03-13T17:13:22Z2009-03-13T17:13:22ZSurprisingly, the code works, if you remove ((atom? list) list)
http://stackoverflow.com/questions/638962/how-do-you-properly-compute-pairwise-differences-in-scheme/642996#642996Comment by AnSGri on How do you properly compute pairwise differences in Scheme?AnSGri2009-03-13T17:12:07Z2009-03-13T17:12:07ZYes, this is the obvious solution, but I want an effective approach: the code will be called several thousand times.http://stackoverflow.com/questions/386854/how-do-you-type-lisp-efficiently-with-so-many-parentheses/387950#387950Comment by AnSGri on How do you type lisp efficiently, with so many parentheses?AnSGri2009-02-06T14:35:35Z2009-02-06T14:35:35ZI heard this thing is already implemented in Scheme.http://stackoverflow.com/questions/256985/who-is-the-community-user/256986#256986Comment by AnSGri on Who is the community user?AnSGri2009-01-22T19:38:34Z2009-01-22T19:38:34Z"Source" link is broken.http://stackoverflow.com/questions/467532/would-rich-text-help-comment-code/467552#467552Comment by AnSGri on Would rich-text help comment code?AnSGri2009-01-22T11:26:18Z2009-01-22T11:26:18ZXHTML is also too hard to write---my brain doesn't want to resolve <s and >s in math formulae.http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/156731#156731Comment by AnSGri on What's your favorite "programmer" cartoon?AnSGri2009-01-18T11:18:20Z2009-01-18T11:18:20ZWhat a sad tendency.http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/406788#406788Comment by AnSGri on What's your most controversial programming opinion?AnSGri2009-01-16T15:43:46Z2009-01-16T15:43:46ZI agree that every student should learn C, but in school Pascal is probably better---as it has much better(clear?) structure.http://stackoverflow.com/questions/445899/is-there-a-library-that-generates-uis-based-on-metadata-declarations-like-this/445970#445970Comment by AnSGri on Is there a library that generates UIs based on metadata declarations like this>>?AnSGri2009-01-15T13:34:33Z2009-01-15T13:34:33ZThanks, it seems to be exactly the thing I'm looking for.http://stackoverflow.com/questions/381502/is-there-a-way-to-obtain-names-of-method-parameters-in-java/381556#381556Comment by AnSGri on Is there a way to obtain names of method parameters in Java?AnSGri2008-12-19T17:22:59Z2008-12-19T17:22:59ZVery interesting thing.. But I don't want to introduce any dependences, and the way it operates is rather complicated.http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1727#1727Comment by AnSGri on What is the single most influential book every programmer should read?AnSGri2008-12-14T11:56:11Z2008-12-14T11:56:11ZThe book every engeneer should read, not only programmer!http://stackoverflow.com/questions/256910/jstl-foreach-tag-problems-with-enumeration-and-with-understanding-how-it-should/256914#256914Comment by AnSGri on JSTL forEach tag: problems with enumeration, and with understanding how it should workAnSGri2008-11-02T14:29:56Z2008-11-02T14:29:56ZThanks, updated the question that SessionBean was created.http://stackoverflow.com/questions/138999/how-to-output-html-from-jsp-block/139018#139018Comment by AnSGri on How to output HTML from JSP <%! ... %> block?AnSGri2008-09-26T16:48:32Z2008-09-26T16:48:32ZThank you for your nice answer, though it isn't what I'm looking for.