User Nick Stinemates - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T01:11:24Z http://stackoverflow.com/feeds/user/4960 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1655844/what-are-some-good-plugins-for-developing-java-in-vim 1 What are some good plugins for developing Java in VIM? Nick Stinemates 2009-10-31T22:51:36Z 2009-11-25T08:37:45Z <p>I love vim, but not having things like IntelliSense/Code completion from Eclipse makes it pretty difficult. I know, I know, I should be able to look at method signatures and java docs for the API I am interested in using. I'd love to, but I'd like it to be accessible from my fingertips instead of having to browse the source tree manually or have a JDK reference handy.</p> <p>What plugins would make this easier?</p> http://stackoverflow.com/questions/1764464/is-there-an-algorithm-to-find-unique-combinations-of-2-lists-5-lists 1 Is there an algorithm to find unique combinations of 2 lists? 5 lists? Nick Stinemates 2009-11-19T16:10:57Z 2009-11-19T19:12:52Z <p>I have <strong>N</strong> Lists I'd like to find unique combinations of. I've written it out on my whiteboard and it all seems to have a pattern, I just haven't found it yet. I feel I can express a brute-force method and that will certainly be something I pursue. Is there an alternative? Would a different data structure (binary tree?) make a job like this more appropriate?</p> <p><strong>Given</strong>:</p> <pre><code># 1 2 a = [1, 2] b = [a, b] </code></pre> <p>The result would be:</p> <pre><code>c = [1a, 1b, 2a, 2b] # (4 unique combinations) </code></pre> <p><strong>Given</strong>:</p> <pre><code>v = [1, a] w = [1, b] x = [1, c] y = [1, d] z = [1, e] </code></pre> <p>The result would be:</p> <pre><code>r = [11111, 1bcde, 11cde, 111de, 1111e, a1111, ab111, abc11, abcd1, abcde, 1b1d1, 1bc1e, 11c11, 11c1e, ... ] </code></pre> http://stackoverflow.com/questions/6166/any-good-php-ide-preferably-free-or-cheap/48043#48043 30 Answer by Nick Stinemates for Any good PHP IDE, preferably free or cheap? Nick Stinemates 2008-09-07T02:18:11Z 2009-11-05T12:30:19Z <p>I prefer <a href="http://www.eclipse.org/" rel="nofollow">Eclipse</a> with <a href="http://www.eclipse.org/pdt/" rel="nofollow">PDT</a> installed. It contains:</p> <ul> <li>A library of all PHP functions</li> <li>Integrated WSDL Generator</li> <li>Class Designer</li> <li>UML Diagram support</li> <li>Object/Instance "Linking" <ul> <li>Clicking on an Object results shows you it's definition.</li> <li>Clicking on an instance shows you where it was defined.</li> </ul></li> </ul> http://stackoverflow.com/questions/185899/what-is-the-difference-between-a-symbolic-link-and-a-hard-link 11 What is the difference between a symbolic link and a hard link? Nick Stinemates 2008-10-09T04:05:41Z 2009-11-04T08:55:20Z <p>Recently I was asked this during a job interview. I was honest and said I knew how a symbolic link behaves and how to create one, but do not understand the use of a hard link and how it differs from a symbolic one.</p> http://stackoverflow.com/questions/1655433/what-is-the-shortest-way-to-get-log4j-initialized-in-your-main-method 1 What is the shortest way to get log4j initialized in your main method? Nick Stinemates 2009-10-31T19:52:30Z 2009-11-01T11:01:48Z <p>I want everything to log to the console and don't want to have to deal with creating log4j.xml files, etc. I am prototyping some libraries and want to see their full log output.</p> <p>I would like to keep it as pure as possible and not have to introduce unnecessary dependencies like Spring, etc.</p> http://stackoverflow.com/questions/49147/how-do-i-create-a-messagebox-in-c 3 How do I create a MessageBox in C# ? Nick Stinemates 2008-09-08T04:00:54Z 2009-11-01T06:16:54Z <p>I have just installed C# for the first time, and at first glance it appears to be very similar to VB6. I decided to start off by trying to make a 'Hello, World!' UI Edition.</p> <p>I started in the Form Designer and made a button named "Click Me!" proceeded to double-click it and typed in</p> <pre><code>MessageBox("Hello, World!"); </code></pre> <p>I received the following error:</p> <p>MessageBox is a 'type' but used as a 'variable'</p> <p>Fair enough, it seems in C# MessageBox is an Object. I tried the following</p> <pre><code>MessageBox a = new MessageBox("Hello, World!"); </code></pre> <p>I received the following error: MessageBox does not contain a constructor that takes '1' arguments</p> <p>Now I am stumped. Please help.</p> http://stackoverflow.com/questions/1655357/how-do-i-say-5-seconds-from-now-in-java 0 How do I say 5 seconds from now in Java? Nick Stinemates 2009-10-31T19:30:35Z 2009-10-31T21:20:46Z <p>I am looking at the Date <a href="http://www.j2ee.me/javase/6/docs/api/java/util/Date.html" rel="nofollow">documentation</a> and trying to figure out how I can express NOW + 5 seconds. Here's some pseudocode:</p> <pre><code>import java.util.Date public class Main { public static void main(String args[]) { Date now = new Date(); now.setSeconds(now.getSeconds() + 5); } } </code></pre> http://stackoverflow.com/questions/1655433/what-is-the-shortest-way-to-get-log4j-initialized-in-your-main-method/1655448#1655448 1 Answer by Nick Stinemates for What is the shortest way to get log4j initialized in your main method? Nick Stinemates 2009-10-31T19:56:51Z 2009-10-31T19:56:51Z <p>It seems this does the trick.</p> <pre><code>import org.apache.log4j.BasicConfigurator; public class Main { private static void initializeLogger() { BasicConfigurator.configure(); } public static void main(String args[]) { Main.initializeLogger(); } } </code></pre> http://stackoverflow.com/questions/1655357/how-do-i-say-5-seconds-from-now-in-java/1655392#1655392 1 Answer by Nick Stinemates for How do I say 5 seconds from now in Java? Nick Stinemates 2009-10-31T19:41:50Z 2009-10-31T19:41:50Z <p>I just found this from <a href="http://www.java2s.com/Code/Java/Development-Class/AddsecondstocurrentdateusingCalendaraddmethod.htm" rel="nofollow">java docs</a></p> <pre><code>import java.util.Calendar; public class Main { public static void main(String[] args) { Calendar now = Calendar.getInstance(); System.out.println("Current time : " + now.get(Calendar.HOUR_OF_DAY) + ":" + now.get(Calendar.MINUTE) + ":" + now.get(Calendar.SECOND)); now.add(Calendar.SECOND, 100); System.out.println("New time after adding 100 seconds : " + now.get(Calendar.HOUR_OF_DAY) + ":" + now.get(Calendar.MINUTE) + ":" + now.get(Calendar.SECOND)); } } </code></pre> <p>Is there a convention I should be aware of?</p> http://stackoverflow.com/questions/48947/how-do-i-implement-a-callback-in-php 8 How do I implement a callback in PHP? Nick Stinemates 2008-09-08T00:53:34Z 2009-08-13T14:43:18Z <p>How are callbacks written in PHP?</p> http://stackoverflow.com/questions/185934/how-do-i-create-a-copy-of-an-object-in-php 1 How do I create a copy of an object in PHP? Nick Stinemates 2008-10-09T04:21:03Z 2009-07-23T09:06:58Z <p>It appears that in PHP objects are passed by reference. Even assignment operators do not appear to be creating a copy of the Object.</p> <p>Here's a simple, contrived proof:</p> <pre><code>&lt;?php class A { public $b; } function set_b($obj) { $obj-&gt;b = "after"; } $a = new A(); $a-&gt;b = "before"; $c = $a; //i would especially expect this to create a copy. set_b($a); print $a-&gt;b; //i would expect this to show 'before' print $c-&gt;b; //i would ESPECIALLY expect this to show 'before' ?&gt; </code></pre> <p>In both print cases I am getting 'after'</p> <p>So, how do I pass <strong>$a</strong> to <strong>*set_b()*</strong> by value, not by reference?</p> http://stackoverflow.com/questions/772876/ugly-looking-java-data-structure/772904#772904 0 Answer by Nick Stinemates for Ugly looking java data structure Nick Stinemates 2009-04-21T14:40:34Z 2009-04-21T14:40:34Z <p>Can you wrap a class around Integer[][] called, say Point?</p> <p>That would make you have a </p> <pre><code>HashMap&lt;Double, List&lt;Point&gt;&gt; </code></pre> http://stackoverflow.com/questions/772769/need-good-scheme-workflow-for-managing-database-objects-using-subversion/772813#772813 1 Answer by Nick Stinemates for Need good scheme/workflow for managing database objects using Subversion Nick Stinemates 2009-04-21T14:20:45Z 2009-04-21T14:20:45Z <p>We revision our database, schema creation, dw, etl, stored procedures just like any other piece of code, because it's code!</p> <p>I have also seen people type dates in headers, etc. This is normally due to them completely missing the point of revision control.</p> http://stackoverflow.com/questions/763372/how-to-interact-through-vim/763983#763983 1 Answer by Nick Stinemates for How to interact through vim? Nick Stinemates 2009-04-18T19:14:10Z 2009-04-18T19:14:10Z <p>You can also think about integrating VIM in to your app. <a href="http://pida.co.uk/" rel="nofollow">Pida</a> does this</p> http://stackoverflow.com/questions/746386/is-it-possible-to-do-a-better-programming-job-the-second-time-around/746400#746400 2 Answer by Nick Stinemates for Is it possible to do a better programming job the second time around? Nick Stinemates 2009-04-14T05:03:27Z 2009-04-14T05:03:27Z <p>@Brian: I would have to wonder.. can you rewrite <em>small</em> components of something <strong>big</strong> better the second time around?</p> <p>There's something to be said about the quality of <strong>tested</strong>, production level code. I think that's Joel's point. No matter how easy the component is to recreate, you will forget about that one edge case that breaks the system.</p> http://stackoverflow.com/questions/600043/dealing-with-co-workers-who-dont-use-best-practices-if-youre-the-new-guy/600363#600363 1 Answer by Nick Stinemates for Dealing with co-workers who don't use best practices if you're the "new guy" Nick Stinemates 2009-03-01T19:36:14Z 2009-03-01T19:36:14Z <p>It might be smart to lead by example. Just because everyone doesn't use the SOLID principles, etc, doesn't mean you shouldn't.</p> http://stackoverflow.com/questions/530114/print-method-question-python/530144#530144 0 Answer by Nick Stinemates for Print method question Python Nick Stinemates 2009-02-09T21:45:40Z 2009-02-09T21:45:40Z <p>If you were to translate the code to English, it says: take the <strong><em>string</em> i</strong> and format it in to the predicate string.</p> <p>Another example:</p> <pre><code>name = "world" print "hello, %s" % (name) </code></pre> <p><a href="http://docs.python.org/library/stdtypes.html#string-formatting" rel="nofollow">More information about format specifiers.</a></p> http://stackoverflow.com/questions/494537/resource-for-learning-spring-mvc 7 Resource for learning Spring MVC Nick Stinemates 2009-01-30T05:06:30Z 2009-02-08T10:23:45Z <p>I am looking for an online resource to learn the Spring MVC stack.</p> <p>Can someone point me in the right direction?</p> http://stackoverflow.com/questions/502319/carrying-and-working-on-an-entire-development-box-from-a-usb-stick-feasible/502342#502342 1 Answer by Nick Stinemates for Carrying and Working on an Entire Development Box from a USB Stick. Feasible ? Nick Stinemates 2009-02-02T06:11:20Z 2009-02-02T06:11:20Z <p>Hopefully you are talking about interpreted language projects. I couldn't imagine compiling a C/C++ of any size on a VM, let alone a VM running off of a USB drive.</p> http://stackoverflow.com/questions/502326/should-you-list-your-personal-blog-site-on-your-resume/502337#502337 1 Answer by Nick Stinemates for Should you list your personal blog site on your resume? Nick Stinemates 2009-02-02T06:09:00Z 2009-02-02T06:09:00Z <p>I would mention it in my <em>External Projects</em> section. I include information like this so that prospective employers know that I am actively involved/excited about programming and technology.</p> http://stackoverflow.com/questions/429164/can-i-use-urllib-to-submit-a-soap-request 0 Can I use urllib to submit a SOAP request? Nick Stinemates 2009-01-09T18:30:09Z 2009-01-29T21:10:01Z <p>I have a SOAP request that is known to work using a tool like, say, SoapUI, but I am trying to get it to work using urllib.</p> <p>This is what I have tried so far and it did not work:</p> <pre><code>import urllib f = "".join(open("ws_request_that_works_in_soapui", "r").readlines()) urllib.urlopen('http://url.com/to/Router?wsdl', f) </code></pre> <p>I haven't been able to find the spec on how the document should be posted to the SOAP Server.</p> <p>urllib is not a necessary requirement.</p> http://stackoverflow.com/questions/466525/how-can-i-set-it-up-so-that-threads-communicate-theyre-complete-with-their-task 0 How can I set it up so that threads communicate they're complete with their task? Nick Stinemates 2009-01-21T18:59:25Z 2009-01-21T21:42:24Z <p>Conceptually, I would like to accomplish the following but have had trouble understand how to code it properly in Python:</p> <pre><code>from threading import Thread for i in range(0,3): t = Thread(target=myfunction) t.start() # wait until threads have finished executing print 'complete!' </code></pre> http://stackoverflow.com/questions/463643/python-doing-absolute-imports-from-a-subfolder/463727#463727 1 Answer by Nick Stinemates for Python - Doing absolute imports from a subfolder Nick Stinemates 2009-01-21T00:42:43Z 2009-01-21T00:42:43Z <p>If you are then importing Module_B in to App, you would</p> <p>Module_B.py: import ModuleA</p> <p>App.py (which also imports ModuleA which is now by default in your Pythonpath)</p> <pre><code>import Module_B.Module_B </code></pre> <p>Another alternative, is to update __init__.py (the one in Module_A/App folder) to:</p> <pre><code>import os import sys sys.path.extend('%s../' % os.getcwd()) import ModuleA </code></pre> <p>Another alternative, is to add your folder to the PYTHONPATH environment var.</p> http://stackoverflow.com/questions/440882/vpn-connectivity-using-fedora-pptp/440922#440922 0 Answer by Nick Stinemates for VPN Connectivity using Fedora PPTP Nick Stinemates 2009-01-13T21:45:10Z 2009-01-13T21:45:10Z <p>This is a programming Q&amp;A site, not the Fedora forums.</p> http://stackoverflow.com/questions/431521/run-a-command-in-a-shell-and-keep-running-the-command-when-you-close-the-session/431539#431539 1 Answer by Nick Stinemates for Run a command in a shell and keep running the command when you close the session Nick Stinemates 2009-01-10T18:54:47Z 2009-01-10T18:54:47Z <pre><code>./command &amp; disown </code></pre> http://stackoverflow.com/questions/429164/can-i-use-urllib-to-submit-a-soap-request/429349#429349 2 Answer by Nick Stinemates for Can I use urllib to submit a SOAP request? Nick Stinemates 2009-01-09T19:23:51Z 2009-01-09T19:23:51Z <p>Well, I answered my own question</p> <pre><code>import httplib f = "".join(open('ws_request', 'r')) webservice = httplib.HTTP('localhost', 8083) webservice.putrequest("POST", "Router?wsdl") webservice.putheader("User-Agent", "Python post") webservice.putheader("Content-length", "%d" % len(f)) webservice.putheader("SOAPAction", "\"\"") webservice.endheaders() webservice.send(f) </code></pre> http://stackoverflow.com/questions/422091/how-can-the-user-communicate-with-my-python-script-using-the-shell 3 How can the user communicate with my python script using the shell? Nick Stinemates 2009-01-07T21:07:23Z 2009-01-09T14:35:05Z <p>How can I implement the following in python?</p> <pre><code>#include &lt;iostream&gt; int main() { std::string a; std::cout &lt;&lt; "What is your name? "; std::cin &gt;&gt; a; std::cout &lt;&lt; std::endl &lt;&lt; "You said: " &lt;&lt; a &lt;&lt; std::endl; } </code></pre> <p>Output:</p> <blockquote> <p>What is your name? Nick</p> <p>You said: Nick</p> </blockquote> http://stackoverflow.com/questions/425717/can-php-restart-apache/425734#425734 0 Answer by Nick Stinemates for Can PHP restart Apache? Nick Stinemates 2009-01-08T20:20:11Z 2009-01-08T20:20:11Z <p>Wouldn't you want to pass a 'reload' instead of a 'restart?'</p> http://stackoverflow.com/questions/51271/what-is-a-good-resource-for-learning-xsl 8 What is a good resource for learning XSL? Nick Stinemates 2008-09-09T05:58:42Z 2008-11-20T16:51:06Z <p>Recently, I have started to have to read a lot of XSL and XSLT at my job. Some of it makes sense and some of it really doesn't.</p> <p>Here's an exmaple of what does not make sense to me</p> <pre><code>&lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt; &lt;xsl:output method="html" encoding="UTF-8" /&gt; &lt;xsl:param name="message"/&gt; &lt;xsl:template match="/"&gt; &lt;html&gt;&lt;body&gt; header &lt;xsl:value-of select="//message"/&gt; footer &lt;/body&gt;&lt;/html&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p>If I have an XML file that looks like</p> <pre><code>&lt;message&gt;&lt;message_text&gt;hello, world!&lt;/message_text&gt;&lt;/message&gt; </code></pre> <p>It appears to result in</p> <pre><code>&lt;html&gt;&lt;body&gt;header &lt;message&gt;&lt;message_text&gt;hello, world!&lt;/message_text&gt;&lt;/message&gt; footer &lt;/body&gt;&lt;/html&gt; </code></pre> <p>My questions are like: what does <em>template match="/"</em> do? What does the <em>param name="message"/</em>> do?</p> <p>Are there any good resources available that contain a quick overview and maybe some examples?</p> http://stackoverflow.com/questions/297749/html-escapes 1 HTML Escapes Nick Stinemates 2008-11-18T03:07:13Z 2008-11-18T10:49:22Z <p>Given:</p> <pre><code>CR = %0d = \r LF = %0a = \n </code></pre> <p>What does</p> <p>%3E, %3C </p> <p>Mean?</p> http://stackoverflow.com/questions/1764464/is-there-an-algorithm-to-find-unique-combinations-of-2-lists-5-lists/1764979#1764979 Comment by Nick Stinemates on Is there an algorithm to find unique combinations of 2 lists? 5 lists? Nick Stinemates 2009-11-19T20:32:28Z 2009-11-19T20:32:28Z Color me impressed. Thanks for helping. http://stackoverflow.com/questions/1764464/is-there-an-algorithm-to-find-unique-combinations-of-2-lists-5-lists/1764708#1764708 Comment by Nick Stinemates on Is there an algorithm to find unique combinations of 2 lists? 5 lists? Nick Stinemates 2009-11-19T20:30:39Z 2009-11-19T20:30:39Z That's gorgeous. Very easy to read. http://stackoverflow.com/questions/1764464/is-there-an-algorithm-to-find-unique-combinations-of-2-lists-5-lists/1764569#1764569 Comment by Nick Stinemates on Is there an algorithm to find unique combinations of 2 lists? 5 lists? Nick Stinemates 2009-11-19T16:46:10Z 2009-11-19T16:46:10Z This is definitely what I want. Thank you! http://stackoverflow.com/questions/1655844/what-are-some-good-plugins-for-developing-java-in-vim Comment by Nick Stinemates on What are some good plugins for developing Java in VIM? Nick Stinemates 2009-11-19T16:44:07Z 2009-11-19T16:44:07Z I have been very successful in my endeavor so far. Not looking for people to say that VI is not an IDE replacement. It is (except for debugging.) Your mileage my vary. http://stackoverflow.com/questions/1764464/is-there-an-algorithm-to-find-unique-combinations-of-2-lists-5-lists/1764572#1764572 Comment by Nick Stinemates on Is there an algorithm to find unique combinations of 2 lists? 5 lists? Nick Stinemates 2009-11-19T16:42:01Z 2009-11-19T16:42:01Z I will be translating this to a different language so this is definitely helpful. Thank you. http://stackoverflow.com/questions/1764464/is-there-an-algorithm-to-find-unique-combinations-of-2-lists-5-lists/1764480#1764480 Comment by Nick Stinemates on Is there an algorithm to find unique combinations of 2 lists? 5 lists? Nick Stinemates 2009-11-19T16:41:14Z 2009-11-19T16:41:14Z The Power Set is almost it. Cartesian Product is exactly what I wanted. Thank you for bringing the Power Set to my attention, though! http://stackoverflow.com/questions/1764464/is-there-an-algorithm-to-find-unique-combinations-of-2-lists-5-lists/1764539#1764539 Comment by Nick Stinemates on Is there an algorithm to find unique combinations of 2 lists? 5 lists? Nick Stinemates 2009-11-19T16:35:07Z 2009-11-19T16:35:07Z It was not deliberate. I just hadn't looked at it long enough. Thanks for you and Mark Byers for catching it. http://stackoverflow.com/questions/1764464/is-there-an-algorithm-to-find-unique-combinations-of-2-lists-5-lists Comment by Nick Stinemates on Is there an algorithm to find unique combinations of 2 lists? 5 lists? Nick Stinemates 2009-11-19T16:23:08Z 2009-11-19T16:23:08Z You're right. I'm a dope! I'll edit my example. http://stackoverflow.com/questions/1655844/what-are-some-good-plugins-for-developing-java-in-vim/1656493#1656493 Comment by Nick Stinemates on What are some good plugins for developing Java in VIM? Nick Stinemates 2009-11-06T21:49:40Z 2009-11-06T21:49:40Z Wasn't the question. http://stackoverflow.com/questions/1655844/what-are-some-good-plugins-for-developing-java-in-vim/1660953#1660953 Comment by Nick Stinemates on What are some good plugins for developing Java in VIM? Nick Stinemates 2009-11-02T15:37:00Z 2009-11-02T15:37:00Z I agree and disagree so I don't know which way to vote your submission. I have been using NetBeans in conjunction with vim as you say, but only for debugging purposes. Debugging is the one true thing I will open the IDE for (and as such, have it always open..) because even if VI could do it well, I don't think it could do it as well as Eclipse/NetBeans. http://stackoverflow.com/questions/1655433/what-is-the-shortest-way-to-get-log4j-initialized-in-your-main-method/1655453#1655453 Comment by Nick Stinemates on What is the shortest way to get log4j initialized in your main method? Nick Stinemates 2009-11-01T06:14:42Z 2009-11-01T06:14:42Z I recommend consolidating your post with @rsp's to make a more concise and informative post. http://stackoverflow.com/questions/1655433/what-is-the-shortest-way-to-get-log4j-initialized-in-your-main-method Comment by Nick Stinemates on What is the shortest way to get log4j initialized in your main method? Nick Stinemates 2009-11-01T06:13:53Z 2009-11-01T06:13:53Z This specific application will be used by no one other than me and I don't foresee ever wanting to control the log level of individual loggers. It's cumbersome to maintain for no benefit (imo) http://stackoverflow.com/questions/1655357/how-do-i-say-5-seconds-from-now-in-java/1655450#1655450 Comment by Nick Stinemates on How do I say 5 seconds from now in Java? Nick Stinemates 2009-11-01T00:21:25Z 2009-11-01T00:21:25Z @Karl, as an FYI calendar.getTime() in this example returns a Date. I don't think they're deprecating Date as much as they're deprecating some of its functionality. http://stackoverflow.com/questions/1655844/what-are-some-good-plugins-for-developing-java-in-vim/1655848#1655848 Comment by Nick Stinemates on What are some good plugins for developing Java in VIM? Nick Stinemates 2009-10-31T22:58:08Z 2009-10-31T22:58:08Z Because it's terrible and way too heavy for the Java hacking I do. I also like to develop remotely, and having to carry around the IDE on all of my machines really isn't practical. http://stackoverflow.com/questions/1655357/how-do-i-say-5-seconds-from-now-in-java/1655450#1655450 Comment by Nick Stinemates on How do I say 5 seconds from now in Java? Nick Stinemates 2009-10-31T22:46:54Z 2009-10-31T22:46:54Z I accepted this as the answer because the getTime() setTime() methods are considered 'deprecated' by the Java API. This is succinct.