User ivan_ivanovich_ivanoff - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T05:01:55Z http://stackoverflow.com/feeds/user/76393 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/990477/how-to-calculate-the-entropy-of-a-file 6 How to calculate the entropy of a file? ivan_ivanovich_ivanoff 2009-06-13T10:23:12Z 2009-12-01T09:15:56Z <p>Hello!</p> <p>How to calculate the entropy of a file? <em>(Or let's just say a bunch of bytes)</em><br /> I have an idea, but I'm not sure that it's mathematically correct.</p> <p>My idea is the following:</p> <ul> <li>Create an array of 256 integers (all zeros).</li> <li>Traverse through the file and for each of its bytes,<br /> increment the corresponding position in the array.</li> <li>At the end: Calculate the "average" value for the array.</li> <li>Initialize a counter with zero,<br /> and for each of the array's entries:<br /> add the entry's difference to "average" to the counter.</li> </ul> <p>Well, now I'm stuck. How to "project" the counter result in such a way that all results would lie between 0.0 and 1.0? But I'm sure, the idea is inconsistent anyway...</p> <p>I hope someone has better and simpler solutions?</p> <p><em>Note: I need the whole thing to make assumptions on the file's contents:<br /> (plaintext, markup, compressed or some binary, ...)</em></p> http://stackoverflow.com/questions/1476757/jsr305-vs-jsr308-java-type-anotations-which-is-going-to-be-the-standard 1 JSR305 vs. JSR308 (Java Type Anotations) - Which is going to be the standard? ivan_ivanovich_ivanoff 2009-09-25T11:23:04Z 2009-11-18T15:25:47Z <p>Hello!</p> <p>There seem to be two different JSRs for annotations. </p> <p><a href="http://jcp.org/en/jsr/detail?id=305" rel="nofollow"><strong>JSR-305: Annotations for Software Defect Detection</strong></a> <a href="http://code.google.com/p/jsr-305/" rel="nofollow"><em>(additional resource)</em></a><br /> <a href="http://jcp.org/en/jsr/detail?id=308" rel="nofollow"><strong>JSR-308: Annotations on Java Types</strong></a> <a href="http://types.cs.washington.edu/jsr308/" rel="nofollow"><em>(additional resource)</em></a></p> <p>Both seem to be oriented towards static code analysis.</p> <p>Do you know:</p> <ul> <li>which of the both is going to be either in Java SE 7 or Java EE 6?</li> <li>how "stable" is each JSR?</li> <li>does the one supersedes (or obsoletes) the other?</li> </ul> http://stackoverflow.com/questions/980547/how-do-i-execute-ruby-template-files-erb-without-a-web-server-from-command-line 5 How do I execute ruby template files (ERB) without a web server from command line? ivan_ivanovich_ivanoff 2009-06-11T11:18:22Z 2009-11-11T13:29:10Z <p>Hello!</p> <p>I need <strong>ERB</strong> (Ruby's templating system) for templating of non-HTML files.<br /> <em>(Instead, I want to use it for source files such as .java, .cs, ...)</em></p> <p>How do I <strong>"execute"</strong> Ruby templates from command line?</p> http://stackoverflow.com/questions/753956/whats-the-upcoming-java-concurrency-library-jsr166y-jsr166z 5 What's the upcoming Java concurrency library: jsr166y? jsr166z? ivan_ivanovich_ivanoff 2009-04-15T22:16:05Z 2009-11-09T14:33:00Z <p>Hello!</p> <p>I wanted to play around with the upcoming concurrency library which is going to be included in<br /> Java 7 according to <a href="http://tech.puredanger.com/java7/#jsr166" rel="nofollow"><strong>this website</strong></a>.</p> <p>It seems to be named <strong>JSR166</strong>.</p> <p>In most places its reference implementation is referred as <strong>jsr166y</strong>, while few resources call it <strong>jsr166z</strong>.</p> <p>I discovered two totally <strong>different</strong> javadocs for each reference implementation.</p> <ul> <li>Docs for <a href="http://gee.cs.oswego.edu/dl/jsr166/dist/jsr166ydocs/" rel="nofollow"><strong>jsr166y</strong></a></li> <li>Docs for <a href="http://www.javac.info/jsr166z/" rel="nofollow"><strong>jsr166z</strong></a></li> </ul> <p>Now, which implementation is going to be included in Java 7?</p> <p><strong>EDIT</strong><br /> While people who answered suggest that jsr166y is the thing for Java 7, I discovered <a href="http://developers.sun.com/learning/javaoneonline/j1sessn.jsp?sessn=TS-5515&amp;yr=2008&amp;track=javase" rel="nofollow"><strong>this</strong> document (TS-5515)</a> from JavaOne. This document refers to Java 7 but mentions LinkedAsyncAction which is only present in jsr166z javadocs. (Confusion...)</p> http://stackoverflow.com/questions/1467991/ant-how-to-execute-a-command-for-each-file-in-directory 2 Ant: How to execute a command for each file in directory? ivan_ivanovich_ivanoff 2009-09-23T19:04:18Z 2009-10-27T23:19:33Z <p>Hello!</p> <p>I want to execute a command from an Ant buildfile, for each file in a directory.<br /> I am looking for a platform-independent solution.</p> <p>How do I do this?</p> <p><em>Sure, I could write a script in some scripting language, but this would add further dependencies to the project.</em></p> http://stackoverflow.com/questions/1513458/linux-is-this-a-correct-way-to-run-scripts-in-parallel 1 Linux: Is this a correct way to run scripts in parallel? ivan_ivanovich_ivanoff 2009-10-03T10:43:21Z 2009-10-03T11:12:38Z <p>Hello!</p> <p>I want to update a large amount of SVN-versioned projects at once, using a script. It takes very long when running update jobs one by one.</p> <p>So I tried to run the jobs in parallel. It seems to work, however I'm not sure if it's done correctly. Perhaps there are concurrency issues I didn't think of?</p> <p>Please take a look at the script:</p> <pre><code>#!/bin/sh time ( for f in `ls -d */` do ( OUTPUT=`svn update $f` echo -e "= = = = = = = = = = $f \n$OUTPUT" ) &amp; done wait ) </code></pre> <p>When I don't store the output first, it comes all mixed up.</p> <p>Do you think, it's OK this way?</p> <p><em>NOTE: The speed up was really about factor 20 for 40 projects, when there is not lot to update.</em></p> http://stackoverflow.com/questions/1497182/findbugs-jsr305-possibility-to-specify-default-behavior 4 Findbugs + JSR305: Possibility to specify default behavior? ivan_ivanovich_ivanoff 2009-09-30T10:06:04Z 2009-09-30T10:57:05Z <p>Hello!</p> <p><em>Note: those annotations, I'm talking about, are specified by JSR305.</em></p> <p>I have the latest Findbugs (1.3.9) and it finds errors <strong>correctly</strong> when some field, annotated with @Nonnull, is assigned to null.</p> <p>But, in my project, the "non-null logic" is the <strong>default</strong> case. I would say that <strong>null is explicitely allowed only in 5% of cases</strong>.</p> <p>So, it would be very inconvenient to annotate 95% of fields with @Nonnull. I would rather prefer to annotate those 5% of fields with @Nullable.</p> <p><em>I tried to annotate a whole package with @Nonnull, it doesn't change anything.</em></p> <p><strong>So, it is somehow possible to specify the default logic?</strong></p> http://stackoverflow.com/questions/1316791/how-can-i-change-the-namespace-on-every-node-in-a-dom/1495251#1495251 0 Answer by ivan_ivanovich_ivanoff for How can I change the namespace on every node in a DOM? ivan_ivanovich_ivanoff 2009-09-29T22:19:12Z 2009-09-29T22:19:12Z <p>See my post here: <a href="http://stackoverflow.com/questions/1492428/javadom-how-do-i-set-the-base-namespace-of-an-already-created-document/1492867#1492867">http://stackoverflow.com/questions/1492428/javadom-how-do-i-set-the-base-namespace-of-an-already-created-document/1492867#1492867</a></p> http://stackoverflow.com/questions/1492428/javadom-how-do-i-set-the-base-namespace-of-an-already-created-document 2 Java+DOM: How do I set the base namespace of an (already created) Document? ivan_ivanovich_ivanoff 2009-09-29T13:11:11Z 2009-09-29T14:21:58Z <p>Hello!</p> <p>I am dealing with an <strong>already created</strong> Document object. I have to be able to set it's base namespace (attribute name "xmlns") to certain value. My input is DOM and is something like:</p> <pre><code>&lt;root&gt;...some content...&lt;/root&gt; </code></pre> <p>What I need is DOM which is something like:</p> <pre><code>&lt;root xmlns="myNamespace"&gt;...some content...&lt;/root&gt; </code></pre> <p>That's it. Easy, isn't it? <strong>Wrong! Not with DOM!</strong></p> <h1>I have tried the following:</h1> <h3>1) Using doc.getDocumentElement().setAttribute("xmlns","myNamespace")</h3> <p>I get a document with empty xmlns (it works on <strong>any</strong> other attribute name!)</p> <pre><code>&lt;root xmlns=""&gt;...&lt;/root&gt; </code></pre> <h3>2) Using renameNode(...)</h3> <p>First <strong>clone</strong> the document:</p> <pre><code>Document input = /*that external Document whose namespace I want to alter*/; DocumentBuilderFactory BUILDER_FACTORY_NS = DocumentBuilderFactory.newInstance(); BUILDER_FACTORY_NS.setNamespaceAware(true); Document output = BUILDER_NS.newDocument(); output.appendChild(output.importNode(input.getDocumentElement(), true)); </code></pre> <p><em>I'm really missing document.clone(), but perhaps it's just me.</em></p> <p>Now <strong>rename the root node</strong>:</p> <pre><code>output.renameNode(output.getDocumentElement(),"myNamespace", output.getDocumentElement().getTagName()); </code></pre> <p>Now isn't <strong>that</strong> straightforward? ;)</p> <p>What I get now is:</p> <pre><code>&lt;root xmlns="myNamespace"&gt; &lt;someElement xmlns=""/&gt; &lt;someOtherElement xmlns=""/&gt; &lt;/root&gt; </code></pre> <p>So <em>(as all of us have expected, right?)</em>, this renames the namespace <strong>only of the the root node</strong>.</p> <p><em>Curse you, DOM!</em></p> <p>Is there any way to do this recursively (without writing an own recursive method)?</p> <h3>Please help ;)</h3> <p>Please don't advice me to do some fancy workaround, such as transforming DOM to something else, alter the namespace there, and transform it back. I need DOM because it's the fastest standard way to manipulate XML.</p> <p>Note: I'm using the latest JDK.</p> <p><strong>EDIT</strong><br /> Removed wrong assumptions from the question, which had to do with namespace <em>prefix</em>.</p> http://stackoverflow.com/questions/1492428/javadom-how-do-i-set-the-base-namespace-of-an-already-created-document/1492867#1492867 0 Answer by ivan_ivanovich_ivanoff for Java+DOM: How do I set the base namespace of an (already created) Document? ivan_ivanovich_ivanoff 2009-09-29T14:21:58Z 2009-09-29T14:21:58Z <p>Well, here goes the recursive "solution":<br /> <em>(I still hope that someone might find a better way to do this)</em></p> <pre><code>public static void renameNamespaceRecursive(Document doc, Node node, String namespace) { if (node.getNodeType() == Node.ELEMENT_NODE) { System.out.println("renaming type: " + node.getClass() + ", name: " + node.getNodeName()); doc.renameNode(node, namespace, node.getNodeName()); } NodeList list = node.getChildNodes(); for (int i = 0; i &lt; list.getLength(); ++i) { renameNamespaceRecursive(doc, list.item(i), namespace); } } </code></pre> <p>Seems to work, although I don't know if <strong>it's correct to rename only the node type ELEMENT_NODE</strong>, or if other node types must be renamed.</p> http://stackoverflow.com/questions/679533/exi-efficient-xml-interchange-coming-are-xml-apis-ready 0 EXI (efficient XML interchange) coming... Are XML APIs ready? ivan_ivanovich_ivanoff 2009-03-24T22:38:54Z 2009-09-29T13:00:00Z <p>W3's EXI (efficient XML interchange) is going to be standardized. It claims to be "the last binary standard".</p> <p>It is a standard to store XML data optimized for processing and storage, is bundled with XML schema (making the data strongly typed and strongly structured). Well, there are a lot of claimed advantages. I was impressed most by the processing and memory-efficiency measurements.</p> <p>I am asking myself, what is going to happen to all the established XML APIs?</p> <p>There is this paragraph related to my question:</p> <blockquote> <p>4.2 Existing XML Processing APIs</p> <p>As EXI is an encoding of the XML Infoset, an EXI implementation can support any of the commonly-used XML APIs for XML processing, so EXI has no immediate impact on existing XML APIs. However, using an existing XML API also requires that all names and text appearing in the EXI document be converted into strings. In the future, more efficiency might be achievable if the higher layers could directly use these data as typed values appearing in the EXI document. For instance, if a higher layer needs typed data, going through its string form can produce a performance penalty, so an extended API that supports typed data directly could improve performance when used with EXI. </p> <p>from: <a href="http://www.w3.org/TR/exi-impacts/" rel="nofollow">http://www.w3.org/TR/exi-impacts/</a></p> </blockquote> <p>I understand it as following: <i>"Using EXI with existing APIs? No performance gain! (Unless you rewrite them all)"</i></p> <p>Let's take the Java ecosystem as an example:</p> <p>We have plenty of XML APIs in latest JDK 6 (With each major JDK release, more and more of them were added.) As far as I can judge, most (if not all) of them are using either in-memory DOM trees, or serialized ("textual") representation to transform/process/validate/... XML data.</p> <p>What do you guys think, what is going to happen to these APIs with introduction of EXI?</p> <p>Thank you all for your opinions.</p> <p>For those who don't know EXI: <a href="http://www.w3.org/XML/EXI/" rel="nofollow">http://www.w3.org/XML/EXI/</a></p> http://stackoverflow.com/questions/1237084/netbeans-manifest/1491659#1491659 0 Answer by ivan_ivanovich_ivanoff for Netbeans manifest ivan_ivanovich_ivanoff 2009-09-29T10:08:56Z 2009-09-29T10:08:56Z <p>See <strong><a href="http://java.sun.com/developer/technicalArticles/java%5Fwarehouse/single%5Fjar/" rel="nofollow">this article</a></strong>.</p> <p>Here it is described how to</p> <ul> <li>create own ant targets</li> <li>add manual entries to manifest.mf for the output JAR</li> <li>run custom ant targets from Netbeans</li> </ul> http://stackoverflow.com/questions/602537/producing-executable-jar-in-netbeans/1491630#1491630 0 Answer by ivan_ivanovich_ivanoff for Producing executable jar in NetBeans ivan_ivanovich_ivanoff 2009-09-29T10:01:36Z 2009-09-29T10:01:36Z <p>A better solution:</p> <p>Edit nbproject/project.properties and <strong>add the entry</strong>:</p> <pre><code>manifest.file=manifest.mf </code></pre> <p><code>manifest.mf</code> should be in project's root and contain just:</p> <pre><code>Manifest-Version: 1.0 X-COMMENT: Main-Class will be added automatically by build </code></pre> <p>Works. Tested.</p> http://stackoverflow.com/questions/602537/producing-executable-jar-in-netbeans/1491611#1491611 0 Answer by ivan_ivanovich_ivanoff for Producing executable jar in NetBeans ivan_ivanovich_ivanoff 2009-09-29T09:58:18Z 2009-09-29T09:58:18Z <p>I had the experience, that the build process is different, depending on the project type.</p> <p>I suppose, you've created "Java Class Library" project.</p> <p>So just create a "Java Application" project, then merge all classes to it.</p> <p>Then, Netbeans will <strong>not override, but enhance</strong> the <code>"manifest.mf"</code> into the JAR.</p> <p><em>Of course, it's a stupid Netbeans bug. Of course it should be possible to add main classes afterwards.</em></p> <p><strong>EDIT:</strong> Please see my other answer. It's easier.</p> http://stackoverflow.com/questions/1228515/which-phones-support-which-j2me-java-micro-edition-spec 1 Which phones support which J2ME (Java Micro Edition) spec? ivan_ivanovich_ivanoff 2009-08-04T16:23:17Z 2009-09-26T10:04:23Z <p>Hello!</p> <p>I just can't find an up-to-date chart about which mobile devices support which Java Micro Edition version.</p> <p>I'm especially interested in <strong>Nokia smartphones</strong> and their support for the new <strong>JME 3.0</strong>.</p> <p><em>(I wonder that Sun doesn't seems to provide such information.)</em></p> <p>Please, provide me some links, if you know any!</p> <p><strong>EDIT:</strong> I'm probably mixing things up:<br /> <strong>MIDP</strong> seems to be the <strong>mobile Java platform</strong>, while <strong>J2ME 3.0</strong> is a <strong>SDK</strong> for it, right?</p> http://stackoverflow.com/questions/1249121/netbeans-could-i-use-apache-felix-for-a-home-maintained-repo-of-java-libs 1 Netbeans: Could I use Apache Felix for a home-maintained repo of Java libs? ivan_ivanovich_ivanoff 2009-08-08T15:13:22Z 2009-09-25T16:00:03Z <p>Hello!</p> <p>I'm using Netbeans. Often I need to specify own libraries, used by my projects. It is very unhandy to maintain them across multiple workspaces.</p> <p>As far as I understand correctly, Apache Felix, an implementation of OSGI's module system, could manage such libraries <em>(provide versioning, automatic dependency resolvability, ...)</em></p> <p>If this is correct, is there a somehow straightforward way to integrate Apache Felix into Netbeans?</p> <p><em>BTW: Can't wait for Jigsaw module system in Java 7</em></p> http://stackoverflow.com/questions/1466887/java-source-upgrade-from-1-4-2-to-1-6-010-recommended-skipping-1-5/1466933#1466933 0 Answer by ivan_ivanovich_ivanoff for Java source upgrade from 1.4.2 to 1.6.0_10 recommended ? (skipping 1.5) ivan_ivanovich_ivanoff 2009-09-23T15:57:33Z 2009-09-23T15:57:33Z <p>It's Java, it's not a dirty scripting language which changes its syntactic, its grammar, and its API every minor release.</p> <p>Backward compatibility is one of the major features of Java.</p> http://stackoverflow.com/questions/1463192/reading-content-of-a-jar-file-at-runtime 0 Reading content of a JAR file (at runtime)? ivan_ivanovich_ivanoff 2009-09-22T23:35:46Z 2009-09-22T23:53:58Z <p>I have read the posts:</p> <p><a href="http://stackoverflow.com/questions/320510/viewing-contents-of-a-jar-file">http://stackoverflow.com/questions/320510/viewing-contents-of-a-jar-file</a><br /> and<br /> <a href="http://stackoverflow.com/questions/1429172/list-files-inside-a-jar">http://stackoverflow.com/questions/1429172/list-files-inside-a-jar</a></p> <p>But I, sadly, couldn't find a good solution to actually <strong>read</strong> a JAR's content (file by file).</p> <p>Furthermore, could someone give me a hint, or point to a resource, where my problem is discussed?</p> <p><em>I just could think of a not-so-straight-forward-way to do this:<br /> I could somehow convert the list of a JAR's resources to a list of inner-JAR URLs, which I then could open using openConnection().</em></p> http://stackoverflow.com/questions/1448362/java-6-examples-for-implementing-own-scripting-language-using-javax-script 2 Java 6: Examples for implementing own scripting language using javax.script? ivan_ivanovich_ivanoff 2009-09-19T11:19:40Z 2009-09-19T16:40:42Z <p>Hello!</p> <p>I really can't find good examples for <strong>implementing own scripting language</strong> using <a href="http://java.sun.com/javase/6/docs/api/javax/script/package-summary.html" rel="nofollow"><strong>javax.script</strong></a> ...</p> <p>I need just something to start.</p> <ul> <li>Documentations</li> <li>Examples</li> <li>Tutorials</li> <li>Videos</li> <li>Presentations slides (PDF)</li> </ul> <p><em>Note 1: I'm really not talking about javascript ;)</em><br /> <em>Note 2: I <strong>don't</strong> need examples, how to <strong>use</strong> existing implementations, I want to implement an <strong>own language</em></strong>.</p> <p>Thank you.</p> http://stackoverflow.com/questions/1272810/java-me-are-there-some-good-opensource-apis-which-make-the-limited-java-me-more 1 Java ME: Are there some good opensource APIs which make the limited Java ME more Java SE like? ivan_ivanovich_ivanoff 2009-08-13T15:43:26Z 2009-09-12T18:54:28Z <p>Hello!</p> <p>Recently I started playing around with Java ME.<br /> The standard API seems very limited to me, compared to recent Java SE.</p> <p>Are there some good opensource APIs which would make Java ME more Java SE like?</p> http://stackoverflow.com/questions/1366155/subversion-can-trunk-be-reset-to-previous-revision-after-branching-tagging 2 Subversion: Can trunk be reset to previous revision after branching/tagging? ivan_ivanovich_ivanoff 2009-09-02T06:46:09Z 2009-09-02T06:52:02Z <p>Hello!</p> <p>I have many projects depending on each other in trunk. I made several commits which led to dependency problems.<br /> I tagged /trunk to /tags/trunk-experimental and now want to "revert" the last N changes (which led to problems), so that my /trunk is good again.</p> <p>Can this be done in a straightforward way?</p> <p><em>I tried to just check out from a certain revision, but this is bad, because an update changes everything back to latest revision (which contains dependency problems)</em></p> <p>Here's a timeline to understand my question better:</p> <ul> <li>revision 1000 (good)</li> <li>made several changes which lead to dependency problems,<br /> several commits, now at revision 1050 (bad)</li> <li>copied /trunk to /tags/trunk-experimental (revision 1051)</li> <li>don't know what to do with trunk to "revert" it back to revision 1000</li> </ul> http://stackoverflow.com/questions/1351296/netbeans-creating-custom-build-target-to-let-sources-be-packaged-to-jar 2 Netbeans: Creating custom build target to let sources be packaged to JAR...? ivan_ivanovich_ivanoff 2009-08-29T12:12:04Z 2009-08-29T13:19:13Z <p>Hello!</p> <p><em>I ask the question more specific:</em></p> <p>Using Netbeans, is there a possibility to create an additional <strong>custom build target</strong>, which would:</p> <ul> <li>either package all project sources <strong>along with the binaries into a singe JAR</strong>,</li> <li>or package all project sources <strong>without the binaries into an additional JAR</strong>?</li> </ul> <p><em>Notes:</em></p> <ul> <li><em>It's <strong>not</strong> an option for me to modify the text field "Exclude from JAR file:" in the project properties, because it wouldn't provide me with an <strong>additional</strong> build target ;)</em></li> <li><em>As you can guess, it's for an open source project ;)</em></li> </ul> http://stackoverflow.com/questions/1351296/netbeans-creating-custom-build-target-to-let-sources-be-packaged-to-jar/1351409#1351409 1 Answer by ivan_ivanovich_ivanoff for Netbeans: Creating custom build target to let sources be packaged to JAR...? ivan_ivanovich_ivanoff 2009-08-29T13:10:58Z 2009-08-29T13:19:13Z <p>Thank to <a href="http://stackoverflow.com/questions/1351296/netbeans-creating-custom-build-target-to-let-sources-be-packaged-to-jar/1351311#1351311">Mark's</a> resource hint, I reduces the example to minimum complexity:</p> <p>Following is done to pack only the sources:</p> <pre><code>&lt;!-- depends="jar" have to stay: without it, we haven't the variable ${application.title} --&gt; &lt;target name="MY-EXPORT-SOURCES" depends="jar"&gt; &lt;echo&gt;MY TARGET: PACKAGING ${application.title} SOURCES&lt;/echo&gt; &lt;delete file="dist/${application.title}.SOURCES.zip"/&gt; &lt;zip destfile="dist/${application.title}.SOURCES.zip" basedir="src" includes="**/*.java"/&gt; &lt;/target&gt; </code></pre> <p>To run in Netbeans, do:<br /> build.xml rightclick -> run targets -> other targets -> MY-EXPORT-SOURCES.</p> http://stackoverflow.com/questions/1338960/ruby-templates-how-to-pass-variables-into-inlined-erb 0 Ruby templates: How to pass variables into inlined ERB? ivan_ivanovich_ivanoff 2009-08-27T05:08:14Z 2009-08-27T13:36:09Z <p>Hello!</p> <p>I have an ERB template inlined into Ruby code:</p> <pre><code>require 'erb' DATA = { :a =&gt; "HELLO", :b =&gt; "WORLD", } template = ERB.new &lt;&lt;-EOF current key is: &lt;%= current %&gt; current value is: &lt;%= DATA[current] %&gt; EOF DATA.keys.each do |current| result = template.result outputFile = File.new(current.to_s,File::CREAT|File::TRUNC|File::RDWR) outputFile.write(result) outputFile.close end </code></pre> <p>I can't pass the variable "current" into the template.</p> <p>The error is:</p> <pre><code>(erb):1: undefined local variable or method `current' for main:Object (NameError) </code></pre> <p>How do I fix this?</p> http://stackoverflow.com/questions/1338960/ruby-templates-how-to-pass-variables-into-inlined-erb/1339955#1339955 0 Answer by ivan_ivanovich_ivanoff for Ruby templates: How to pass variables into inlined ERB? ivan_ivanovich_ivanoff 2009-08-27T09:37:35Z 2009-08-27T13:36:09Z <p><strong>EDIT</strong>: This is a dirty workaround. Please see my other answer.</p> <p>It's totally strange, but adding</p> <pre><code>current = "" </code></pre> <p>before the "for-each" loop fixes the problem.</p> <p><em>God bless scripting languages and their "language features"...</em></p> http://stackoverflow.com/questions/1338960/ruby-templates-how-to-pass-variables-into-inlined-erb/1341138#1341138 0 Answer by ivan_ivanovich_ivanoff for Ruby templates: How to pass variables into inlined ERB? ivan_ivanovich_ivanoff 2009-08-27T13:35:26Z 2009-08-27T13:35:26Z <p>Got it!</p> <p>I create a bindings class</p> <pre><code>class BindMe def initialize(key,val) @key=key @val=val end def get_binding return binding() end end </code></pre> <p>and pass an instance to ERB</p> <pre><code>dataHash.keys.each do |current| key = current.to_s val = dataHash[key] # here, I pass the bindings instance to ERB bindMe = BindMe.new(key,val) result = template.result(bindMe.get_binding) # unnecessary code goes here end </code></pre> <p>The .erb template file looks like this:</p> <pre><code>Key: &lt;%= @key %&gt; </code></pre> http://stackoverflow.com/questions/1328951/can-i-write-an-ant-task-which-takes-parameters-when-being-executed-from-another-a 1 Can I write an ant task which takes parameters when being executed from another ant task? ivan_ivanovich_ivanoff 2009-08-25T15:16:20Z 2009-08-26T13:21:03Z <p>Can I write an ant task which takes parameters when being executed from another ant task?</p> <p>What I try to achieve in general, is re-using existing tasks with different parameters.</p> <p>What I don't know is:</p> <ul> <li>is there something such a sub-task in ant?</li> <li>can it take parameters?</li> <li>how and where such sub-task is specified?</li> </ul> <p><strong>Concept</strong> of what I need to achieve:</p> <p><strong>Sub Ant task</strong>, which takes parameters param1 and param2:</p> <pre><code>&lt;someAntCommand att="$param1"/&gt; &lt;someOtherAntCommand att="$param2"/&gt; </code></pre> <p><strong>Main Ant task</strong>, which executes the sub task:</p> <pre><code>&lt;doSomethingToExecSubTask somePointerToTaskOrFile="..."&gt; &lt;param name="param1"&gt; hello &lt;/param&gt; &lt;param name="param2"&gt; world &lt;/param&gt; &lt;/doSomethingToExecSubTask&gt; &lt;doSomethingToExecSubTask somePointerToTaskOrFile="..."&gt; &lt;param name="param1"&gt; hello &lt;/param&gt; &lt;param name="param2"&gt; universe &lt;/param&gt; &lt;/doSomethingToExecSubTask&gt; </code></pre> http://stackoverflow.com/questions/1300031/jax-ws-client-jaxb-required 0 JAX-WS client: JAXB required? ivan_ivanovich_ivanoff 2009-08-19T13:43:56Z 2009-08-25T08:36:37Z <p>Hello!</p> <p>I need to "dive into JAX-WS programming".</p> <p>So, I played around with Netbeans, after 20 or so erroneous attempts, finally managed to let a web service client execute a web service.</p> <p>I noticed, that a lot of code is generated, especially JAXB classes for the web service response.</p> <p>My current task is, to write a web service and web client completely by hand.</p> <p>Is JAXB required at all? Is is part of the standard anyway? What would happen without it?</p> <p><strong>EDIT:</strong><br /> <a href="http://stackoverflow.com/questions/1315787/jax-ws-returning-a-complex-object/1315793#1315793">Seems that the answer is given <strong>here</strong></a></p> http://stackoverflow.com/questions/1299318/what-is-the-most-painless-and-multi-platform-way-to-use-scripting 0 What is the most painless and multi-platform way to use scripting? ivan_ivanovich_ivanoff 2009-08-19T11:26:49Z 2009-08-19T12:05:42Z <p>Hello!</p> <p>What is the most painless and multi-platform way to use scripting?...<br /> ...for things such as</p> <ul> <li>Compilation</li> <li>Web application deployment</li> <li>Web server controlling</li> <li>Other misc. tasks around web servers...</li> </ul> <p>NOTE: I'm in the Java ecosystem.</p> <p>Sure, there is Apache Ant, which is pretty multi-platform, but it isn't scripting.</p> http://stackoverflow.com/questions/1281486/netbeans-how-do-i-let-additional-files-be-included-into-the-created-jar 0 Netbeans: How do I let additional files be included into the created JAR? ivan_ivanovich_ivanoff 2009-08-15T08:54:56Z 2009-08-15T10:49:07Z <p>Hello!</p> <p>Netbeans doesn't allow me to specify, which <strong>files</strong> I want to have <strong>additionally included</strong> inside the JAR.</p> <ul> <li>Can I work this around by editing the <strong>manifest.mf</strong>?</li> <li>Or by editing <strong>build.xml</strong>?</li> <li>What else could be done?</li> </ul> <p><strong>EDIT</strong><br /> I need the files to appear in <strong>jar's root</strong> (files such as LICENSE.txt or some exec script), because otherwise they wouldn't make lot sense. </p> http://stackoverflow.com/questions/1476757/jsr305-vs-jsr308-java-type-anotations-which-is-going-to-be-the-standard/1756760#1756760 Comment by ivan_ivanovich_ivanoff on JSR305 vs. JSR308 (Java Type Anotations) - Which is going to be the standard? ivan_ivanovich_ivanoff 2009-11-18T17:14:08Z 2009-11-18T17:14:08Z With JSR308, will Java7 provide a standard checker framework? http://stackoverflow.com/questions/1513458/linux-is-this-a-correct-way-to-run-scripts-in-parallel Comment by ivan_ivanovich_ivanoff on Linux: Is this a correct way to run scripts in parallel? ivan_ivanovich_ivanoff 2009-10-03T11:13:39Z 2009-10-03T11:13:39Z Well, I'm not sure, what is correct now? The answer from <b>Pavel Shved</b>, or from <b>ijw</b>? http://stackoverflow.com/questions/1513458/linux-is-this-a-correct-way-to-run-scripts-in-parallel/1513491#1513491 Comment by ivan_ivanovich_ivanoff on Linux: Is this a correct way to run scripts in parallel? ivan_ivanovich_ivanoff 2009-10-03T11:11:27Z 2009-10-03T11:11:27Z So, you point is, that two &quot;concurrent&quot; echo commands which print a lot of text could be mixed up by the console? http://stackoverflow.com/questions/1513458/linux-is-this-a-correct-way-to-run-scripts-in-parallel/1513487#1513487 Comment by ivan_ivanovich_ivanoff on Linux: Is this a correct way to run scripts in parallel? ivan_ivanovich_ivanoff 2009-10-03T11:08:28Z 2009-10-03T11:08:28Z I did a sync afterwards, takes 10sec sometimes ;) http://stackoverflow.com/questions/1497508/how-do-i-insert-a-lot-of-whitespace-in-perl Comment by ivan_ivanovich_ivanoff on How do I insert a lot of whitespace in Perl? ivan_ivanovich_ivanoff 2009-09-30T11:25:47Z 2009-09-30T11:25:47Z You should ask something such as <i>&quot;How do I insert a certain amount of whitespaces in perl / regex?&quot;</i>... http://stackoverflow.com/questions/1497182/findbugs-jsr305-possibility-to-specify-default-behavior/1497372#1497372 Comment by ivan_ivanovich_ivanoff on Findbugs + JSR305: Possibility to specify default behavior? ivan_ivanovich_ivanoff 2009-09-30T10:52:15Z 2009-09-30T10:52:15Z Thank you, tried it, Findbugs ignores it (on types AND on packages). Must be a bug in Findbugs ;) JSR305 is inactive anyway. Perhaps I should look around for other solutions. http://stackoverflow.com/questions/855818/is-this-correct-way-of-using-javax-annotation-from-jsr305/1282972#1282972 Comment by ivan_ivanovich_ivanoff on Is this correct way of using javax.annotation from JSR305 ? ivan_ivanovich_ivanoff 2009-09-30T10:13:32Z 2009-09-30T10:13:32Z @MaybeNull was scrapped from JSR305, as far as I know. Also, annotations on generic types are specified by JSR308, which will be availible in Java7. (NOTE: only this <b>fact</b> that you cann annotate generic types will be enabled, not the whole collections of pre-defined annotations.) http://stackoverflow.com/questions/1492428/javadom-how-do-i-set-the-base-namespace-of-an-already-created-document/1492473#1492473 Comment by ivan_ivanovich_ivanoff on Java+DOM: How do I set the base namespace of an (already created) Document? ivan_ivanovich_ivanoff 2009-09-29T13:44:37Z 2009-09-29T13:44:37Z Thank you. The problem here is: I create a new document, the way you described, <b>with</b> a root element (without it doesn't work, thanks DOM). So now I would have to copy sub-nodes of the existing document to the new one, right? Would it be enought to ensure a <b>full</b> copy? http://stackoverflow.com/questions/1492428/javadom-how-do-i-set-the-base-namespace-of-an-already-created-document/1492473#1492473 Comment by ivan_ivanovich_ivanoff on Java+DOM: How do I set the base namespace of an (already created) Document? ivan_ivanovich_ivanoff 2009-09-29T13:21:40Z 2009-09-29T13:21:40Z Good, where? Document.declareNamespaceSomewhere(...) donesn't exist ;) http://stackoverflow.com/questions/1467991/ant-how-to-execute-a-command-for-each-file-in-directory/1478159#1478159 Comment by ivan_ivanovich_ivanoff on Ant: How to execute a command for each file in directory? ivan_ivanovich_ivanoff 2009-09-25T19:46:49Z 2009-09-25T19:46:49Z Your're right, I should just write a custom ant task in Java ;) http://stackoverflow.com/questions/1476757/jsr305-vs-jsr308-java-type-anotations-which-is-going-to-be-the-standard/1477275#1477275 Comment by ivan_ivanovich_ivanoff on JSR305 vs. JSR308 (Java Type Anotations) - Which is going to be the standard? ivan_ivanovich_ivanoff 2009-09-25T14:21:12Z 2009-09-25T14:21:12Z So, practically JSR-308 is only an extensions to the language, while those checkers (which are discussed on the project's page), are optional and will not be available in the JDK), right? http://stackoverflow.com/questions/1467991/ant-how-to-execute-a-command-for-each-file-in-directory/1468063#1468063 Comment by ivan_ivanovich_ivanoff on Ant: How to execute a command for each file in directory? ivan_ivanovich_ivanoff 2009-09-23T19:48:45Z 2009-09-23T19:48:45Z So, I have to include something? Or do I need some external ant lib? I'm getting <i>&quot;Problem: failed to create task or type foreach&quot;</i>. If I understand correctly, this means, <b>foreach</b> is an unknown keyword. http://stackoverflow.com/questions/1463192/reading-content-of-a-jar-file-at-runtime/1463212#1463212 Comment by ivan_ivanovich_ivanoff on Reading content of a JAR file (at runtime)? ivan_ivanovich_ivanoff 2009-09-22T23:46:18Z 2009-09-22T23:46:18Z Ah, thank you! I've somehow totally overseen JarFile's getInputStream! http://stackoverflow.com/questions/101055/when-is-a-language-considered-a-scripting-language Comment by ivan_ivanovich_ivanoff on When is a language considered a scripting language? ivan_ivanovich_ivanoff 2009-09-19T23:14:26Z 2009-09-19T23:14:26Z ...When a language breaks the API and changes it's syntax every minor release, when it's a wrapper around 100 of dirty unmaintained buggy C libraries, then it's a script language. ;) http://stackoverflow.com/questions/1448362/java-6-examples-for-implementing-own-scripting-language-using-javax-script/1448585#1448585 Comment by ivan_ivanovich_ivanoff on Java 6: Examples for implementing own scripting language using javax.script? ivan_ivanovich_ivanoff 2009-09-19T18:27:00Z 2009-09-19T18:27:00Z Good idea! I'll look at it. Thanks!