User Nick Stinemates - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T01:11:24Zhttp://stackoverflow.com/feeds/user/4960http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1655844/what-are-some-good-plugins-for-developing-java-in-vim1What are some good plugins for developing Java in VIM?Nick Stinemates2009-10-31T22:51:36Z2009-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-lists1Is there an algorithm to find unique combinations of 2 lists? 5 lists?Nick Stinemates2009-11-19T16:10:57Z2009-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#4804330Answer by Nick Stinemates for Any good PHP IDE, preferably free or cheap?Nick Stinemates2008-09-07T02:18:11Z2009-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-link11What is the difference between a symbolic link and a hard link?Nick Stinemates2008-10-09T04:05:41Z2009-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-method1What is the shortest way to get log4j initialized in your main method?Nick Stinemates2009-10-31T19:52:30Z2009-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-c3How do I create a MessageBox in C# ?Nick Stinemates2008-09-08T04:00:54Z2009-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-java0How do I say 5 seconds from now in Java?Nick Stinemates2009-10-31T19:30:35Z2009-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#16554481Answer by Nick Stinemates for What is the shortest way to get log4j initialized in your main method?Nick Stinemates2009-10-31T19:56:51Z2009-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#16553921Answer by Nick Stinemates for How do I say 5 seconds from now in Java?Nick Stinemates2009-10-31T19:41:50Z2009-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-php8How do I implement a callback in PHP?Nick Stinemates2008-09-08T00:53:34Z2009-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-php1How do I create a copy of an object in PHP?Nick Stinemates2008-10-09T04:21:03Z2009-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><?php
class A {
public $b;
}
function set_b($obj) { $obj->b = "after"; }
$a = new A();
$a->b = "before";
$c = $a; //i would especially expect this to create a copy.
set_b($a);
print $a->b; //i would expect this to show 'before'
print $c->b; //i would ESPECIALLY expect this to show 'before'
?>
</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#7729040Answer by Nick Stinemates for Ugly looking java data structureNick Stinemates2009-04-21T14:40:34Z2009-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<Double, List<Point>>
</code></pre>
http://stackoverflow.com/questions/772769/need-good-scheme-workflow-for-managing-database-objects-using-subversion/772813#7728131Answer by Nick Stinemates for Need good scheme/workflow for managing database objects using SubversionNick Stinemates2009-04-21T14:20:45Z2009-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#7639831Answer by Nick Stinemates for How to interact through vim?Nick Stinemates2009-04-18T19:14:10Z2009-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#7464002Answer by Nick Stinemates for Is it possible to do a better programming job the second time around?Nick Stinemates2009-04-14T05:03:27Z2009-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#6003631Answer by Nick Stinemates for Dealing with co-workers who don't use best practices if you're the "new guy"Nick Stinemates2009-03-01T19:36:14Z2009-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#5301440Answer by Nick Stinemates for Print method question PythonNick Stinemates2009-02-09T21:45:40Z2009-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-mvc7Resource for learning Spring MVCNick Stinemates2009-01-30T05:06:30Z2009-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#5023421Answer by Nick Stinemates for Carrying and Working on an Entire Development Box from a USB Stick. Feasible ?Nick Stinemates2009-02-02T06:11:20Z2009-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#5023371Answer by Nick Stinemates for Should you list your personal blog site on your resume?Nick Stinemates2009-02-02T06:09:00Z2009-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-request0Can I use urllib to submit a SOAP request?Nick Stinemates2009-01-09T18:30:09Z2009-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-task0How can I set it up so that threads communicate they're complete with their task?Nick Stinemates2009-01-21T18:59:25Z2009-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#4637271Answer by Nick Stinemates for Python - Doing absolute imports from a subfolderNick Stinemates2009-01-21T00:42:43Z2009-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#4409220Answer by Nick Stinemates for VPN Connectivity using Fedora PPTPNick Stinemates2009-01-13T21:45:10Z2009-01-13T21:45:10Z<p>This is a programming Q&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#4315391Answer by Nick Stinemates for Run a command in a shell and keep running the command when you close the sessionNick Stinemates2009-01-10T18:54:47Z2009-01-10T18:54:47Z<pre><code>./command & disown
</code></pre>
http://stackoverflow.com/questions/429164/can-i-use-urllib-to-submit-a-soap-request/429349#4293492Answer by Nick Stinemates for Can I use urllib to submit a SOAP request?Nick Stinemates2009-01-09T19:23:51Z2009-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-shell3How can the user communicate with my python script using the shell?Nick Stinemates2009-01-07T21:07:23Z2009-01-09T14:35:05Z
<p>How can I implement the following in python?</p>
<pre><code>#include <iostream>
int main() {
std::string a;
std::cout << "What is your name? ";
std::cin >> a;
std::cout << std::endl << "You said: " << a << 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#4257340Answer by Nick Stinemates for Can PHP restart Apache?Nick Stinemates2009-01-08T20:20:11Z2009-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-xsl8What is a good resource for learning XSL?Nick Stinemates2008-09-09T05:58:42Z2008-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><xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" encoding="UTF-8" />
<xsl:param name="message"/>
<xsl:template match="/">
<html><body> header
<xsl:value-of select="//message"/>
footer
</body></html>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>If I have an XML file that looks like</p>
<pre><code><message><message_text>hello, world!</message_text></message>
</code></pre>
<p>It appears to result in</p>
<pre><code><html><body>header
<message><message_text>hello, world!</message_text></message>
footer
</body></html>
</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-escapes1HTML EscapesNick Stinemates2008-11-18T03:07:13Z2008-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#1764979Comment by Nick Stinemates on Is there an algorithm to find unique combinations of 2 lists? 5 lists?Nick Stinemates2009-11-19T20:32:28Z2009-11-19T20:32:28ZColor me impressed. Thanks for helping.http://stackoverflow.com/questions/1764464/is-there-an-algorithm-to-find-unique-combinations-of-2-lists-5-lists/1764708#1764708Comment by Nick Stinemates on Is there an algorithm to find unique combinations of 2 lists? 5 lists?Nick Stinemates2009-11-19T20:30:39Z2009-11-19T20:30:39ZThat'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#1764569Comment by Nick Stinemates on Is there an algorithm to find unique combinations of 2 lists? 5 lists?Nick Stinemates2009-11-19T16:46:10Z2009-11-19T16:46:10ZThis is definitely what I want. Thank you!http://stackoverflow.com/questions/1655844/what-are-some-good-plugins-for-developing-java-in-vimComment by Nick Stinemates on What are some good plugins for developing Java in VIM?Nick Stinemates2009-11-19T16:44:07Z2009-11-19T16:44:07ZI 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#1764572Comment by Nick Stinemates on Is there an algorithm to find unique combinations of 2 lists? 5 lists?Nick Stinemates2009-11-19T16:42:01Z2009-11-19T16:42:01ZI 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#1764480Comment by Nick Stinemates on Is there an algorithm to find unique combinations of 2 lists? 5 lists?Nick Stinemates2009-11-19T16:41:14Z2009-11-19T16:41:14ZThe 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#1764539Comment by Nick Stinemates on Is there an algorithm to find unique combinations of 2 lists? 5 lists?Nick Stinemates2009-11-19T16:35:07Z2009-11-19T16:35:07ZIt 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-listsComment by Nick Stinemates on Is there an algorithm to find unique combinations of 2 lists? 5 lists?Nick Stinemates2009-11-19T16:23:08Z2009-11-19T16:23:08ZYou'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#1656493Comment by Nick Stinemates on What are some good plugins for developing Java in VIM?Nick Stinemates2009-11-06T21:49:40Z2009-11-06T21:49:40ZWasn't the question.http://stackoverflow.com/questions/1655844/what-are-some-good-plugins-for-developing-java-in-vim/1660953#1660953Comment by Nick Stinemates on What are some good plugins for developing Java in VIM?Nick Stinemates2009-11-02T15:37:00Z2009-11-02T15:37:00ZI 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#1655453Comment by Nick Stinemates on What is the shortest way to get log4j initialized in your main method?Nick Stinemates2009-11-01T06:14:42Z2009-11-01T06:14:42ZI 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-methodComment by Nick Stinemates on What is the shortest way to get log4j initialized in your main method?Nick Stinemates2009-11-01T06:13:53Z2009-11-01T06:13:53ZThis 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#1655450Comment by Nick Stinemates on How do I say 5 seconds from now in Java?Nick Stinemates2009-11-01T00:21:25Z2009-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#1655848Comment by Nick Stinemates on What are some good plugins for developing Java in VIM?Nick Stinemates2009-10-31T22:58:08Z2009-10-31T22:58:08ZBecause 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#1655450Comment by Nick Stinemates on How do I say 5 seconds from now in Java?Nick Stinemates2009-10-31T22:46:54Z2009-10-31T22:46:54ZI accepted this as the answer because the getTime() setTime() methods are considered 'deprecated' by the Java API. This is succinct.