User Ben Noland - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T00:22:04Z http://stackoverflow.com/feeds/user/32899 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1823286/singleton-in-go 1 Singleton in go Ben Noland 2009-12-01T00:12:58Z 2009-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-for 1 Hibernate - PropertyNotFoundException: Could not find a getter for ... Ben Noland 2009-05-28T14:50:04Z 2009-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>&lt;property name="dPart1" not-null="true"/&gt; </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.&lt;init&gt;(AbstractEntityTuplizer.java:125) at org.hibernate.tuple.entity.PojoEntityTuplizer.&lt;init&gt;(PojoEntityTuplizer.java:55) at org.hibernate.tuple.entity.EntityEntityModeToTuplizerMapping.&lt;init&gt;(EntityEntityModeToTuplizerMapping.java:56) at org.hibernate.tuple.entity.EntityMetamodel.&lt;init&gt;(EntityMetamodel.java:302) at org.hibernate.persister.entity.AbstractEntityPersister.&lt;init&gt;(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-iphone 1 disable rotation of a webpage in iphone Ben Noland 2009-09-20T23:08:56Z 2009-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-selection 1 iphone webapp, server side view template selection Ben Noland 2009-09-18T00:06:34Z 2009-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-key 2 Making a JDialog button respond to the Enter key Ben Noland 2008-12-05T20:09:25Z 2009-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-logging 0 cherrypy logging Ben Noland 2009-08-18T22:42:35Z 2009-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#1206856 0 Answer by Ben Noland for Pretty printing XML in python Ben Noland 2009-07-30T14:12:29Z 2009-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-database 2 looking for a more pythonic way to access the database Ben Noland 2009-07-10T01:37:14Z 2009-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-timestamp 3 MySQL get the date n days ago as a timestamp Ben Noland 2009-07-08T02:16:10Z 2009-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#1077414 3 Answer by Ben Noland for Python Unix time doesn't work in Javascript Ben Noland 2009-07-03T01:07:04Z 2009-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-cherrypy 2 Which template technology should I use with CherryPy? Ben Noland 2009-06-14T15:33:01Z 2009-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#921408 3 Answer by Ben Noland for How to download and save a file from internet using Java Ben Noland 2009-05-28T15:16:47Z 2009-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-datasource 0 Hibernate using an instance of javax.sql.DataSource Ben Noland 2009-05-19T17:48:34Z 2009-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#865151 2 Answer by Ben Noland for how to provide API for our system Ben Noland 2009-05-14T19:12:06Z 2009-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#864617 1 Answer by Ben Noland for How do I store a binary file in an sql database? Ben Noland 2009-05-14T17:20:37Z 2009-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-database 2 How do I store a binary file in an sql database? Ben Noland 2009-05-13T15:53:02Z 2009-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-java 1 File to byte[] in Java Ben Noland 2009-05-13T16:30:33Z 2009-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#841343 2 Answer by Ben Noland for lots of boolean flag inputs to a class Ben Noland 2009-05-08T19:10:12Z 2009-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#835963 6 Answer by Ben Noland for java.util.Date to XMLGregorianCalendar Ben Noland 2009-05-07T17:22:15Z 2009-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#546181 0 Answer by Ben Noland for How do you stop scripters from slamming your website hundreds of times a second? Ben Noland 2009-02-13T14:44:29Z 2009-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-header 6 REST Content-Type: Should it be based on extension or Accept header? Ben Noland 2008-12-19T17:11:30Z 2009-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-programatically 0 How do I stop/start a scheduled task on a remote computer programatically Ben Noland 2008-11-14T16:02:49Z 2008-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#291347 2 Answer by Ben Noland for How do I stop/start a scheduled task on a remote computer programatically Ben Noland 2008-11-14T20:46:12Z 2008-11-14T20:46:12Z <p>Here's what I found.</p> <p>start:</p> <pre><code>schtasks /end /s &lt;machine name&gt; /tn &lt;task name&gt; </code></pre> <p>stop:</p> <pre><code>schtasks /run /s &lt;machine name&gt; /tn &lt;task name&gt; C:\&gt;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#287648 1 Answer by Ben Noland for query join question Ben Noland 2008-11-13T17:41:20Z 2008-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#285656 0 Answer by Ben Noland for Dates with no time or timezone component in Java/MySQL Ben Noland 2008-11-12T22:39:23Z 2008-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#285075 0 Answer by Ben Noland for Default Handler implementation breaking on nbsp Ben Noland 2008-11-12T19:37:58Z 2008-11-12T19:37:58Z <p><code>&amp;nbsp;</code> is not a valid xml entity. You might try replacing it with <code>&amp;#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#281987 1 Answer by Ben Noland for How can I change the database schema using a Statement.execute() in Java ( and SQL Server)? Ben Noland 2008-11-11T20:03:05Z 2008-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#273429 2 Answer by Ben Noland for Java O/R layer for SQL server? Ben Noland 2008-11-07T19:56:19Z 2008-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#263468 1 Answer by Ben Noland for Easy way to share / discuss / collaborate on code snippets? Ben Noland 2008-11-04T21:18:19Z 2008-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-access 0 Best Practices - Swing, Database Access Ben Noland 2008-11-04T20:41:52Z 2008-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#1736177 Comment by Ben Noland on Find out whether a Linked List has a loop Ben Noland 2009-11-15T00:50:13Z 2009-11-15T00:50:13Z typo, should be if(p1==p2) CYCLE!! http://stackoverflow.com/questions/317295/dont-show-iphone-keyboard-for-a-particular-textbox-in-web-page/843117#843117 Comment by Ben Noland on Don't show iPhone keyboard for a particular textbox in web page? Ben Noland 2009-09-26T17:24:43Z 2009-09-26T17:24:43Z I 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#1107315 Comment by Ben Noland on looking for a more pythonic way to access the database Ben Noland 2009-07-10T02:08:56Z 2009-07-10T02:08:56Z Some 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#1107314 Comment by Ben Noland on looking for a more pythonic way to access the database Ben Noland 2009-07-10T02:06:14Z 2009-07-10T02:06:14Z I 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#1107314 Comment by Ben Noland on looking for a more pythonic way to access the database Ben Noland 2009-07-10T02:05:17Z 2009-07-10T02:05:17Z It 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-timestamp Comment by Ben Noland on MySQL get the date n days ago as a timestamp Ben Noland 2009-07-08T13:15:44Z 2009-07-08T13:15:44Z I'm after the MySQL Timestamp. http://stackoverflow.com/questions/263348/best-practices-swing-database-access Comment by Ben Noland on Best Practices - Swing, Database Access Ben Noland 2008-11-04T21:16:06Z 2008-11-04T21:16:06Z I'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#263360 Comment by Ben Noland on Best Practices - Swing, Database Access Ben Noland 2008-11-04T20:56:55Z 2008-11-04T20:56:55Z No, it's read only.