User Alex Argo - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T05:58:45Zhttp://stackoverflow.com/feeds/user/5885http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/122110/is-there-a-way-to-get-jadclipse-working-with-eclipse-3-44Is there a way to get jadclipse working with Eclipse 3.4?Alex Argo2008-09-23T16:26:47Z2009-11-28T03:51:15Z
<p>I'm a big fan of the Jadclipse plugin and I'd really like to upgrade to Eclipse 3.4 but the plugin currently does not work. Are there any other programs out there that let you use jad to view source of code you navigate to from Eclipse? (Very useful when delving into ambiguous code in stack traces).</p>
http://stackoverflow.com/questions/113130/where-can-i-find-cheap-java-hosting17Where can I find cheap Java hosting?Alex Argo2008-09-22T04:08:35Z2009-11-03T20:28:55Z
<p>There are a lot of cheap hosting options out there for php, or even ASP.net/Ruby/Python but there seems to be no good hosting options for Java. What's the cheapest hosting out there for Java that can handle a Java app that uses JPA/Hibernate and maybe a little some Spring for it's IoC needs? Will shared hosting suffice?</p>
http://stackoverflow.com/questions/769980/how-do-i-select-a-top-level-attribute-of-an-xml-column-in-sql-server-20052How do I select a top level attribute of an xml column in SQL Server 2005?Alex Argo2009-04-20T20:38:04Z2009-08-13T14:16:36Z
<p>I have an xml column in SQL Server 2005 that is the equivalent of:</p>
<pre><code><Test foo="bar">
<Otherstuff baz="belch" />
</Test>
</code></pre>
<p>I want to be able to get the value of the foo attribute of Test (the root element) as a varchar. My goal would be something along the lines of:</p>
<pre><code>select cast( '<Test foo="bar"><Otherstuff baz="belch" /></Test>' as xml).value('@foo','varchar(20)') as Foo
</code></pre>
<p>When I run the above query I get the following error:</p>
<blockquote>
<p>Msg 2390, Level 16, State 1, Line 1
XQuery [value()]: Top-level attribute
nodes are not supported</p>
</blockquote>
http://stackoverflow.com/questions/1003710/how-do-i-install-jetty-wtp-server-adapter-for-eclipse-3-52How do I install Jetty WTP Server Adapter for Eclipse 3.5?Alex Argo2009-06-16T20:12:07Z2009-07-21T06:25:50Z
<p>Currently I am attempting to install the Jetty WTP Server Adapter for Eclipse 3.5 and get the following errors:</p>
<pre><code>An error occurred while collecting items to be installed session context was:(profile=epp.package.jee,phase=org.eclipse.equinox.internal.provisional.p2.engine.phases.Collect, operand=, action=).
No repository found containing: osgi.bundle,org.mortbay.jetty.serveradaptor,1.0.4
No repository found containing: org.eclipse.update.feature,org.mortbay.jetty.serveradaptor,1.0.4
</code></pre>
<p>To install, I attempt to add a new server runtime, click 'Install Additional Server Adapters' and follow the wizard I get when I click on the Generic Jetty Server Adapter that eventually loads. I've had this error in all the RCs up to this point, but currently the active RC is RC4.</p>
http://stackoverflow.com/questions/530209/how-do-i-merge-a-cvs-branch-into-head-using-the-eclipse-merge-tools1How do I merge a CVS branch into HEAD using the Eclipse merge tools?Alex Argo2009-02-09T22:02:03Z2009-03-18T16:10:06Z
<p>I'm currently working in a branch I created using the Team-->Branch. How do I use Team-->Merge to merge my changes to the branch back to head?</p>
http://stackoverflow.com/questions/123089/how-do-you-avoid-waiting-for-requirements-when-using-iterative-agile-development7How do you avoid waiting for requirements when using iterative agile development methods like SCRUM?Alex Argo2008-09-23T19:05:51Z2009-03-05T08:14:23Z
<p>We attempt to do agile development at my current job and we succeed for the most part. The main problem seems to be that the developers on the project are always waiting for requirements at the beginning of the sprint and rushing to get get things down by the end. The business analysts who are delivering the requirements are always working non-stop to get the requirements done.</p>
<p><strong>EDIT: Additional Information:</strong>
We are customizing a COTS application for our internal use. Our 'user stories' just consist of what part of the application we will be customizing in the specific sprint and also what systems we will integrate with internally. The integration with different systems normally works pretty well because we can start working on that right away. The 'customize x screen' are the main problems areas because the developers can't do anything from that. We have to wait until we get the requirements from the BAs before we can really do anything.</p>
<p><strong>EDIT: More insight/confusion perhaps:</strong>
I wonder if part of the problem is that the screen that are being customized are already there as this is a COTS product that is being heavily customized. People suggest that the user stories should be along the lines of 'make a screen that does X'. That's already done. Maybe there isn't a good way to do user stories for these requirements... maybe this need to be a whole new question.</p>
http://stackoverflow.com/questions/530209/how-do-i-merge-a-cvs-branch-into-head-using-the-eclipse-merge-tools/530241#5302412Answer by Alex Argo for How do I merge a CVS branch into HEAD using the Eclipse merge tools?Alex Argo2009-02-09T22:08:00Z2009-02-09T22:08:00Z<p>Ensure that the destination is loaded into your workspace. This is the most important part and the part I missed when trying to do it a couple of times.</p>
<p>For example, if you wish to merge your changes into HEAD, make sure the project is shared with HEAD in your workspace(not the branch you have been working on). To do this, select the project and choose <code>Team > Replace With > Another Branch or Version</code> from the context menu. Then select the branch to replace with.</p>
<p>From this point, choose <code>Team > Merge</code> and then select the branch you want to merge into HEAD.</p>
http://stackoverflow.com/questions/122160/is-there-an-easy-way-to-attach-source-in-eclipse3Is there an easy way to attach source in Eclipse?Alex Argo2008-09-23T16:33:21Z2009-01-29T18:36:33Z
<p>I'm a big fan of the way Visual Studio will give you the comment documentation / parameter names when completing code that you have written and ALSO code that you are referencing (various libraries/assemblies).</p>
<p>Is there an easy way to get inline javadoc/parameter names in Eclipse when doing code complete or hovering over methods? Via plugin? Via some setting? It's extremely annoying to use a lot of libraries (as happens often in Java) and then have to go to the website or local javadoc location to lookup information when have it in the source jars right there!</p>
http://stackoverflow.com/questions/466858/what-is-the-standard-way-to-handle-url-mapping-for-javaserver-faces0What is the standard way to handle url-mapping for JavaServer Faces?Alex Argo2009-01-21T20:31:51Z2009-01-21T21:29:03Z
<p>All the tutorials I have seen seem to use <code>*.jsf</code>, <code>*.faces</code>, or <code>/<directory_name>/*</code> for the url-pattern in the Java Server faces servlet mapping. Is there some official sun-recommended naming convention or de-facto standard?</p>
http://stackoverflow.com/questions/400881/when-using-the-latest-jdbc-driver-for-sql-server-2005-2008-how-do-prepared-statem1When using the latest jdbc driver for SQL Server 2005/2008 how do prepared statements, views, and stored procedures compare regarding performance?Alex Argo2008-12-30T17:13:05Z2008-12-30T20:01:43Z
<p>When using the latest Microsoft jdbc driver for SQL Server 2005/2008 how do prepared statements, views, and stored procedures compare regarding performance? </p>
<p>If I have a plain old select statement with some dynamic where clauses will I see benefits from moving from straight SQL in a prepared statement to a view or even stored procedure?</p>
<p>To be more specific, what about something like this:</p>
<pre><code>select foo.name, bar.name, baz.name, belch.burp
from foo
inner join bar on foo.id=bar.fooID
inner join baz on bar.id=baz.barID
inner join belch on baz.id = belch.bazID
where foo.name like '%<USERINPUT>%' and bar.name like '%<USERINPUT>%'
</code></pre>
http://stackoverflow.com/questions/69917/how-do-you-do-paged-lists-in-java-server-faces2How do you do paged lists in Java Server Faces?Alex Argo2008-09-16T06:53:59Z2008-12-15T06:42:20Z
<p>I have a JSF application that I am converting over to use webservices instead of straight up database queries. There are some extremely long lists that <em>before</em> could be returned easily with a simple sql query. I'd like to figured out how implement the paging using JSF/web services. Is there a good design pattern for doing paged web services?</p>
<p>If it matters, I'm currently using the Apache MyFaces reference implementation of JSF with the Tomahawk extensions.</p>
http://stackoverflow.com/questions/350141/in-unix-linux-how-to-you-find-out-what-group-a-given-user-is-in-via-command-line1In unix/linux how to you find out what group a given user is in via command line?Alex Argo2008-12-08T16:53:19Z2008-12-08T17:14:25Z
<p>In unix/linux how to you find out what group a given user is in via command line?</p>
http://stackoverflow.com/questions/184814/is-there-some-industry-standard-for-unacceptable-webapp-response-time4Is there some industry standard for unacceptable webapp response time?Alex Argo2008-10-08T20:45:09Z2008-10-09T08:12:31Z
<p>There's a cots(commercial off-the-shelf) application that I work on customizing, where a couple of pages take an extremely long time to load for certain distributions of data. (I'm talking approximately 3 minutes for a page to load in this instance... and the time is growing exponentially). </p>
<p>Clearly this is unacceptable but are there studies out there where I can point what acceptable response time is?</p>
<p>I'd like some good studies possibly that discuss response time.</p>
http://stackoverflow.com/questions/184814/is-there-some-industry-standard-for-unacceptable-webapp-response-time/184966#1849660Answer by Alex Argo for Is there some industry standard for unacceptable webapp response time?Alex Argo2008-10-08T21:15:04Z2008-10-08T21:15:04Z<p>There's a nice blog post <a href="http://www.webperformancematters.com/journal/2007/7/10/acceptable-response-times.html" rel="nofollow">here</a> that argues that there really <strong>is</strong> no industry standard.</p>
<p>Maybe there's no good way to do this.</p>
http://stackoverflow.com/questions/113130/where-can-i-find-cheap-java-hosting/117216#1172160Answer by Alex Argo for Where can I find cheap Java hosting?Alex Argo2008-09-22T20:02:51Z2008-09-22T20:02:51Z<p>Are there any viable cheaper shared hosting options available for Java? So far it seems like VPS is the only way to go.</p>
http://stackoverflow.com/questions/92696/how-can-you-get-database-specific-performance-metrics-for-things-like-cpu-memory0How can you get database specific performance metrics for things like CPU/Memory/etc. in SQL Server 2005?Alex Argo2008-09-18T13:50:33Z2008-09-18T16:49:57Z
<p>I have a couple databases on a shared SQL Server 2005 cluster instance, that I would like performance metrics on. I have some processes that run for a very long time and suspect that code inefficiencies, rather than insufficient hardware are to blame.</p>
<p>I would like some way to get these performance metrics so that I can rule out the database hardware as the culprit.</p>
http://stackoverflow.com/questions/92696/how-can-you-get-database-specific-performance-metrics-for-things-like-cpu-memory/94244#942440Answer by Alex Argo for How can you get database specific performance metrics for things like CPU/Memory/etc. in SQL Server 2005?Alex Argo2008-09-18T16:37:05Z2008-09-18T16:37:05Z<p>I'm just trying to make sure the bottleneck currently is not (and will not likely in the future) be a bottleneck for some of the queries I am running.</p>
<p>The amount of data that will be going through this application is going to quadruple in the next release. I want to be able to check to make sure I'm using less than 25% of the SQL Server resources when I run my jobs. The actual total CPU/RAM don't ever hit 100% but I'm trying to be prepared for what may happen with the increased data load. Any ideas how to get this?</p>
http://stackoverflow.com/questions/89891/what-are-the-benefits-of-the-iterator-interface-in-java/89936#899361Answer by Alex Argo for What are the benefits of the Iterator interface in Java?Alex Argo2008-09-18T04:11:49Z2008-09-18T04:11:49Z<p>I think it is just good OO practice. You can have code that deals with all kinds of iterators, and even gives you the opportunity to create your own data structures or just generic classes that implement the iterator interface. You don't have to worry about what kind of implementation is behind it.</p>
http://stackoverflow.com/questions/86221/best-java-gui-editor/86242#862421Answer by Alex Argo for best Java GUI EditorAlex Argo2008-09-17T18:40:30Z2008-09-17T18:49:36Z<p>NetBeans' included visual swing editor Matisse is probably the best one. </p>
<p>If you are using Eclipse, Jigloo is probably the best out there. (A plugin)</p>
http://stackoverflow.com/questions/85186/mysqldump-equivalent-for-mssql/85261#852613Answer by Alex Argo for mysqldump equivalent for MSSQLAlex Argo2008-09-17T16:51:56Z2008-09-17T16:51:56Z<p>The easiest way to move a Database would be to use SQL Server Management Studio to Export the database to another server, or if that doesn't work, make a backup like other's had suggested and restore it elsewhere.</p>
<p>If you are looking for a way to dump the table structure to SQL as well as create insert scripts for the data a good free option would be to use amScript and amInsert from <a href="http://www.asql.biz/en/Download2005.aspx" rel="nofollow">http://www.asql.biz/en/Download2005.aspx</a>.</p>
<p>If you want a good pay version I would check out Red-Gate SQL Compare and Red-Gate SQL-Data Compare. These tools are probably overkill though and probably a bit pricey if you don't intend to use them a lot. I would think it would mostly be relegated to DBAs. You can look at the Red-Gate tools at <a href="http://www.red-gate.com/" rel="nofollow">http://www.red-gate.com/</a>.</p>
http://stackoverflow.com/questions/85058/why-do-we-need-other-jvm-languages/85130#851303Answer by Alex Argo for Why do we need other JVM languagesAlex Argo2008-09-17T16:38:27Z2008-09-17T16:38:27Z<p>Java is a fairly verbose programming language that is getting outdated very quickly with all of the new fancy languages/frameworks coming out in the past 5 years. To support all the fancy syntax that people want in a language AND preserve backwards compatibility it makes more sense to add more languages to the runtime.</p>
<p>Another benefit is it lets you run some web frameworks written in Ruby ala JRuby (aka Rails), or Grails(Groovy on Railys essentially), etc. on a proven hosting platform that likely already is in production at many companies, rather than having to using that not nearly as tried and tested Ruby hosting environments.</p>
<p>To compile the other languages you are just converting to Java byte code.</p>
http://stackoverflow.com/questions/84912/what-is-the-easiest-or-fastest-way-to-make-css-render-the-same-in-all-browsers/84951#849512Answer by Alex Argo for What is the easiest or fastest way to make CSS render the same in all browsersAlex Argo2008-09-17T16:18:38Z2008-09-17T16:18:38Z<p>I've had success using the Eric Meyer CSS reset available <a href="http://meyerweb.com/eric/tools/css/reset/reset.css" rel="nofollow" title="CSS Reset">here</a>. It basically overrides a bunch of browser CSS styles that are default. Having said that, there are still a lot of differences (probably some of the ones that are troubling you like box model differences, etc. In that case, it might be better to use <a href="http://code.google.com/p/blueprintcss/" rel="nofollow" title="Blueprint css framework">Blueprint</a> to handle most of your css.</p>
http://stackoverflow.com/questions/74447/is-it-possible-to-connect-to-mac-os-x-10-5-leopards-built-in-vnc-server-at-a-low2Is it possible to connect to Mac OS X 10.5 Leopard's built in vnc server at a low color depth from Windows?Alex Argo2008-09-16T16:51:29Z2008-09-16T17:28:30Z
<p>If I attempt to connect to Mac OS X 10.5 Leopard's built in vnc server at a low color depth from Windows, the client bombs after connecting. It only works when I set it to the highest color depth. I've tried with at least 3 windows VNC clients. Any ideas? There some setting I can set in Mac OS X?</p>
<p>It takes about 20 seconds to repaint the screen with my current connection and high bit depth setting.</p>
http://stackoverflow.com/questions/69917/how-do-you-do-paged-lists-in-java-server-faces/73059#730591Answer by Alex Argo for How do you do paged lists in Java Server Faces?Alex Argo2008-09-16T14:40:16Z2008-09-16T14:40:16Z<p>All of the answers seem geared towards using EJB/JPA which have database access. The database I'm getting my data from now is going away, and I need to use webservices... any more help out there?</p>
http://stackoverflow.com/questions/62289/read-write-to-windows-registry-using-java/63231#632315Answer by Alex Argo for read/write to Windows Registry using JavaAlex Argo2008-09-15T14:10:46Z2008-09-15T14:10:46Z<p>I've done this before using <a href="http://sourceforge.net/projects/jregistrykey/" rel="nofollow" title="jRegistryKey">jRegistryKey</a>. It is an LGPL Java/JNI library that can do what you need. Here's an example of how I used it to enabled Registry editing through regedit and also the "Show Folder Options" option for myself in Windows via the registry.</p>
<pre><code>import java.io.File;
import ca.beq.util.win32.registry.RegistryKey;
import ca.beq.util.win32.registry.RegistryValue;
import ca.beq.util.win32.registry.RootKey;
import ca.beq.util.win32.registry.ValueType;
public class FixStuff {
private static final String REGEDIT_KEY = "Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\System";
private static final String REGEDIT_VALUE = "DisableRegistryTools";
private static final String REGISTRY_LIBRARY_PATH = "\\lib\\jRegistryKey.dll";
private static final String FOLDER_OPTIONS_KEY = "Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer";
private static final String FOLDER_OPTIONS_VALUE = "NoFolderOptions";
public static void main(String[] args) {
//Load JNI library
RegistryKey.initialize( new File(".").getAbsolutePath()+REGISTRY_LIBRARY_PATH );
enableRegistryEditing(true);
enableShowFolderOptions(true);
}
private static void enableShowFolderOptions(boolean enable) {
RegistryKey key = new RegistryKey(RootKey.HKEY_CURRENT_USER,FOLDER_OPTIONS_KEY);
RegistryKey key2 = new RegistryKey(RootKey.HKEY_LOCAL_MACHINE,FOLDER_OPTIONS_KEY);
RegistryValue value = new RegistryValue();
value.setName(FOLDER_OPTIONS_VALUE);
value.setType(ValueType.REG_DWORD_LITTLE_ENDIAN);
value.setData(enable?0:1);
if(key.hasValue(FOLDER_OPTIONS_VALUE)) {
key.setValue(value);
}
if(key2.hasValue(FOLDER_OPTIONS_VALUE)) {
key2.setValue(value);
}
}
private static void enableRegistryEditing(boolean enable) {
RegistryKey key = new RegistryKey(RootKey.HKEY_CURRENT_USER,REGEDIT_KEY);
RegistryValue value = new RegistryValue();
value.setName(REGEDIT_VALUE);
value.setType(ValueType.REG_DWORD_LITTLE_ENDIAN);
value.setData(enable?0:1);
if(key.hasValue(REGEDIT_VALUE)) {
key.setValue(value);
}
}
}
</code></pre>
http://stackoverflow.com/questions/57238/find-missing-javascript-includes-in-website/57246#572467Answer by Alex Argo for Find Missing Javascript Includes in WebsiteAlex Argo2008-09-11T18:12:49Z2008-09-11T18:12:49Z<p>If you get the <a href="https://addons.mozilla.org/en-US/firefox/addon/1843" rel="nofollow" title="Firebug">Firebug</a> firefox plugin and enable the consoles it should tell you when there are errors retrieving resources in the console.</p>
http://stackoverflow.com/questions/56843/looking-for-an-hql-builder-hibernate-query-language/56883#568834Answer by Alex Argo for Looking for an HQL builder (Hibernate Query Language)Alex Argo2008-09-11T15:27:56Z2008-09-11T15:41:21Z<p>It looks like you want to use the Criteria query API built into Hibernate. To do your above query it would look like this:</p>
<pre><code>List<Stock> stocks = session.createCriteria(Stock.class)
.add(Property.forName("id").eq(id))
.list();
</code></pre>
<p>If you don't have access to the Hibernate Session yet, you can used 'DetachedCriteria' like so:</p>
<pre><code>DetachedCriteria criteria = DetachedCriteria.forClass(Stock.class)
.add(Property.forName("id").eq(id));
</code></pre>
<p>If you wanted to get all Stock that have a Bonus with a specific ID you could do the following:</p>
<pre><code>DetachedCriteria criteria = DetachedCriteria.forClass(Stock.class)
.createCriteria("Stock")
.add(Property.forName("id").eq(id)));
</code></pre>
<p>For more infromation check out <a href="http://www.hibernate.org/hib_docs/reference/en/html/querycriteria.html" rel="nofollow" title="Criteria Queries from Hibernate Documentation">Criteria Queries</a> from the Hibernate docs</p>
http://stackoverflow.com/questions/466858/what-is-the-standard-way-to-handle-url-mapping-for-javaserver-faces/466891#466891Comment by Alex Argo on What is the standard way to handle url-mapping for JavaServer Faces?Alex Argo2009-01-21T21:27:07Z2009-01-21T21:27:07ZI edited the question to include '.jsf' so you may want to edit the part of the question where you say 'Those' are the recommended conventions. Thanks for finding that though.http://stackoverflow.com/questions/350141/in-unix-linux-how-to-you-find-out-what-group-a-given-user-is-in-via-command-line/350145#350145Comment by Alex Argo on In unix/linux how to you find out what group a given user is in via command line?Alex Argo2008-12-08T17:02:32Z2008-12-08T17:02:32ZThis appears to be pretty useful as well. It has more verbose output than the 'groups' command, so if you need the group id/user id use this!http://stackoverflow.com/questions/184814/is-there-some-industry-standard-for-unacceptable-webapp-response-time/184828#184828Comment by Alex Argo on Is there some industry standard for unacceptable webapp response time?Alex Argo2008-10-08T21:16:05Z2008-10-08T21:16:05ZThese are good answers. Any luck finding anything for web apps? The only thing I can find is that there IS no standard :(http://stackoverflow.com/questions/123089/how-do-you-avoid-waiting-for-requirements-when-using-iterative-agile-development/123143#123143Comment by Alex Argo on How do you avoid waiting for requirements when using iterative agile development methods like SCRUM?Alex Argo2008-09-24T13:37:35Z2008-09-24T13:37:35Zhaha small worldhttp://stackoverflow.com/questions/123089/how-do-you-avoid-waiting-for-requirements-when-using-iterative-agile-development/123143#123143Comment by Alex Argo on How do you avoid waiting for requirements when using iterative agile development methods like SCRUM?Alex Argo2008-09-23T20:47:39Z2008-09-23T20:47:39ZOn a side note... your named seemed familiar for some reason. I think I have determined that you are friends with Ben Lee, whom I worked with for a while in 2007.http://stackoverflow.com/questions/123089/how-do-you-avoid-waiting-for-requirements-when-using-iterative-agile-development/123143#123143Comment by Alex Argo on How do you avoid waiting for requirements when using iterative agile development methods like SCRUM?Alex Argo2008-09-23T20:41:07Z2008-09-23T20:41:07ZThat's the problem. There is a big backlog of the BAs putting together this requirement documents. It gets brought up at every sprint review session. We ask for them to be done sooner, but they are working nonstop.http://stackoverflow.com/questions/123089/how-do-you-avoid-waiting-for-requirements-when-using-iterative-agile-development/123143#123143Comment by Alex Argo on How do you avoid waiting for requirements when using iterative agile development methods like SCRUM?Alex Argo2008-09-23T20:30:43Z2008-09-23T20:30:43ZHmmm... the problem is the screen is already there... so the changes are along the lines of 'move this field over here' or 'this field need to be calculated like XXXXXXX instead of how it is now'. Our requirements docs that we get are basically a big list of these to change for the screen.http://stackoverflow.com/questions/123089/how-do-you-avoid-waiting-for-requirements-when-using-iterative-agile-development/123148#123148Comment by Alex Argo on How do you avoid waiting for requirements when using iterative agile development methods like SCRUM?Alex Argo2008-09-23T19:43:29Z2008-09-23T19:43:29ZI'm beginning to wonder if there is a problem with our user stories in that they are too vague/set ahead of time.http://stackoverflow.com/questions/123089/how-do-you-avoid-waiting-for-requirements-when-using-iterative-agile-development/123147#123147Comment by Alex Argo on How do you avoid waiting for requirements when using iterative agile development methods like SCRUM?Alex Argo2008-09-23T19:28:45Z2008-09-23T19:28:45ZOur business owner and scrum master come up with the list of things that we do for the sprint and then assign who does them. At our planning sessions we normally just provide the estimates, so they are not very useful. We used to volunteer for the tasks in the sprint planning too... not anymore thohttp://stackoverflow.com/questions/122110/is-there-a-way-to-get-jadclipse-working-with-eclipse-3-4Comment by Alex Argo on Is there a way to get jadclipse working with Eclipse 3.4?Alex Argo2008-09-23T18:04:08Z2008-09-23T18:04:08ZTurns out that I installed eclipse in a new location and didn't have the plugin installed... everything else appeared to work because most of it was just in my workspace preferences. My bad.http://stackoverflow.com/questions/122110/is-there-a-way-to-get-jadclipse-working-with-eclipse-3-4/122141#122141Comment by Alex Argo on Is there a way to get jadclipse working with Eclipse 3.4?Alex Argo2008-09-23T16:41:51Z2008-09-23T16:41:51ZSweet. Eagerly awaiting them.http://stackoverflow.com/questions/113130/where-can-i-find-cheap-java-hostingComment by Alex Argo on Where can I find cheap Java hosting?Alex Argo2008-09-22T04:43:36Z2008-09-22T04:43:36ZI'm in the united states... doesn't really matter where it is I suppose... isn't that the beauty of the Internet?http://stackoverflow.com/questions/92696/how-can-you-get-database-specific-performance-metrics-for-things-like-cpu-memory/94378#94378Comment by Alex Argo on How can you get database specific performance metrics for things like CPU/Memory/etc. in SQL Server 2005?Alex Argo2008-09-18T17:49:26Z2008-09-18T17:49:26ZThis looks like a good tool. Almost there... I still can't figure how to limit to just one specific Database, however.http://stackoverflow.com/questions/74447/is-it-possible-to-connect-to-mac-os-x-10-5-leopards-built-in-vnc-server-at-a-low/74811#74811Comment by Alex Argo on Is it possible to connect to Mac OS X 10.5 Leopard's built in vnc server at a low color depth from Windows?Alex Argo2008-09-16T17:32:14Z2008-09-16T17:32:14ZThis is my current workaround. Vine Server is pretty easy to setup. I'd really like to be able to do it with the builtin though :(http://stackoverflow.com/questions/66186/whats-the-best-ssh-client-for-windows/66190#66190Comment by Alex Argo on What's the best SSH client for windows?Alex Argo2008-09-15T19:54:23Z2008-09-15T19:54:23ZHmmm... thats one way to get rep. Post a question you know the answer to and let the upvotes come!