User Revah - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T11:57:16Zhttp://stackoverflow.com/feeds/user/19095http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/440458/how-best-to-maintain-an-eclipse-rcp-plugin-target0How best to maintain an Eclipse RCP plugin target?Revah2009-01-13T19:36:27Z2009-01-26T01:08:39Z
<p>I have a plugin for an RCP app that uses BIRT. I have a target for building my app which contains only the plugins/features that are required. I recently updated the BIRT plugin versions in my IDE, which created an incompatibility in the design files with previous versions of BIRT. I have the old version of BIRT in my target and need to update to the newer plugins.</p>
<p>In the past I have manually updated plugin jars in the target, but BIRT is a complicated platform with dependencies out the wazoo. Is there any utility or way of organizing my target differently that will make this easier to control in the future?</p>
http://stackoverflow.com/questions/440458/how-best-to-maintain-an-eclipse-rcp-plugin-target/465801#4658010Answer by Revah for How best to maintain an Eclipse RCP plugin target?Revah2009-01-21T15:45:06Z2009-01-21T15:45:06Z<p>Markus, I was referring to pre-packaged plugins that come from the eclipse sites. It wouldn't make sense to tamper with them. The issue is that the filenames change slightly with each release, so to update my target directory I have to use a merge program to bring in the new and get rid of the old. This tends to be a bit prone to error. But your answer is a nice succinct procedure for using 3rd party libraries :) </p>
<p>Perhaps this is my chance to contribute a plugin to the community that will make this less manual.</p>
http://stackoverflow.com/questions/259968/reading-text-values-into-matlab-variables-from-ascii-files/260016#2600160Answer by Revah for Reading text values into matlab variables from ASCII filesRevah2008-11-03T21:25:19Z2008-11-03T21:25:19Z<p>Just use textscan with different format specifiers.</p>
<pre><code>fid = fopen(filename,'r');
heading = textscan(fid,'%s %s %s',1);
fgetl(fid); %advance the file pointer one line
data = textscan(fid,'%n %n %n');%read the rest of the data
fclose(fid);
</code></pre>
<p>In this case 'heading' will be a cell array containing cells with each column heading inside, so you will have to change them into cell array of strings or whatever it is that you want. 'data' will be a cell array containing a numeric array for each column that you read, so you will have to cat them together to make one matrix.</p>
http://stackoverflow.com/questions/183083/need-help-writing-a-custom-buildlistener1Need help writing a custom BuildListenerRevah2008-10-08T14:35:10Z2008-10-22T17:11:18Z
<p>I would like to add a BuildListener to my headless build process, which is building an Eclipse product. The docs on how to do this are, shall we say, a bit scanty. I think I need to put my custom jar in a plugin and then use the org.eclipse.ant.core.extraClasspathEntries extension point to make that jar visible to Ant. But everything I have tried results in <pre> [myClass] which was specified to be a build listener is not an instance of org.apache.tools.ant.BuildListener.</pre></p>
<p>My class implements the BuildListener interface. Various postings seem to indicate that this means my class is visible-to/loaded-by the Plugin classloader rather than the Ant classloader. But I thought the whole point of the extension point was to make jars visible to Ant...</p>
<p>Can anyone shed light on what I'm doing wrong?
Additional info: I am trying to run this build from the Eclipse IDE at the moment using the AntRunner application.</p>
http://stackoverflow.com/questions/219585/setting-multiple-jars-in-java-classpath/219603#2196030Answer by Revah for Setting multiple jars in java classpathRevah2008-10-20T19:37:49Z2008-10-20T19:37:49Z<p>Think of a jar file as the root of a directory structure. Yes, you need to add them all separately.</p>
http://stackoverflow.com/questions/132092/what-are-your-favourite-matlab-octave-programming-tricks/202449#2024491Answer by Revah for What are your favourite MATLAB/Octave programming tricks?Revah2008-10-14T19:14:29Z2008-10-14T19:14:29Z<p>Oh, and reverse an array</p>
<pre><code>v = 1:10;
v_reverse = v(length(v):-1:1);
</code></pre>
http://stackoverflow.com/questions/132092/what-are-your-favourite-matlab-octave-programming-tricks/202439#2024392Answer by Revah for What are your favourite MATLAB/Octave programming tricks?Revah2008-10-14T19:11:26Z2008-10-14T19:11:26Z<p>Using ismember() to merge data organized by text identfiers. Useful when you are analyzing differing periods when entries, in my case company symbols, come and go.</p>
<pre><code>%Merge B into A based on Text identifiers
UniverseA = {'A','B','C','D'};
UniverseB = {'A','C','D'};
DataA = [20 40 60 80];
DataB = [30 50 70];
MergeData = NaN(length(UniverseA),2);
MergeData(:,1) = DataA;
[tf, loc] = ismember(UniverseA, UniverseB);
MergeData(tf,2) = DataB(loc(tf));
MergeData =
20 30
40 NaN
60 50
80 70
</code></pre>
http://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit/134082#134082-1Answer by Revah for Javascript Post Request like a Form SubmitRevah2008-09-25T15:40:48Z2008-09-25T15:40:48Z<p>This is like Alan's option 2 (above). How to instantiate the httpobj is left as an excercise.</p>
<pre><code>httpobj.open("POST", url, true);
httpobj.setRequestHeader('Content-Type','application/x-www-form-urlencoded; charset=UTF-8');
httpobj.onreadystatechange=handler;
httpobj.send(post);
</code></pre>
http://stackoverflow.com/questions/133993/loader-constraints-violated-when-linking-javax-xml-namespace-qname-class-from-w/134012#1340121Answer by Revah for "loader constraints violated when linking javax/xml/namespace/QName class" from webapp on Oracle 10gRevah2008-09-25T15:30:40Z2008-09-25T15:30:40Z<p>What version of Java are you using? The newest versions ship with this class in the rt.jar.</p>
http://stackoverflow.com/questions/133234/building-eclipse-plugins-and-features-on-the-command-line/133533#1335330Answer by Revah for Building Eclipse plugins and features on the command lineRevah2008-09-25T14:05:05Z2008-09-25T14:05:05Z<p>Rest assured that if someone does write a nice plugin to automate this, the documentation will be so thin that only 5 of his friends will be able to use it... :)</p>
http://stackoverflow.com/questions/133234/building-eclipse-plugins-and-features-on-the-command-line/133284#1332841Answer by Revah for Building Eclipse plugins and features on the command lineRevah2008-09-25T13:23:10Z2008-09-25T13:23:10Z<p>I've just been fighting with this problem myself. Are you using the productBuild script? Maybe putting your features into a product would help you out.</p>
<p>I am doing a headless build on a product configuration. The only script that I customized was to add some ant tasks to customTargets.xml to get my sources from SVN and to do a little cleanup on JNLP manifests after the build as I am using WebStart.</p>
<p>Then you only need to invoke antRunner on the out of the box productBuild.xml in the scripts/productBuild directory (in the pde-build plugin).</p>
http://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1556705#1556705Comment by Revah on Most horrifying line of code you have ever seen?Revah2009-10-14T14:01:28Z2009-10-14T14:01:28ZLet me guess, the string "Dave" was assigned to the variable? And why wouldn't he at least make his name a constant?http://stackoverflow.com/questions/748869/matlab-number-to-letter-swapping/749271#749271Comment by Revah on Matlab number to letter swappingRevah2009-04-14T20:44:51Z2009-04-14T20:44:51Zchar() is also prefereable in the case that the order of the letters changes at some point in the future...http://stackoverflow.com/questions/741581/what-are-the-worst-working-conditions-you-have-written-code-in/741971#741971Comment by Revah on What are the worst working conditions you have written code in?Revah2009-04-13T21:12:22Z2009-04-13T21:12:22Z...and then this one summer, at band camp... Ick.
That would get you punched at a few places I've worked.http://stackoverflow.com/questions/440458/how-best-to-maintain-an-eclipse-rcp-plugin-target/478628#478628Comment by Revah on How best to maintain an Eclipse RCP plugin target?Revah2009-01-26T14:14:19Z2009-01-26T14:14:19ZI hadn't thought of doing it that way. I will give this a try and see if there are any scenarios that still give trouble. Thanks.http://stackoverflow.com/questions/259968/reading-text-values-into-matlab-variables-from-ascii-files/260016#260016Comment by Revah on Reading text values into matlab variables from ASCII filesRevah2008-11-03T22:30:00Z2008-11-03T22:30:00ZIf you don't know the number of columns in advance then you will have to read the file one line at a time. If you call textscan with a single %s and no limiting number, it will read N number of strings from the line. I think this is better/faster than using strtok.http://stackoverflow.com/questions/240152/why-would-i-want-to-use-interfaces/240172#240172Comment by Revah on Why would I want to use Interfaces?Revah2008-10-27T15:54:12Z2008-10-27T15:54:12ZInheritance tends to be brittle. If you are violating the "is-a" relationship that is implicit when you extend a superclass, you are asking for trouble down the road.http://stackoverflow.com/questions/223187/whats-the-point-of-the-garbage-collector/223260#223260Comment by Revah on What's the point of the garbage collectorRevah2008-10-21T20:06:39Z2008-10-21T20:06:39ZGreat example... :)http://stackoverflow.com/questions/221892/java-extendable-enumeration/221918#221918Comment by Revah on Java extendable enumerationRevah2008-10-21T13:45:30Z2008-10-21T13:45:30ZI think that's the most sensible design here right? If an enum implements the right interface then you know it is an enum of database fields.http://stackoverflow.com/questions/132092/what-are-your-favourite-matlab-octave-programming-tricks/202449#202449Comment by Revah on What are your favourite MATLAB/Octave programming tricks?Revah2008-10-20T14:15:32Z2008-10-20T14:15:32ZI like my way vs. flipud()/fliplr() because you don't have to know whether you have a column vector or a row vector.http://stackoverflow.com/questions/183083/need-help-writing-a-custom-buildlistener/188700#188700Comment by Revah on Need help writing a custom BuildListenerRevah2008-10-14T15:11:35Z2008-10-14T15:11:35ZThanks. I had already solved this, but this was indeed the problem. You must be very scrupulous about the location of the contribution.http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/77875#77875Comment by Revah on What non-programming books should programmers read?Revah2008-10-06T13:58:05Z2008-10-06T13:58:05ZI would have to argue against this one. One of the more overrated books I have had the misfortune to take up. Pop-philosophical banalities.