User jtbradle - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T01:40:22Zhttp://stackoverflow.com/feeds/user/14723http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/163565/what-is-the-best-book-or-piece-of-documentation-on-java-swing7What is the best book or piece of documentation on Java Swing?jtbradle2008-10-02T17:30:15Z2009-10-08T15:02:33Z
<p>I am very likely to be starting a new project at work and will need to use the Java Swing library. I would like to get up to speed pretty quickly, preferably in the next two months. What do you consider to be the best documentation (either online or in book form) to help me get a solid grasp on the library?</p>
http://stackoverflow.com/questions/1306057/how-do-i-run-pl-sql-code-within-sqlplus1How do I run PL/SQL code within SQLPlus?jtbradle2009-08-20T13:02:30Z2009-09-30T18:28:08Z
<p>I am trying to run the following code within SQLPlus:</p>
<pre><code>exec lbacsys.sa_sysdba.create_policy(policy_name => 'ACCESS_LOCATIONS',
column_name => 'OLS_COLUMN',
default_options => 'READ_CONTROL,INSERT_CONTROL,UPDATE_CONTROL,DELETE_CONTROL,LABEL_DEFAULT,LABEL_UPDATE,CHECK_CONTROL,');
</code></pre>
<p>However, I'm getting the following error:</p>
<pre><code>BEGIN lbacsys.sa_sysdba.create_policy(policy_name => 'ACCESS_LOCATIONS',; END;
*
ERROR at line 1:
ORA-06550: line 1, column 78:
PLS-00103: Encountered the symbol ";" when expecting one of the following:
( - + case mod new not null <an identifier>
<a double-quoted delimited-identifier> <a bind variable>
continue avg count current exists max min prior sql stddev
sum variance execute forall merge time timestamp interval
date <a string literal with character set specification>
<a number> <a single-quoted SQL string> pipe
<an alternatively-quoted string literal with character set specification>
<an alternatively
</code></pre>
<p>It seems to me to be something I'm doing wrong with the syntax. I'm just not sure what it is. Any help would be appreciated. Thanks :)</p>
http://stackoverflow.com/questions/1288708/what-are-the-containers-in-java/1288737#12887370Answer by jtbradle for What are the containers in Javajtbradle2009-08-17T15:50:56Z2009-08-17T15:50:56Z<p>I don't know if I can give you a complete exhaustive list, but I believe most of the standard Java API containers should reside in the java.util package.</p>
http://stackoverflow.com/questions/491932/what-is-the-best-books-on-lisp6What is the best book(s) on Lisp?jtbradle2009-01-29T15:05:20Z2009-08-03T12:40:57Z
<p>I am starting a new project at work where I will be required to use Lisp as a part of some cognitive work that I will be doing. I'm not very familiar with Lisp. Do any of you know of any books that will help me get up to speed quickly?</p>
http://stackoverflow.com/questions/12830/most-elegant-amusing-or-strange-code-one-liners/1099588#10995881Answer by jtbradle for Most elegant, amusing or strange code one linersjtbradle2009-07-08T17:53:28Z2009-07-08T17:53:28Z<pre><code>return 0;
</code></pre>
<p>It doesn't get better than that</p>
http://stackoverflow.com/questions/1065584/what-is-data-driven-programming4What is data-driven programming?jtbradle2009-06-30T19:39:22Z2009-07-04T21:37:45Z
<p>I've been tasked at work to write a detailed engineering plan for a logistics application that we are coding to propose to a customer. I have been told that it is a data-driven application. What does it mean for an application to be "data-driven"? What is the opposite? I can't seem to get any really clear answer for this although while web searching I can see many people posting their own examples. Any help would be greatly appreciated.</p>
http://stackoverflow.com/questions/1075403/why-should-i-use-javaserverfaces/1075881#10758810Answer by jtbradle for Why should I use JavaServerFaces?jtbradle2009-07-02T18:13:13Z2009-07-02T18:13:13Z<p>School projects are not necessarily about doing the most useful or efficient thing. However, your professor is trying to get you to learn something. If you haven't, you definitely will learn that you will have even tougher restrictions in the real world. </p>
<p>My advice is to ask your professor for help.</p>
http://stackoverflow.com/questions/1074159/where-can-i-host-throw-away-code/1074197#10741970Answer by jtbradle for Where can I host throw away code?jtbradle2009-07-02T12:59:31Z2009-07-02T12:59:31Z<p>You can use no-ip.com or dyndns.com to host a web server directly from your own machine.</p>
http://stackoverflow.com/questions/1016010/swing-gui-generator-for-xml/1023203#10232030Answer by jtbradle for Swing GUI generator for XMLjtbradle2009-06-21T04:29:00Z2009-06-21T04:29:00Z<p>Other than your basic SAX or DOM type libraries, I don't think there is such a solution. It'll probably be a bit difficult to have a one size fits all solution based off of a DTD because the organization of data in XML doesn't necessarily correspond directly with the use or implementation of that data.</p>
http://stackoverflow.com/questions/1002908/java-p2p-video-library/1009638#10096380Answer by jtbradle for java p2p video library?jtbradle2009-06-17T21:36:32Z2009-06-17T21:36:32Z<p>After google searching this a bit as well as from my experience, I don't know of any. If you do find one, I would probably also wonder about its fidelity. Maybe it would be a good idea for you to start your own open source project for this.</p>
http://stackoverflow.com/questions/654486/callablestatement-arrayindexoutofboundsexception/975891#9758910Answer by jtbradle for callablestatement - ArrayIndexOutOfBoundsExceptionjtbradle2009-06-10T14:19:10Z2009-06-10T14:19:10Z<p>This shouldn't have anything to do with the callable statement itself, it has to do with you trying to access an array or array-like object with an index that is out of bounds. If one of your parameters in the callable statement were out of bounds it would end up in a different error (Namely a type of SQLException). Can you provide a stack trace?</p>
http://stackoverflow.com/questions/971908/java-regular-expression-problem0Java Regular Expression Problemjtbradle2009-06-09T19:07:33Z2009-06-09T19:19:15Z
<p>I have a group of lines like the following:</p>
<pre><code>tb-set-node-recipe $vpn1 W2K3_SP2_VPN_SRV
tb-set-node-os $vpn2 I_W2K3_SP2_VPN_SRV
tb-set-node-os $xpcli1 I_XP_SP3_VPN_CLI
tb-set-node-os $xpcli2 I_XP_SP2_VPN_CLI
tb-set-node-os $xpcli3 I_XP_SP1_VPN_CLI
tb-set-node-recipe $ftp1 FC8_KS_FTP_SRV
tb-set-node-os $smb1 XP_SP3-STD
tb-set-node-recipe $web1 FC8_KS_WEB_SRV
</code></pre>
<p>I am using the following regular expression in the Java language to parse out the <code>tb-set-node-os</code> statements:</p>
<pre><code>(tb\-set\-node\-os)\s+[\$\w]+\s+\w+
</code></pre>
<p>It is working perfectly except for the second to last line that contains <code>$smb1</code></p>
<p>Does anyone have any idea why this might be? I can't seem to figure this one out. Thanks in advance!</p>
http://stackoverflow.com/questions/134499/what-steps-should-software-developers-take-to-shield-themselves-from-the-failing2What steps should software developers take to shield themselves from the failing U.S. economy?jtbradle2008-09-25T16:53:54Z2009-05-15T19:05:30Z
<p>Do we need to fear the $700 Billion government bailout? Will defense contractors eventually take a hit? What software specialties should we be able to depend on to ride out the market? What are your thoughts?</p>
http://stackoverflow.com/questions/772386/how-do-i-view-ant-scripts-that-eclipse-uses0How do I view Ant scripts that eclipse uses?jtbradle2009-04-21T12:43:26Z2009-04-21T21:50:54Z
<p>I am having a bit of trouble building my project with Ant. I wanted to take a look at the Ant scripts that eclipse uses to build my project. How can I do this?</p>
http://stackoverflow.com/questions/595134/why-have-dhcp-and-static-ip-address-at-the-same-time0Why have DHCP and static IP address at the same time? [closed]jtbradle2009-02-27T15:08:20Z2009-02-27T15:22:29Z
<p>At my current place of employment, on my Windows box, when I do an <code>ipconfig /all</code> from my command prompt I see that I have both a static IP address as well as a dynamic IP address. Why could that be? I am trying to diagram our network structure for a new software project that I'm on...knowing the answer to this question could help out a lot.</p>
http://stackoverflow.com/questions/493046/i-dont-understand-slicing-with-negative-bounds-in-python-how-is-this-supposed-t2I don't understand slicing with negative bounds in Python. How is this supposed to work?jtbradle2009-01-29T19:31:48Z2009-01-30T22:41:45Z
<p>I am a newbie to Python and have come across the following example in my book that is not explained very well. Here is my print out from the interpreter:</p>
<pre><code>>>> s = 'spam'
>>> s[:-1]
'spa'
</code></pre>
<p>Why does slicing with no beginning bound and a <code>'-1'</code> return every element except the last one? Is calling <code>s[0:-1]</code> logically the same as calling <code>s[:-1]</code>? They both return the same result. But I'm not sure what python is doing exactly. Any help would be greatly appreciated.</p>
http://stackoverflow.com/questions/466927/jpa-gui-tools/493070#4930700Answer by jtbradle for JPA GUI toolsjtbradle2009-01-29T19:38:13Z2009-01-29T19:38:13Z<p>I believe MyEclipse has some tools available for JPA.</p>
<p><a href="http://www.myeclipseide.com" rel="nofollow">http://www.myeclipseide.com</a></p>
<p>I've personally used some of their persistence tools and have only found them useful for simple tasks. MyEclipse is a good all-around IDE though.</p>
http://stackoverflow.com/questions/489497/why-am-i-getting-the-following-error-in-python-importerror-no-module-named-py4Why am I getting the following error in Python "ImportError: No module named py"?jtbradle2009-01-28T21:37:27Z2009-01-28T22:16:04Z
<p>I'm a Python newbie, so bear with me :)</p>
<p>I created a file called test.py with the contents as follows:</p>
<pre><code>test.py
import sys
print sys.platform
print 2 ** 100
</code></pre>
<p>I then ran <code>import test.py</code> file in the interpreter to follow an example in my book.
When I do this, I get the output with the import error on the end.</p>
<pre><code>win32
1267650600228229401496703205376
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named py
</code></pre>
<p>Why do I get this error and how do I fix it? Thanks!</p>
http://stackoverflow.com/questions/135432/what-alternatives-exist-to-uml-to-graphically-represent-software-models/135499#1354992Answer by jtbradle for What alternatives exist to UML to graphically represent software modelsjtbradle2008-09-25T19:36:02Z2008-09-25T19:36:02Z<p>One of the most popular is Agile Modeling</p>
<p><a href="http://www.agilemodeling.com/" rel="nofollow">http://www.agilemodeling.com/</a></p>
<p>It is based more on the principle of sketching your design rather than it being a formal concrete design. It is much more flexible.</p>
http://stackoverflow.com/questions/120460/what-is-the-most-convincing-way-to-require-formalized-unit-testing/120482#1204820Answer by jtbradle for What is the most convincing way to require formalized unit testing?jtbradle2008-09-23T11:42:53Z2008-09-23T11:42:53Z<p>On my software team, we tend to write a small business case on these issues and present them to management in order to have the time available to create and track tests. We explain that the time taken to test is well made up for when crunch time comes and everything is on the line. We also set up a Hudson build server to centralize the tracking of the unit tests. This makes it a lot easier for the developers to keep track of failing tests and to discover recurring problems.</p>
http://stackoverflow.com/questions/1213911/how-to-run-a-method-at-xxxxxx-timeComment by jtbradle on How to run a method at XX:XX:XX time ?jtbradle2009-07-31T17:45:27Z2009-07-31T17:45:27ZWhat language do you want to do it in?http://stackoverflow.com/questions/1074114/engineering-scalability-into-an-application/1074134#1074134Comment by jtbradle on Engineering scalability into an applicationjtbradle2009-07-02T12:53:06Z2009-07-02T12:53:06ZThis is true, however, scalability is also an issue when significantly decreasing system load. You may often come across a performance problem in "scaling down" in your system. Thus, scalability, in a broad sense, has to do with a change in quantity of resources or clients in an increasing or decreasing manner.http://stackoverflow.com/questions/1065584/what-is-data-driven-programming/1065593#1065593Comment by jtbradle on What is data-driven programming?jtbradle2009-06-30T19:46:19Z2009-06-30T19:46:19ZI understand what you mean Richie, and that is a good point. However, I was wondering if "data-driven programming" was some sort of term concretely recognized by the software development industry. I won't take any answer from here simply at face value here without checking back with my boss. -Thanks :)http://stackoverflow.com/questions/493046/i-dont-understand-slicing-with-negative-bounds-in-python-how-is-this-supposed-t/493057#493057Comment by jtbradle on I don't understand slicing with negative bounds in Python. How is this supposed to work?jtbradle2009-01-29T19:39:42Z2009-01-29T19:39:42ZThanks! That explains it all.