User Ben Noland - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T00:22:04Zhttp://stackoverflow.com/feeds/user/32899http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1823286/singleton-in-go1Singleton in goBen Noland2009-12-01T00:12:58Z2009-12-05T00:21:45Z
<p>How does one implement the Singleton design pattern in the go programming language?</p>
http://stackoverflow.com/questions/921239/hibernate-propertynotfoundexception-could-not-find-a-getter-for1Hibernate - PropertyNotFoundException: Could not find a getter for ...Ben Noland2009-05-28T14:50:04Z2009-12-03T06:42:06Z
<p>I have a class that looks like the following:</p>
<pre><code>public class MyClass {
private String dPart1;
public String getDPart1() {
return dPart1;
}
public void setDPart1(String dPart1) {
this.dPart1 = dPart1;
}
}
</code></pre>
<p>My hibernate mapping file maps the property as follows:</p>
<pre><code><property name="dPart1" not-null="true"/>
</code></pre>
<p>I get the following error:</p>
<pre><code>org.hibernate.PropertyNotFoundException: Could not find a getter for dPart1 in class com.mypackage.MyClass
at org.hibernate.property.BasicPropertyAccessor.createGetter(BasicPropertyAccessor.java:282)
at org.hibernate.property.BasicPropertyAccessor.getGetter(BasicPropertyAccessor.java:275)
at org.hibernate.mapping.Property.getGetter(Property.java:272)
at org.hibernate.tuple.entity.PojoEntityTuplizer.buildPropertyGetter(PojoEntityTuplizer.java:247)
at org.hibernate.tuple.entity.AbstractEntityTuplizer.<init>(AbstractEntityTuplizer.java:125)
at org.hibernate.tuple.entity.PojoEntityTuplizer.<init>(PojoEntityTuplizer.java:55)
at org.hibernate.tuple.entity.EntityEntityModeToTuplizerMapping.<init>(EntityEntityModeToTuplizerMapping.java:56)
at org.hibernate.tuple.entity.EntityMetamodel.<init>(EntityMetamodel.java:302)
at org.hibernate.persister.entity.AbstractEntityPersister.<init>(AbstractEntityPersister.java:434)
at
</code></pre>
<p>It appears that hibernate doesn't like my capitalization. How should I fix this?</p>
http://stackoverflow.com/questions/1452270/disable-rotation-of-a-webpage-in-iphone1disable rotation of a webpage in iphoneBen Noland2009-09-20T23:08:56Z2009-09-20T23:44:32Z
<p>I'm developing a webapp for the iphone. I'd like to force a certain page to always show in landscape mode not rotate. Is there an easy way to do this?</p>
http://stackoverflow.com/questions/1441969/iphone-webapp-server-side-view-template-selection1iphone webapp, server side view template selectionBen Noland2009-09-18T00:06:34Z2009-09-18T20:32:18Z
<p>I'm going to develop a mobile version of my webapp. Most documentation I've read suggests one of the following approaches:</p>
<ol>
<li>create a separate domain (m.example.com)</li>
<li>using conditional css style sheets, but serve the same html</li>
</ol>
<p>I'd like to take a completely different approach. I'm using MVC, and would decide which template to render on the server side. My model and controller will be the same, the domain will be the same, but the html will be served differently for mobile users.</p>
<p>Has anyone tried this? Any pitfalls to this approach?</p>
http://stackoverflow.com/questions/344969/making-a-jdialog-button-respond-to-the-enter-key2Making a JDialog button respond to the Enter keyBen Noland2008-12-05T20:09:25Z2009-08-20T20:56:05Z
<p>I have a JQueryDialog with a text field, an OK button and a cancel button.</p>
<p>I want to be able to hit the enter key after filling in the text fields and have it do the same action as when I click the OK button.</p>
http://stackoverflow.com/questions/1296971/cherrypy-logging0cherrypy loggingBen Noland2009-08-18T22:42:35Z2009-08-19T01:31:33Z
<p>I'd like to modify the default logging behavior of cherrypy to use a rolling log file.</p>
<p>I've read the section about Custom Handlers in the documentation at <a href="http://www.cherrypy.org/wiki/Logging" rel="nofollow">http://www.cherrypy.org/wiki/Logging</a> but it seems to be incomplete or out of date.</p>
http://stackoverflow.com/questions/749796/pretty-printing-xml-in-python/1206856#12068560Answer by Ben Noland for Pretty printing XML in pythonBen Noland2009-07-30T14:12:29Z2009-07-30T14:12:29Z<pre><code>import xml.dom.minidom
xml = xml.dom.minidom.parse(xml_fname) # or xml.dom.minidom.parseString(xml_string)
pretty_xml_as_string = xml.toprettyxml()
</code></pre>
http://stackoverflow.com/questions/1107297/looking-for-a-more-pythonic-way-to-access-the-database2looking for a more pythonic way to access the databaseBen Noland2009-07-10T01:37:14Z2009-07-10T02:47:12Z
<p>I have a bunch of python methods that follow this pattern:</p>
<pre><code>def delete_session(guid):
conn = get_conn()
cur = conn.cursor()
cur.execute("delete from sessions where guid=%s", guid)
conn.commit()
conn.close()
</code></pre>
<p>Is there a more pythonic way to execute raw sql. The 2 lines at the beginning and end of every method are starting to bother me.</p>
<p>I'm not looking for an orm, I want to stick with raw sql.</p>
http://stackoverflow.com/questions/1095831/mysql-get-the-date-n-days-ago-as-a-timestamp3MySQL get the date n days ago as a timestampBen Noland2009-07-08T02:16:10Z2009-07-08T03:59:27Z
<p>In MySQL, how would I get a timestamp from, say 30 days ago?</p>
<p>Something like:</p>
<pre><code>select now() - 30
</code></pre>
<p>The result should return a timestamp.</p>
http://stackoverflow.com/questions/1077393/python-unix-time-doesnt-work-in-javascript/1077414#10774143Answer by Ben Noland for Python Unix time doesn't work in JavascriptBen Noland2009-07-03T01:07:04Z2009-07-03T01:07:04Z<p>Here are a couple of python methods I use to convert to and from javascript/datetime.</p>
<pre><code>def to_datetime(js_timestamp):
return datetime.datetime.fromtimestamp(js_timestamp/1000)
def js_timestamp_from_datetime(dt):
return 1000 * time.mktime(dt.timetuple())
</code></pre>
<p>In javascript you would do:</p>
<pre><code>var dt = new Date();
dt.setTime(js_timestamp);
</code></pre>
http://stackoverflow.com/questions/993029/which-template-technology-should-i-use-with-cherrypy2Which template technology should I use with CherryPy?Ben Noland2009-06-14T15:33:01Z2009-06-15T01:08:14Z
<p>I'm in the process of building a web application using cherrypy.</p>
<p>What template technology do you recommend I use?</p>
http://stackoverflow.com/questions/921262/how-to-download-and-save-a-file-from-internet-using-java/921408#9214083Answer by Ben Noland for How to download and save a file from internet using JavaBen Noland2009-05-28T15:16:47Z2009-05-28T15:16:47Z<pre><code>public void saveUrl(String filename, String urlString) throws MalformedURLException, IOException
{
BufferedInputStream in = null;
FileOutputStream fout = null;
try
{
in = new BufferedInputStream(new URL(urlString).openStream());
fout = new FileOutputStream(filename);
byte data[] = new byte[1024];
int count;
while ((count = in.read(data, 0, 1024)) != -1)
{
fout.write(data, 0, count);
}
}
finally
{
if (in != null)
in.close();
if (fout != null)
fout.close();
}
}
</code></pre>
<p>You'll need to handle exceptions, probably external to this method.</p>
http://stackoverflow.com/questions/884154/hibernate-using-an-instance-of-javax-sql-datasource0Hibernate using an instance of javax.sql.DataSourceBen Noland2009-05-19T17:48:34Z2009-05-19T18:03:54Z
<p>Is it possible to configure Hibernate to use a javax.sql.DataSource instance?</p>
<p>My application already has an instance of javax.sql.DataSource and I'd rather not re-configure the database url, user, password, driver etc just for hibernate.</p>
http://stackoverflow.com/questions/865096/how-to-provide-api-for-our-system/865151#8651512Answer by Ben Noland for how to provide API for our systemBen Noland2009-05-14T19:12:06Z2009-05-14T19:12:06Z<p>Some things you'll need to think about are:</p>
<ul>
<li>SOAP vs REST (<a href="http://stackoverflow.com/questions/90451/why-would-one-use-rest-instead-of-web-services">http://stackoverflow.com/questions/90451/why-would-one-use-rest-instead-of-web-services</a>)</li>
<li>How will you handle authentication?</li>
<li>Does it need to scale?</li>
</ul>
<p>You might want to take a look at https://jersey.dev.java.net/.</p>
<p>It would also be helpful to look at how another company does it, check <a href="http://www.flickr.com/services/api/" rel="nofollow">http://www.flickr.com/services/api/</a> for some ideas.</p>
http://stackoverflow.com/questions/858765/how-do-i-store-a-binary-file-in-an-sql-database/864617#8646171Answer by Ben Noland for How do I store a binary file in an sql database?Ben Noland2009-05-14T17:20:37Z2009-05-14T17:20:37Z<p>I ended up doing the following:</p>
<pre><code>PreparedStatement st = conn.prepareStatement("update MyTable set binaryData = ? where id= 9");
st.setBinaryStream(1, new FileInputStream(file), (int)file.length());
st.execute();
</code></pre>
http://stackoverflow.com/questions/858765/how-do-i-store-a-binary-file-in-an-sql-database2How do I store a binary file in an sql database?Ben Noland2009-05-13T15:53:02Z2009-05-14T17:20:37Z
<p>I have a varbinary column we use to store excel files. I need to update this column with the contents of a different xls file that is currently on my filesystem.</p>
<p>Given a java.sql.Connection, how should I update the row?</p>
<p>We are using sql server 2005.</p>
http://stackoverflow.com/questions/858980/file-to-byte-in-java1File to byte[] in JavaBen Noland2009-05-13T16:30:33Z2009-05-13T19:05:40Z
<p>What is the best way to convert a java.io.File to a byte[]?</p>
http://stackoverflow.com/questions/841134/lots-of-boolean-flag-inputs-to-a-class/841343#8413432Answer by Ben Noland for lots of boolean flag inputs to a classBen Noland2009-05-08T19:10:12Z2009-05-08T19:10:12Z<p>Create a class to hold your configuration options:</p>
<pre><code>public class LayoutConfig
{
public boolean showOptionsTable = true;
public boolean allowFooInput = true;
public boolean allowBarInput = true;
public boolean isSuperUser = true;
}
...
LayoutConfig config = new LayoutConfig();
config.showOptionsTable = false;
new MyDialog(config);
</code></pre>
<p>This approach makes it easy to add new options without changes your interface. It will also enable you to add non-boolean options such as dates, numbers, colors, enums...</p>
http://stackoverflow.com/questions/835889/java-util-date-to-xmlgregoriancalendar/835963#8359636Answer by Ben Noland for java.util.Date to XMLGregorianCalendarBen Noland2009-05-07T17:22:15Z2009-05-07T17:22:15Z<pre><code>GregorianCalendar c = new GregorianCalendar();
c.setTime(yourDate);
XMLGregorianCalendar date2 = DatatypeFactory.newInstance().newXMLGregorianCalendar(c);
</code></pre>
http://stackoverflow.com/questions/450835/how-do-you-stop-scripters-from-slamming-your-website-hundreds-of-times-a-second/546181#5461810Answer by Ben Noland for How do you stop scripters from slamming your website hundreds of times a second?Ben Noland2009-02-13T14:44:29Z2009-02-13T14:44:29Z<ol>
<li><p>Identify bots via IP or a suit of other mechanisms.</p></li>
<li><p>Always serve those identified as bots the normal front page.</p></li>
</ol>
<p>Real people falsely identified as bots will not get the specials, but they won't notice anyway.</p>
<p>Bot owners won't realize you've identified them, so they will stop adapting their scripts.</p>
http://stackoverflow.com/questions/381568/rest-content-type-should-it-be-based-on-extension-or-accept-header6REST Content-Type: Should it be based on extension or Accept header?Ben Noland2008-12-19T17:11:30Z2009-01-21T00:10:20Z
<p>Should the representation(html, xml, json) returned by a RESTful web service be determined by the url or by the Accept HTTP header?</p>
http://stackoverflow.com/questions/290559/how-do-i-stop-start-a-scheduled-task-on-a-remote-computer-programatically0How do I stop/start a scheduled task on a remote computer programaticallyBen Noland2008-11-14T16:02:49Z2008-11-14T20:46:12Z
<p>I want to write a script that will stop a scheduled task on a remote computer, do some stuff, and then start the schedule task back up.</p>
http://stackoverflow.com/questions/290559/how-do-i-stop-start-a-scheduled-task-on-a-remote-computer-programatically/291347#2913472Answer by Ben Noland for How do I stop/start a scheduled task on a remote computer programaticallyBen Noland2008-11-14T20:46:12Z2008-11-14T20:46:12Z<p>Here's what I found.</p>
<p>start:</p>
<pre><code>schtasks /end /s <machine name> /tn <task name>
</code></pre>
<p>stop:</p>
<pre><code>schtasks /run /s <machine name> /tn <task name>
C:\>schtasks /?
SCHTASKS /parameter [arguments]
Description:
Enables an administrator to create, delete, query, change, run and
end scheduled tasks on a local or remote system. Replaces AT.exe.
Parameter List:
/Create Creates a new scheduled task.
/Delete Deletes the scheduled task(s).
/Query Displays all scheduled tasks.
/Change Changes the properties of scheduled task.
/Run Runs the scheduled task immediately.
/End Stops the currently running scheduled task.
/? Displays this help message.
Examples:
SCHTASKS
SCHTASKS /?
SCHTASKS /Run /?
SCHTASKS /End /?
SCHTASKS /Create /?
SCHTASKS /Delete /?
SCHTASKS /Query /?
SCHTASKS /Change /?
</code></pre>
http://stackoverflow.com/questions/287630/query-join-question/287648#2876481Answer by Ben Noland for query join questionBen Noland2008-11-13T17:41:20Z2008-11-13T17:41:20Z<p>Have you tried the following?</p>
<pre><code>SELECT
users_usr.firstname_usr,
users_usr.lastname_usr,
credit_acc.given_credit_acc,
users_usr.created_usr,
users_usr.sitenum_usr,
users_usr.original_aff_usr,
users_usr.id_usr
FROM
credit_acc
right Outer Join users_usr ON credit_acc.uid_usr = users_usr.id_usr and credit_acc.type_acc = 'init'
</code></pre>
http://stackoverflow.com/questions/285553/dates-with-no-time-or-timezone-component-in-java-mysql/285656#2856560Answer by Ben Noland for Dates with no time or timezone component in Java/MySQLBen Noland2008-11-12T22:39:23Z2008-11-12T22:39:23Z<p>You could zero out all time/timezone stuff:</p>
<pre><code>public static Date truncateDate(Date date)
{
GregorianCalendar cal = getGregorianCalendar();
cal.set(Calendar.ZONE_OFFSET, 0); // UTC
cal.set(Calendar.DST_OFFSET, 0); // We don't want DST to get in the way.
cal.setTime(date);
cal.set(Calendar.MILLISECOND, 0);
cal.set(Calendar.SECOND, 0);
cal.set(Calendar.MINUTE, 0);
cal.set(Calendar.HOUR, 0);
cal.set(Calendar.AM_PM, Calendar.AM);
return cal.getTime();
}
</code></pre>
http://stackoverflow.com/questions/284761/default-handler-implementation-breaking-on-nbsp/285075#2850750Answer by Ben Noland for Default Handler implementation breaking on nbspBen Noland2008-11-12T19:37:58Z2008-11-12T19:37:58Z<p><code>&nbsp;</code> is not a valid xml entity. You might try replacing it with <code>&#160;</code> instead, it does the same thing (non-breaking space).</p>
http://stackoverflow.com/questions/281913/how-can-i-change-the-database-schema-using-a-statement-execute-in-java-and-sq/281987#2819871Answer by Ben Noland for How can I change the database schema using a Statement.execute() in Java ( and SQL Server)?Ben Noland2008-11-11T20:03:05Z2008-11-11T20:03:05Z<p>I don't believe it's possible to change which database a connection points to.</p>
<p>You'll probably need to create a separate DataSource/Connection for each database (schema).</p>
http://stackoverflow.com/questions/272657/java-o-r-layer-for-sql-server/273429#2734292Answer by Ben Noland for Java O/R layer for SQL server?Ben Noland2008-11-07T19:56:19Z2008-11-07T20:46:04Z<p>I've used Hibernate and iBATIS. Choosing one over the other depends upon the situation.</p>
<p>Hibernate:</p>
<ul>
<li>is much pickier about database schema</li>
<li>generates most of the sql for you</li>
<li>more features</li>
<li>more complex</li>
</ul>
<p>iBATIS:</p>
<ul>
<li>works better when you want to work with existing schema</li>
<li>requires you to write your own sql</li>
<li>easier to learn</li>
</ul>
<p>They both work well with SQL Server and handle multi threading.</p>
http://stackoverflow.com/questions/211683/easy-way-to-share-discuss-collaborate-on-code-snippets/263468#2634681Answer by Ben Noland for Easy way to share / discuss / collaborate on code snippets?Ben Noland2008-11-04T21:18:19Z2008-11-04T21:18:19Z<p><a href="http://collabedit.com" rel="nofollow">collabedit</a> is a browser based collaborative source code editor. </p>
<p>Here's a demo <a href="http://collabedit.com/display?id=46786" rel="nofollow">http://collabedit.com/display?id=46786</a>.</p>
http://stackoverflow.com/questions/263348/best-practices-swing-database-access0Best Practices - Swing, Database AccessBen Noland2008-11-04T20:41:52Z2008-11-04T20:48:31Z
<p>I'm a newbie to swing development.</p>
<p>I have a swing app that needs to access data from a remote sql database. The users of the app are all located in our office.</p>
<p>Is it bad practice to access the database directly from the swing app? </p>
<p>Should I put database facing code into an rmi server?</p>
http://stackoverflow.com/questions/1736150/find-out-whether-a-linked-list-has-a-loop/1736177#1736177Comment by Ben Noland on Find out whether a Linked List has a loopBen Noland2009-11-15T00:50:13Z2009-11-15T00:50:13Ztypo, should be if(p1==p2) CYCLE!!http://stackoverflow.com/questions/317295/dont-show-iphone-keyboard-for-a-particular-textbox-in-web-page/843117#843117Comment by Ben Noland on Don't show iPhone keyboard for a particular textbox in web page?Ben Noland2009-09-26T17:24:43Z2009-09-26T17:24:43ZI just tried this, it worked for me!
I'm using the jqueryui datepicker and didn't want the keyboard to pop up. This did the trick.http://stackoverflow.com/questions/1107297/looking-for-a-more-pythonic-way-to-access-the-database/1107315#1107315Comment by Ben Noland on looking for a more pythonic way to access the databaseBen Noland2009-07-10T02:08:56Z2009-07-10T02:08:56ZSome of the methods I write will need to interact with the results. Seems like it would be awkward with this method. Can you call the fetch methods after the connection is closed?http://stackoverflow.com/questions/1107297/looking-for-a-more-pythonic-way-to-access-the-database/1107314#1107314Comment by Ben Noland on looking for a more pythonic way to access the databaseBen Noland2009-07-10T02:06:14Z2009-07-10T02:06:14ZI think I like the context manager approach. The link given by ars describes it well enough, but thanks for the offer.http://stackoverflow.com/questions/1107297/looking-for-a-more-pythonic-way-to-access-the-database/1107314#1107314Comment by Ben Noland on looking for a more pythonic way to access the databaseBen Noland2009-07-10T02:05:17Z2009-07-10T02:05:17ZIt works fine with the guid alone. Is there an issue I'm unaware of?http://stackoverflow.com/questions/1095831/mysql-get-the-date-n-days-ago-as-a-timestampComment by Ben Noland on MySQL get the date n days ago as a timestampBen Noland2009-07-08T13:15:44Z2009-07-08T13:15:44ZI'm after the MySQL Timestamp.http://stackoverflow.com/questions/263348/best-practices-swing-database-accessComment by Ben Noland on Best Practices - Swing, Database AccessBen Noland2008-11-04T21:16:06Z2008-11-04T21:16:06ZI'm asking if I should interpose another server running some other component between your swing app server and the database server.http://stackoverflow.com/questions/263348/best-practices-swing-database-access/263360#263360Comment by Ben Noland on Best Practices - Swing, Database AccessBen Noland2008-11-04T20:56:55Z2008-11-04T20:56:55ZNo, it's read only.