User Steve g - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T07:21:32Zhttp://stackoverflow.com/feeds/user/12092http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1471484/gwt-change-url-after-processing-request-parameters/1495697#14956970Answer by Steve g for GWT Change URL after processing request parametersSteve g2009-09-30T01:13:22Z2009-09-30T01:13:22Z<p>History per Igro's suggestion is the way to go if you can. If you HAVE to process information on the sever before you can even show somebody the page that is going to host the GWT, then you can process them w/ the servlet or whatever server-side technology you are using and send a 304 to redirect the user to a page that doesn't have the get Params in the URL. Also you could potentially use POST instead of GET, but that's kind of ugly too (Depending on what exactly you're doing). Definitely try to use the History system if possible.</p>
http://stackoverflow.com/questions/332337/session-management-in-gwt-without-using-java-on-the-server/332489#3324891Answer by Steve g for Session management in GWT without using Java on the server?Steve g2008-12-01T22:40:19Z2008-12-01T22:40:19Z<p>Without knowing how you're doing your RPC is working, its hard to give good advice.</p>
<p>If your AJAX service requires a user to be authenticated (IE have a valid session), it is ok to just send a 401 error saying that the user is invalid. Client-side can interpret the 401 error as a message that it should set the user up for re-authentication.</p>
http://stackoverflow.com/questions/213421/inject-dependencies-in-methods-or-in-the-constructor/213440#2134401Answer by Steve g for Inject dependencies in methods or in the constructor?Steve g2008-10-17T19:02:05Z2008-10-17T19:02:05Z<p><a href="http://crazybob.org" rel="nofollow">Crazy Bob Lee</a> says use constructor injection whenever possible. Only use method injection when you don't have control over instantiation (like in a servlet).</p>
http://stackoverflow.com/questions/192546/is-this-the-right-approach-for-structuring-codebase/192601#1926010Answer by Steve g for Is this the right approach for structuring codebase?Steve g2008-10-10T18:41:29Z2008-10-10T18:41:29Z<p>I would definitely say check Maven(2) out. It is very good for doing this sort of thing. You can define individual models and version then very easily. Netbeans also does a decent job of integrating with.</p>
<p>Also I suggest you set up <a href="http://archiva.apache.org/" rel="nofollow">Archiva</a> which will let you be dependent upon binaries of other artifacts that your company generates internally. This also acts as a proxy and will keep a local copy of any external dependencies your projects might have so its very quick to get the new versions internally.</p>
http://stackoverflow.com/questions/192417/improved-collection-iterator/192463#1924630Answer by Steve g for improved collection IteratorSteve g2008-10-10T17:59:14Z2008-10-10T17:59:14Z<p>I haven't ever run into an issue where I've needed a peek(); Iterator has worked just fine for me. I'm curious how you're using iterators that you feel you need this added functionality.</p>
http://stackoverflow.com/questions/192114/using-generics-directly-in-code/192275#1922750Answer by Steve g for Using generics directly in codeSteve g2008-10-10T17:07:11Z2008-10-10T17:07:11Z<p>If your List of Strings is actually just a list of strings, then leave it as a list of Strings. If your List of Strings, if it has to have specially formatted strings, or you want to encapsulate, some additional behavior, then create your own class that inherits from List. If the functionality operates on any given list of Strings, why not encapsulate that functionality in one spot. And it doesn't have to be static(and I wouldn't suggest it), Maybe make a factory to return an instance of a StringListProcessor.</p>
http://stackoverflow.com/questions/189430/javascript-how-to-detect-that-the-internet-connection-is-offline/191825#1918250Answer by Steve g for JavaScript: How to detect that the internet connection is offline?Steve g2008-10-10T15:18:16Z2008-10-10T15:18:16Z<p>Another question is what are you going to do about the connection being down? Check out <a href="http://gears.google.com" rel="nofollow">Gears</a></p>
http://stackoverflow.com/questions/191483/how-do-i-submit-an-ajax-request-before-the-page-is-loaded/191499#1914990Answer by Steve g for How do i submit an ajax request before the page is loadedSteve g2008-10-10T14:13:10Z2008-10-10T14:13:10Z<p>Why not check before the user is even given the html?</p>
<p>If you're just running static HTML w/ Javascript, I would suggest using <a href="http://www.jquery.com" rel="nofollow">JQuery</a> and using the $(document).ready():</p>
http://stackoverflow.com/questions/191413/why-does-my-spinner-gif-stop-while-jquery-ajax-call-is-running/191435#1914350Answer by Steve g for Why does my spinner GIF stop while jQuery ajax call is running?Steve g2008-10-10T14:04:45Z2008-10-10T14:04:45Z<p>Are you doing a synchronous call or asynchronous call? synchronous calls do cause the browser to seemingly lock up for the duration of the call. The other possibility is that the system is very busy doing whatever work it is doing.</p>
http://stackoverflow.com/questions/191306/how-can-i-set-the-current-line-of-execution-in-the-eclipse-java-debugger/191320#191320-1Answer by Steve g for How can I set the current line of execution in the eclipse java debuggerSteve g2008-10-10T13:40:06Z2008-10-10T13:40:06Z<p>In the debugger perspective, click on the line you want, and choose from the Run menu, "Run to Line" This will get you to that point in execution.</p>
http://stackoverflow.com/questions/191215/how-to-stop-java-process-gracefully/191255#191255-1Answer by Steve g for How to stop java process gracefully?Steve g2008-10-10T13:23:57Z2008-10-10T13:23:57Z<p>Similar Question <a href="http://stackoverflow.com/questions/61692/how-do-i-get-my-java-application-to-shutdown-nicely-in-windows#72078">Here</a></p>
<p>Finalizers in Java are bad. They add a lot of overhead to garbage collection. Avoid them whenever possible. </p>
<p>The shutdownHook will only get called when the VM is shutting down. I think it very well may do what you want.</p>
http://stackoverflow.com/questions/189359/what-is-il-weaving/189369#1893691Answer by Steve g for What is IL Weaving?Steve g2008-10-09T22:00:17Z2008-10-09T22:00:17Z<p>IL Weaving is simlar to ByteCode Weaving. .Net compiles to an intermediate language which is run by the .NET clr. IL Weaving is basically analyzing the and altering the the intermediate language. Since it is done at that level it can be done for all .NET languages.</p>
http://stackoverflow.com/questions/189078/web-service-versus-regular-http-request/189141#1891410Answer by Steve g for Web Service versus regular Http RequestSteve g2008-10-09T20:45:14Z2008-10-09T20:45:14Z<p>I would think the difference wouldn't much if any difference. The HttpRequest may actually be faster just because its using one less layer in the stack. If you see yourself expanding the services in the future, you might go ahead and use WebSerivce, not because of performance (again the performance difference is probably negligible), but because the WebService is going to be more maintainable as services get more complex.</p>
http://stackoverflow.com/questions/187462/client-side-callback-in-gwt/187488#1874886Answer by Steve g for Client side Callback in GWTSteve g2008-10-09T14:21:46Z2008-10-09T14:29:04Z<p>Well, there are a couple of Options. You need to get the data from the server... So you either need to poll the server, or use server push.</p>
<p>Polling is pretty easy. Just use the <a href="http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/index.html?overview-summary.html" rel="nofollow">Timer</a> class to repeatedly call a service to see what value it should be displaying.</p>
<p>Server push is done using something like comet. <a href="http://code.google.com/p/rocket-gwt/wiki/Comet" rel="nofollow">here</a> is one implementation for gwt that looks somewhat promising. They basic concept behind this is the browser sends a request to the server and keeps the connection open so the server is free to keep sending data back.</p>
<p>Comet is the better option if you can get it working. It will probably be simpler and scale better.</p>
<p>Good Luck!</p>
http://stackoverflow.com/questions/187380/why-use-ruby-instead-of-smalltalk/187444#1874440Answer by Steve g for Why use Ruby instead of Smalltalk?Steve g2008-10-09T14:11:42Z2008-10-09T14:11:42Z<p>I think part of the problem is the development-environment-is-the-runtime. This gives a lot of power, but it also presents a larger learning curve. </p>
<p><a href="http://wiki.squeak.org/squeak/2230" rel="nofollow">Here</a> is a hello world tutorial.</p>
<p>This is very different from other languages where I just need to know how to open a text editor and copy and paste text, hit save, and run a compiler. I HAVE to know how to use the environment. That tutorial doesn't even show me how to create a basic program (which is likely more a fault of that tutorial) that I can run.</p>
<p>There is definately a higher cost of just getting things going than most other languages.</p>
<p>Most languages have some nice eye-catching code that they can show off. I haven't seen that with Smalltalk. I also think that there is some stigma to Smalltalk because it has been around so long and it is still relatively obscure.</p>
http://stackoverflow.com/questions/180549/learn-c-first-before-learning-objective-c/180578#1805782Answer by Steve g for Learn C first before learning Objective-CSteve g2008-10-07T21:44:55Z2008-10-07T21:44:55Z<p>C gives you very little abstraction from assembly. Some C Compilers will even let you inline assembly. This can be very useful for thinking about how the computer works, which is important to know.</p>
<p>That being said, if you're really interested in Object-C don't let yourself get stuck writing something in C just because its "good for you". You don't need to frustrate yourself while you're trying to learn a new skill set. It is important that you have fun with what you're doing.</p>
http://stackoverflow.com/questions/180413/mocks-or-real-classes/180441#1804413Answer by Steve g for Mocks or real classes?Steve g2008-10-07T21:09:37Z2008-10-07T21:09:37Z<p>It is fine to use the "real thing" as long as you have absolute control over the object. For example if you have an object that just has properties and accessors you're probably fine. If there is logic in the object you want to use, you could run into problems. </p>
<p>If a unit test for class a uses an instance of class b and an change introduced to b breaks b, then the tests for class a are also broken. This is where you can run into problems where as with a mock object you could always return the correct value. Using "the real thing" Can kind of convolute tests and hide the real problem.</p>
<p>Mocks can have downsides too, I think there is a balance with some mocks and some real objects you will have to find for yourself.</p>
http://stackoverflow.com/questions/180107/detecting-when-a-user-leaves-a-page-browser-in-flex/180143#1801430Answer by Steve g for Detecting when a user leaves a page / browser in FlexSteve g2008-10-07T20:04:32Z2008-10-07T20:04:32Z<p>There is Body.onUnload, but i'm not sure how reliable it actually is.</p>
http://stackoverflow.com/questions/178921/ie-7-redirecting-after-jquery-ajax-calls/178942#1789422Answer by Steve g for IE 7 redirecting after jQuery ajax callsSteve g2008-10-07T15:12:33Z2008-10-07T15:12:33Z<p>IE Handles default events differently (also beware of hitting enter in a text field). IE is causing some default event handler to fire. If searchButton is a link with HREF of "" it will reload the current page. You can try to set the href to "javascript:void(0)" or do something like:</p>
<pre><code>$('#searchButton').click( function(e) {
$('#inquiry').load('/search.php?pid=' + $('#searchValue').val());
e.preventDefault();
});
</code></pre>
http://stackoverflow.com/questions/178821/using-explicit-interfaces-to-ensure-programming-against-an-interface/178831#1788311Answer by Steve g for Using explicit interfaces to ensure programming against an interface.Steve g2008-10-07T14:54:57Z2008-10-07T14:59:59Z<p>Well there is an organizational advantage. You can encapsulate your ICuttingSurface, ICut and related functionality into an Assembly that is self-contained and unit testable. Any implementations of the ICut interface are easily Mockable and can be made to be dependant upon only the ICut interface and not actual implementations which makes for a more modular and clean system.</p>
<p>Also this helps keep the inheritance more simplified and gives you more flexibility to use polymoprhism.</p>
http://stackoverflow.com/questions/167193/jpa-and-2-simple-tables/167222#1672220Answer by Steve g for JPA and 2 simple tablesSteve g2008-10-03T14:44:38Z2008-10-03T14:44:38Z<p>You may want to reformat your post. (4 spaces before a line makes it look like code).</p>
<p>The quick answer is that if you have a Many-to-Many relationship you will need another table. If you have a One-to-Many or a Many-to-One relationship you will not.</p>
http://stackoverflow.com/questions/167179/java-tutorial/167204#1672043Answer by Steve g for Java TutorialSteve g2008-10-03T14:40:28Z2008-10-03T14:40:28Z<p>If you want to learn <a href="http://eclipsetutorial.sourceforge.net/totalbeginner.html" rel="nofollow">Java w/ Eclipse</a> here is a great site.</p>
http://stackoverflow.com/questions/166823/java-newbie-ish-inheritance-question/166934#1669340Answer by Steve g for Java: Newbie-ish inheritance question...Steve g2008-10-03T13:43:22Z2008-10-03T13:52:03Z<p>I'm not sure why you're trying to do what you're actually trying to do. Providing more of a context might let us give you more help.</p>
<pre><code>public class B <X extends B>{
public X foo() throws InstantiationException, IllegalAccessException{
return (X)this.getClass().newInstance();
}
}
public class C extends B<C>{
}
</code></pre>
<p>Let me offer you this piece of advice. The way CS classes tend to be taught is that professors are enamored with inheritance, but haven't figured out composition. I think What you might be looking for is composition. So instead of calling getNextThing on the Thing itself, maybe you should think about making Thing implement <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Iterable.html" rel="nofollow">Iterable</a></p>
<p>This means you will just need to write an <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Iterator.html" rel="nofollow">Iterator</a> that can encapsulate the logic of getting the next thing, as it doesn't seem to fit into your inheritance model. Another advantage of this is that you get some nice syntactic devices out of this (enhanced for loop comprehension).</p>
http://stackoverflow.com/questions/166607/how-do-i-find-the-version-of-apache-running-without-access-to-the-command-line/166625#1666251Answer by Steve g for How do I find the version of Apache running without access to the command line?Steve g2008-10-03T12:42:07Z2008-10-03T12:42:07Z<p>telnet to the host at port 80
type:</p>
<pre><code>get / http1.1
::enter::
::enter::
</code></pre>
<p>It is kind of an http request, but its not valid so the 500 error it gives you will probably give you the information you want. The the blank lines at the end are important otherwise it will just seem to hang.</p>
http://stackoverflow.com/questions/152871/isnt-resource-oriented-really-object-oriented/152896#1528960Answer by Steve g for Isn't resource-oriented really object-oriented?Steve g2008-09-30T12:49:46Z2008-09-30T12:49:46Z<p>Yes, your parallel to object-orientation is correct.</p>
<p>The thing is, most webservices (REST, RESTful, SOAP,..) can pass information in the form of objects, so that isn't what makes it different. SOAP tends to lead to fewer services with more methods. REST tends to lead to more services (1 per resource type) with a few calls each.</p>
http://stackoverflow.com/questions/148681/unloading-classes-in-java/148703#1487033Answer by Steve g for Unloading classes in java?Steve g2008-09-29T13:46:13Z2008-09-29T13:46:13Z<p>Classloaders can be a tricky problem. You can especially run into problems if you're using multiple classloaders and don't have their interactions clearly and rigorously defined. I think in order to actually be able to unload a class youlre going go have to remove all references to any classes(and their instances) you're trying to unload.</p>
<p>Most people needing to do this type of thing end up using <a href="http://en.wikipedia.org/wiki/OSGi" rel="nofollow">OSGi</a>. OSGi is really powerful and surprisingly lightweight and easy to use,</p>
http://stackoverflow.com/questions/148478/java-2d-drawing-optimal-performance/148611#1486110Answer by Steve g for Java 2D Drawing Optimal PerformanceSteve g2008-09-29T13:17:21Z2008-09-29T13:17:21Z<p>There are couple of things you will need to keep in mind</p>
<p>1) is refreshing <a href="http://java.sun.com/docs/books/tutorial/uiswing/misc/timer.html" rel="nofollow">this link</a> shows how to use swingtimers which might be a good option for calling repaint. Getting repaint figured out (as the previous posters have said is important so you're not doing too much work). </p>
<p>2) Make sure you're only doing drawing in one thread. Updating UI from mulitple threads can lead to nasty things.</p>
<p>3) Double Buffering. This makes the rendering smoother. <a href="http://gpwiki.org/index.php/Java:Tutorials:Double_Buffering" rel="nofollow">this site</a> has some more good info for you</p>
http://stackoverflow.com/questions/141241/does-java-have-a-using-clause/141279#141279-1Answer by Steve g for Does java have a using clause?Steve g2008-09-26T18:59:09Z2008-09-26T18:59:09Z<p>No there isn't.</p>
<p>You can</p>
<pre><code>public void func(){
{
ArrayList l = new ArrayList();
}
System.out.println("Hello");
}
</code></pre>
<p>This gives you the limited scope of the using clause, but there isn't any IDisposable interface to call finalization code. You can use try{}catch(){}Finally{}, but it doesn't have the sugar of using. Incidentally using finalizers in Java is generally a bad idea.</p>
http://stackoverflow.com/questions/140712/what-is-the-minimum-requirement-to-create-frames-in-java/140729#1407290Answer by Steve g for What is the minimum requirement to create frames in java?Steve g2008-09-26T17:13:03Z2008-09-26T17:13:03Z<pre><code>Frame f = new Frame();
f.setVisible(true);
</code></pre>
<p>Would be the minimal code, but you might look into <a href="http://java.sun.com/docs/books/tutorial/uiswing/" rel="nofollow">Swing</a>. I'm not sure if this is what you're trying to ask though.</p>
<p>Are you asking about hardware requiements? JVM Requirements? Is there a certain aspect of a system that you are afraid might not fulfill the requirements?</p>
http://stackoverflow.com/questions/139131/web-inf-and-jsp-page-directives/139174#1391741Answer by Steve g for web-inf and jsp page directivesSteve g2008-09-26T12:37:57Z2008-09-26T12:59:52Z<p>You just need to have whatever errorpage you would like to use in your app available with all the other jsps. So in the following example you would just need to have the error pages in the root of the context path(where all of the other jsps are). Anytime the webapp receives a 404 or 403 error it will try to display one of these pages. .</p>
<pre><code><error-page>
<error-code>404</error-code>
<location>/404Error.jsp</location>
</error-page>
<error-page>
<error-code>403</error-code>
<location>/403Error.jsp</location>
</error-page>
</code></pre>
<p>Just make sure 404Error.jsp and 403Error.jsp contain: </p>
<pre><code><%@ page isErrorPage="true" %>
</code></pre>
<p>If you are actually using jsps for error pages (instead of just static html)</p>
http://stackoverflow.com/questions/332504/in-eclipse-how-can-i-get-my-plugin-to-load-when-another-plugin-is-loadedComment by Steve g on In Eclipse, how can I get my plugin to load when another plugin is loaded?Steve g2008-12-01T23:01:19Z2008-12-01T23:01:19ZIs your plugin an OSGi Bundle?http://stackoverflow.com/questions/295860/why-do-people-use-tarballs/295865#295865Comment by Steve g on Why do people use tarballs?Steve g2008-11-17T16:25:05Z2008-11-17T16:25:05Z@David please clarify inflict. Its only an issue if you're using out of date tools yourself. Most modern tools will treat zips and tarballs the same way. gzip compression is pretty much the same as zip, bzip2 is generally smaller.http://stackoverflow.com/questions/243293/how-can-a-class-have-no-constructor/243321#243321Comment by Steve g on How can a class have no constructor?Steve g2008-10-28T13:49:19Z2008-10-28T13:49:19ZSingletons do have constructors, but it should only be called once. http://stackoverflow.com/questions/209186/showing-video-through-apache-5-5Comment by Steve g on showing video through apache 5.5Steve g2008-10-16T16:01:17Z2008-10-16T16:01:17ZYou may want to re-title this with tomcat. The organization is apache. Apache as a product from the organization generally refers to the apache httpd project. http://stackoverflow.com/questions/208306/can-i-clean-stacktrace/208655#208655Comment by Steve g on can i clean stacktrace?Steve g2008-10-16T13:56:48Z2008-10-16T13:56:48ZThis is useful information, but does not apply to this question.http://stackoverflow.com/questions/189430/javascript-how-to-detect-that-the-internet-connection-is-offline/191825#191825Comment by Steve g on JavaScript: How to detect that the internet connection is offline?Steve g2008-10-13T13:26:44Z2008-10-13T13:26:44ZIf it is important to your app, you may encourage it
http://stackoverflow.com/questions/191215/how-to-stop-java-process-gracefully/191255#191255Comment by Steve g on How to stop java process gracefully?Steve g2008-10-10T19:32:58Z2008-10-10T19:32:58ZWell, not if you're giving it a kill -9 :)http://stackoverflow.com/questions/192417/improved-collection-iterator/192463#192463Comment by Steve g on improved collection IteratorSteve g2008-10-10T18:05:03Z2008-10-10T18:05:03ZI can see that. It just has the smell to it of something that could be done much easier some other way like a visitor or something.http://stackoverflow.com/questions/191483/how-do-i-submit-an-ajax-request-before-the-page-is-loaded/191502#191502Comment by Steve g on How do i submit an ajax request before the page is loadedSteve g2008-10-10T14:15:22Z2008-10-10T14:15:22ZIt can be done, its just a little different from what has been the norm. If they don't have javascript enabled, they don't see anything (because no data gets loaded). But yeah you have to be very careful with this type of approachhttp://stackoverflow.com/questions/191215/how-to-stop-java-process-gracefullyComment by Steve g on How to stop java process gracefully?Steve g2008-10-10T13:25:34Z2008-10-10T13:25:34ZI assume they mean they want to be given the chance to clean up an resources, release, locks, and flush any persistent data to disk before the program is killed.
http://stackoverflow.com/questions/180841/best-javascript-syntactic-sugar/180854#180854Comment by Steve g on Best javascript syntactic sugarSteve g2008-10-09T21:05:22Z2008-10-09T21:05:22ZYou can do this in scala too!http://stackoverflow.com/questions/187380/why-use-ruby-instead-of-smalltalk/187444#187444Comment by Steve g on Why use Ruby instead of Smalltalk?Steve g2008-10-09T14:41:41Z2008-10-09T14:41:41ZMy point was to see how to write something simple like hello workld, the tutorial has to tell you which windows you need to open. The names and uses of the windows aren't something I'm going to be able to guess at. It took me a little clicking around just to find the windows it was talking about.http://stackoverflow.com/questions/180158/how-do-i-time-a-methods-execution-in-java/180179#180179Comment by Steve g on How do I time a method's execution in Java?Steve g2008-10-07T21:38:49Z2008-10-07T21:38:49ZActually, System.currentTimeMillis() is only accurate above 15ms. For really low values it can't be trusted. The solution for this (as mentioned) is System.nanoTime();http://stackoverflow.com/questions/145176/is-html-considered-a-programming-language/145179#145179Comment by Steve g on Is HTML considered a programming language?Steve g2008-09-30T01:12:20Z2008-09-30T01:12:20ZI wish I could vote this up more timeshttp://stackoverflow.com/questions/151210/interviewing-whats-wrong-with-this-code/151232#151232Comment by Steve g on Interviewing - What's wrong with this code?Steve g2008-09-30T01:11:46Z2008-09-30T01:11:46Z1) Also in #1 the comparison isn't needed, but the comparison compares a boolean variable to true. Why not just evaluate the boolean value?
I would say only #3 is language specific, and I think languages can be picked up easily enough.