User Matt Sheppard - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T17:12:51Zhttp://stackoverflow.com/feeds/user/797http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1768090/what-is-activeperl-doing-when-it-relocates-files-during-installation1What is ActivePerl doing when it "relocates" files during installation?Matt Sheppard2009-11-20T03:11:31Z2009-11-21T13:00:35Z
<p>Given some unix program which I've compiled, what might I need to do to relocate it to a different directory and have it continue running correctly.</p>
<p>I'm thinking of Perl, but would be interested in other systems like Apache which also seem to fail when this is done. To motivate the question, being able to perform this sort of relocation would be very useful when bundling other systems as part of a product install.</p>
<p>For what it's worth, ActivePerl's install process seems to contain some magic which performs the relocation during the install..</p>
<pre><code>Installing ActivePerl...
Copying files to /opt/ActivePerl-5.8...done
Relocating...done (164 files relocated)
Generating HTML documentation...done
Syncing perl PPM database with .packlists...done
ActivePerl has been successfully installed at /opt/ActivePerl-5.8.
</code></pre>
<p>Can anyone enlighten me as to what's happening behind that 'Relocating...' line?</p>
http://stackoverflow.com/questions/1732366/how-do-i-avoid-checking-in-local-changes-to-the-svn-repository/1732392#17323922Answer by Matt Sheppard for How do I avoid checking in local changes to the SVN repository?Matt Sheppard2009-11-13T22:50:18Z2009-11-13T22:50:18Z<p>I generally try to arrange things so the standard files SVN checks out can be overridden by a separate file which is svn:ignore-ed</p>
<p>For example, I have a bash script which starts a Jetty web server using a config file. Normally it is jetty.xml, but if jetty-local.xml is present on the filesystem, that's used instead.</p>
<p>(Of course, the obvious problem there is that when jetty.xml gets some updates, they won't be merged into jetty-local.xml, but that may be less of a problem than what you're already facing.)</p>
<p>In a PHP project I used to work on, this was taken even further with two separate code trees - /system where all the system classes were checked out, and /local which mirrored it, but was empty unless a local class were added, in which case it was loaded in preference. That may well be getting too fancy for its own good.</p>
<p>If it's configuration files which you own that are the problem, another solution I've used is to arrange to read them hierarchically (i.e. read in global.cfg.default, then overwrite with any settings in global.cfg.local).</p>
http://stackoverflow.com/questions/156410/extjs-scroll-jumping-issue-with-checkboxes-in-a-grouped-grid0ExtJS scroll jumping issue with checkboxes in a grouped gridMatt Sheppard2008-10-01T06:09:25Z2009-11-11T19:09:22Z
<p>Hopefully someone can help me out with a small issue I've run into using <a href="http://extjs.com" rel="nofollow">ExtJS</a> to create a grid with checkboxes (based on the plugin at <a href="http://extjs.com/deploy/dev/examples/grid/edit-grid.js" rel="nofollow">http://extjs.com/deploy/dev/examples/grid/edit-grid.js</a>) and grouping. Specifically, in the example below, Expanding the 'letter' group then clicking on the checkbox for the last item in the group causes the grid scroll position to jump back up (to the top in FireFox 3, up a bit but not all the way in IE 6).</p>
<p>If it helps at all, I've found this only seems to occur if the next group in the grid is collapsed (and it doesn't happen for the very last group, presumably because there is no next group).</p>
<p>I've tried digging around, but unfortunately I haven't been able to replicate this behaviour while running with FireBug.</p>
<p>Anyway, if anyone has any pointers on how I might track down and resolve this issue, it would be greatly appreciated.</p>
<p>The following test file exhibits this behaviour (and can be placed in the ext-2.2 directory in a downloaded copy of ext 2.2 to run it)</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<link rel="stylesheet" type="text/css" href="resources/css/ext-all.css"/>
<script type="text/javascript" src="adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="ext-all-debug.js"></script>
<script type="text/javascript">
Ext.onReady(function(){
var reader = new Ext.data.ArrayReader({}, [
{name: 'id'},
{name: 'selected'},
{name: 'name'},
{name: 'type'}
]);
var dummyData = [
['a',false, 'a', 'letter'],
['b',false, 'b', 'letter'],
['c',false, 'c', 'letter'],
['d',false, 'd', 'letter'],
['e',false, 'e', 'letter'],
['1',false, '1', 'number'],
['2',false, '2', 'number'],
['3',false, '3', 'number'],
['4',false, '4', 'number'],
['5',false, '5', 'number'],
['6',false, '6', 'number'],
['7',false, '7', 'number'],
['8',false, '8', 'number'],
['9',false, '9', 'number'],
['!',false, '!', 'symbol'],
['@',false, '@', 'symbol'],
['#',false, '#', 'symbol'],
['$',false, '$', 'symbol'],
['%',false, '%', 'symbol']
];
var dataStore = new Ext.data.GroupingStore({
sortInfo:{field: 'selected', direction: "DESC"},
groupField:'type',
fields: ['id','selected','name','type'],
autoLoad: true,
data: dummyData,
reader: reader
});
var checkColumn = new Ext.grid.CheckColumn({
header: "Selected",
dataIndex: 'selected',
width: 40,
sortable: true
});
var grid = new Ext.grid.EditorGridPanel({
renderTo: 'content',
store: dataStore,
columns: [
checkColumn,
{header: "Name", width: 450, sortable: true, dataIndex: 'name'},
{header: "Type", width: 0, sortable: true, dataIndex: 'type'}
],
view: new Ext.grid.GroupingView({
forceFit:true,
groupTextTpl: '{text} ({[values.rs.length]} {[values.rs.length > 1 ? "Items" : "Item"]})',
hideGroupedColumn: true,
startCollapsed: true
}),
plugins: checkColumn,
clicksToEdit:1,
autoExpandColumn:'name',
frame:true,
width: 700,
height: 150,
title: 'Scroll jumping example',
iconCls: 'icon-grid'
});
});
Ext.grid.CheckColumn = function(config){
Ext.apply(this, config);
if(!this.id){
this.id = Ext.id();
}
this.renderer = this.renderer.createDelegate(this);
};
Ext.grid.CheckColumn.prototype = {
init : function(grid){
this.grid = grid;
this.grid.on('render', function(){
var view = this.grid.getView();
view.mainBody.on('mousedown', this.onMouseDown, this);
}, this);
},
onMouseDown : function(e, t){
if(t.className && t.className.indexOf('x-grid3-cc-'+this.id) != -1){
e.stopEvent();
var index = this.grid.getView().findRowIndex(t);
var record = this.grid.store.getAt(index);
record.set(this.dataIndex, !record.data[this.dataIndex]);
}
},
renderer : function(v, p, record){
p.css += ' x-grid3-check-col-td';
return '<div class="x-grid3-check-col'+(v?'-on':'')+' x-grid3-cc-'+this.id+'">&#160;</div>';
}
};
</script>
</head>
<body>
<div id="content"></div>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c23Understanding reference counting with Cocoa / Objective CMatt Sheppard2008-08-09T03:13:04Z2009-11-09T21:49:49Z
<p>I'm just beginning to have a look at Objective C and Cocoa with a view to playing with he iPhone SDK. I'm reasonably comfortable with C's malloc and free concept, but Cocoa's references counting scheme has me rather confused. I'm told it's very elegant once you understand it, but I'm just not over the hump yet.</p>
<p>I guess my question is, can anyone briefly explain release, retain and autorelease and the conventions about their use in a way which makes it click for me?</p>
<p>(Or failing that, what did you read which helped you get it?)</p>
http://stackoverflow.com/questions/1671479/indirect-reference-in-freemarker1Indirect reference in FreemarkerMatt Sheppard2009-11-04T03:03:17Z2009-11-04T03:13:55Z
<p>Using <a href="http://freemarker.org/" rel="nofollow">freemarker</a>, is there any way to reference a value indirectly along the lines of...</p>
<pre><code><#assign apple=fruit>
<#assign item=apple>
${${item}}
</code></pre>
<p>to produce the output 'fruit' without prior knowledge of what value item might contain?</p>
http://stackoverflow.com/questions/1635041/sqlite-dialect-error-with-hibernate0SQLite dialect error with HibernateMatt Sheppard2009-10-28T03:24:53Z2009-10-28T18:35:57Z
<p>I have been trying to use the hibernate dialect for SQLite from <a href="http://code.google.com/p/hibernate-sqlite/" rel="nofollow">http://code.google.com/p/hibernate-sqlite/</a> in a project, but have hit a problem with something like the following...</p>
<pre><code> SQLQuery query = session
.createSQLQuery("select id from collection where collection = (:collection_name);");
query.setParameter("collection_name", collectionName);
Integer collectionId = (Integer) query.uniqueResult();
</code></pre>
<p>What I expect is that if there is no matching row for my query, that collectionId would be set to null. What I actually get is an exception as follows...</p>
<pre><code>Exception in thread "main" org.hibernate.MappingException: No Dialect mapping for JDBC type: 0
at org.hibernate.dialect.TypeNames.get(TypeNames.java:79)
at org.hibernate.dialect.TypeNames.get(TypeNames.java:104)
at org.hibernate.dialect.Dialect.getHibernateTypeName(Dialect.java:395)
at org.hibernate.loader.custom.CustomLoader$Metadata.getHibernateType(CustomLoader.java:582)
at org.hibernate.loader.custom.CustomLoader$ScalarResultColumnProcessor.performDiscovery(CustomLoader.java:508)
at org.hibernate.loader.custom.CustomLoader.autoDiscoverTypes(CustomLoader.java:524)
at org.hibernate.loader.Loader.getResultSet(Loader.java:1821)
at org.hibernate.loader.Loader.doQuery(Loader.java:697)
at org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:259)
at org.hibernate.loader.Loader.doList(Loader.java:2232)
at org.hibernate.loader.Loader.listIgnoreQueryCache(Loader.java:2129)
at org.hibernate.loader.Loader.list(Loader.java:2124)
at org.hibernate.loader.custom.CustomLoader.list(CustomLoader.java:312)
at org.hibernate.impl.SessionImpl.listCustomQuery(SessionImpl.java:1657)
at org.hibernate.impl.AbstractSessionImpl.list(AbstractSessionImpl.java:165)
at org.hibernate.impl.SQLQueryImpl.list(SQLQueryImpl.java:175)
at org.hibernate.impl.AbstractQueryImpl.uniqueResult(AbstractQueryImpl.java:835)
at uniqueResult line of code above.
</code></pre>
<p>Having looked at the actual dialect, that's not totally surprising as it looks like JDBC type 0 is null, and the dialect contains the following function with the null mapping commented out...</p>
<pre><code>public SQLiteDialect() {
super();
registerColumnType(Types.BIT, "integer");
// ...lots more type registers...
registerColumnType(Types.LONGVARBINARY, "blob");
// registerColumnType(Types.NULL, "null");
registerColumnType(Types.BLOB, "blob");
// ...more column types and function registers...
}
</code></pre>
<p>Unfortunately, the obvious step of uncommenting the mapping for null does not seem to change the behavior.</p>
<p>Can any point out what I'm doing wrong, suggest how to fix the dialect, or recommend any good resources the read on writing a Hibernate dialect?</p>
http://stackoverflow.com/questions/54037/credit-card-expiration-dates-inclusive-or-exclusive10Credit card expiration dates - Inclusive or exclusive?Matt Sheppard2008-09-10T13:31:29Z2009-10-26T15:07:34Z
<p>Say you've got a credit card number with an expiration date of 05/08 - i.e. May 2008.</p>
<p>Does that mean the card expires on the morning of the 1st of May 2008, or the night of the 31st of May 2008?</p>
http://stackoverflow.com/questions/6557/in-c-why-cant-a-liststring-object-be-stored-in-a-listobject-variable13In C#, why can't a List<string> object be stored in a List<object> variableMatt Sheppard2008-08-09T02:32:01Z2009-10-15T09:41:08Z
<p>It seems that a List object cannot be stored in a List variable in C#, and can't even be explicitly cast that way.<p></p>
<pre><code>List<string> sl = new List<string>();<br>List<object> ol;<br>ol = sl;<br></code></pre>
<p>results in Cannot implicitly convert type ‘System.Collections.Generic.List’ to ‘System.Collections.Generic.List’<p></p>
<p>And then...</p>
<pre><code>List<string> sl = new List<string>();<br>List<object> ol;<br>ol = (List<object>)sl;<br></code></pre>
<p>results in Cannot convert type ‘System.Collections.Generic.List’ to ‘System.Collections.Generic.List’<p></p>
<p>Of course, you can do it by pulling everything out of the string list and putting it back in one at a time, but it is a rather convoluted solution.</p></p></p></p>
http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java32Overriding equals and hashCode in JavaMatt Sheppard2008-08-26T08:50:26Z2009-10-12T06:26:56Z
<p>What issues / pitfalls do I need to consider when overriding equals and hashCode in a java class?</p>
http://stackoverflow.com/questions/6816/eclipse-class-file-name-must-end-with-class-exception-in-java-search6Eclipse : Class file name must end with .class exception in Java SearchMatt Sheppard2008-08-09T15:40:30Z2009-10-05T06:10:28Z
<p>I was hoping someone could help me out with a problem I'm having using the java search function in Eclipse on a particular project.</p>
<p>When using the java search on one particular project, I get an error message saying 'Class file name must end with .class' (see stack trace below). This does not seem to be happening on all projects, just one particular one, so perhaps there's something I should try to get rebuilt?</p>
<p>I have already tried Project -> Clean... and Closing Eclipse, deleting all the built class files and restarting Eclipse to no avail.</p>
<p>The only reference I've been able to find on Google for the problem is at <a href="http://www.crazysquirrel.com/computing/java/eclipse/error-during-java-search.jspx" rel="nofollow" title="Reading List: Fog Creek Software Management Training Program"><a href="http://www.crazysquirrel.com/computing/java/eclipse/error-during-java-search.jspx" rel="nofollow">http://www.crazysquirrel.com/computing/java/eclipse/error-during-java-search.jspx</a></a>, but unfortunately his solution (closing, deleting class files, restarting) did not work for me.</p>
<p>If anyone can suggest something to try, or there's any more info I can gather which might help track it's down, I'd greatly appreciate the pointers.</p>
<p>Version: 3.4.0
Build id: I20080617-2000</p>
<p>Also just found this thread - <a href="http://www.myeclipseide.com/PNphpBB2-viewtopic-t-20067.html" rel="nofollow" title="Bootstrap"><a href="http://www.myeclipseide.com/PNphpBB2-viewtopic-t-20067.html" rel="nofollow">http://www.myeclipseide.com/PNphpBB2-viewtopic-t-20067.html</a></a> - which indicates the same problem may occur when the project name contains a period. Unfortunately, that's not the case in my setup, so I'm still stuck.</p>
<pre><code>Caused by: java.lang.IllegalArgumentException: Class file name must end with .class
at org.eclipse.jdt.internal.core.PackageFragment.getClassFile(PackageFragment.java:182)
at org.eclipse.jdt.internal.core.util.HandleFactory.createOpenable(HandleFactory.java:109)
at org.eclipse.jdt.internal.core.search.matching.MatchLocator.locateMatches(MatchLocator.java:1177)
at org.eclipse.jdt.internal.core.search.JavaSearchParticipant.locateMatches(JavaSearchParticipant.java:94)
at org.eclipse.jdt.internal.core.search.BasicSearchEngine.findMatches(BasicSearchEngine.java:223)
at org.eclipse.jdt.internal.core.search.BasicSearchEngine.search(BasicSearchEngine.java:506)
at org.eclipse.jdt.core.search.SearchEngine.search(SearchEngine.java:551)
at org.eclipse.jdt.internal.corext.refactoring.RefactoringSearchEngine.internalSearch(RefactoringSearchEngine.java:142)
at org.eclipse.jdt.internal.corext.refactoring.RefactoringSearchEngine.search(RefactoringSearchEngine.java:129)
at org.eclipse.jdt.internal.corext.refactoring.rename.RenameTypeProcessor.initializeReferences(RenameTypeProcessor.java:594)
at org.eclipse.jdt.internal.corext.refactoring.rename.RenameTypeProcessor.doCheckFinalConditions(RenameTypeProcessor.java:522)
at org.eclipse.jdt.internal.corext.refactoring.rename.JavaRenameProcessor.checkFinalConditions(JavaRenameProcessor.java:45)
at org.eclipse.ltk.core.refactoring.participants.ProcessorBasedRefactoring.checkFinalConditions(ProcessorBasedRefactoring.java:225)
at org.eclipse.ltk.core.refactoring.Refactoring.checkAllConditions(Refactoring.java:160)
at org.eclipse.jdt.internal.ui.refactoring.RefactoringExecutionHelper$Operation.run(RefactoringExecutionHelper.java:77)
at org.eclipse.jdt.internal.core.BatchOperation.executeOperation(BatchOperation.java:39)
at org.eclipse.jdt.internal.core.JavaModelOperation.run(JavaModelOperation.java:709)
at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1800)
at org.eclipse.jdt.core.JavaCore.run(JavaCore.java:4650)
at org.eclipse.jdt.internal.ui.actions.WorkbenchRunnableAdapter.run(WorkbenchRunnableAdapter.java:92)
at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:121)
</code></pre>
<p>Thanks <a href="#6840" rel="nofollow" title="Micro-ISV: From Vision to Reality">McDowell</a>, closing and opening the project seems to have fixed it (at least for now).</p>
http://stackoverflow.com/questions/25547/dump-microsoft-sql-server-database-to-an-sql-script7Dump Microsoft SQL Server database to an SQL scriptMatt Sheppard2008-08-25T01:47:52Z2009-10-03T09:14:30Z
<p>Is there any way to export a Microsoft SQL Server database to an sql script?</p>
<p>I'm looking for something which behaves similarly to mysqldump, taking a database name, and producing a single script which will recreate all the tables, stored procedures, reinsert all the data etc.</p>
<p>I've seen <a href="http://vyaskn.tripod.com/code.htm#inserts" rel="nofollow">http://vyaskn.tripod.com/code.htm#inserts</a>, but I ideally want something to recreate everything (not just the data) which works in a single step to produce the final script.</p>
http://stackoverflow.com/questions/25952/best-programming-based-games23Best programming based gamesMatt Sheppard2008-08-25T12:34:43Z2009-09-14T21:05:40Z
<p>Back when I was at school, I remember tinkering with a Mac game where you programmed little robots in a sort of pseudo-assembler language which could then battle each other. They could move themselves around the arena, look for opponents in different directions, and fire some sort of weapon. Pretty basic stuff, but I remember it quite fondly, even if I can't remember the name.</p>
<p>Are there any good modern day equivalents?</p>
http://stackoverflow.com/questions/1397724/how-can-a-currently-running-c-program-find-out-what-directory-it-is-located-in2How can a currently running C program find out what directory it is located in?Matt Sheppard2009-09-09T05:37:57Z2009-09-13T04:41:58Z
<p>Say I have a command line C program which is currently executing, and I want to read a file or execute another binary in the same directory - how can I find out what directory that is?</p>
<p>Note that I'm not looking for the current working directory. The user may have invoked my original program in any of the following ways (and possibly others I don't know about).</p>
<ul>
<li>../../program</li>
<li>/home/matt/program</li>
<li>PATH=$PATH:/home/matt program</li>
</ul>
<p>Ideally I'm looking for something which will work on a unix system and windows via MinGW.</p>
http://stackoverflow.com/questions/1377469/how-can-i-check-that-a-perl-version-is-not-greater-than-some-value3How can I check that a perl version is not greater than some value?Matt Sheppard2009-09-04T06:02:10Z2009-09-05T21:06:21Z
<p>To ensure a script has at least version X of perl, you can do the following</p>
<pre><code>require 5.6.8;
</code></pre>
<p>What is the best way of checking that a version is not too recent?
(i.e. version 5.8.x if fine, but 5.9 or 5.10 are not ok).</p>
http://stackoverflow.com/questions/10586/small-modification-to-an-xml-document-using-stax1Small modification to an XML document using StAXMatt Sheppard2008-08-14T02:22:37Z2009-09-05T17:31:34Z
<p>I'm currently trying to read in an XML file, make some minor changes (alter the value of some attributes), and write it back out again.</p>
<p>I have intended to use a StAX parser (javax.xml.stream.XMLStreamReader) to read in each event, see if it was one I wanted to change, and then pass it straight on to the StAX writer (javax.xml.stream.XMLStreamReader) if no changes were required.</p>
<p>Unfortunately, that doesn't look to be so simple - The writer has no way to take an event type and a parser object, only methods like writeAttribute and writeStartElement. Obviously I could write a big switch statement with a case for every possible type of element which can occur in an XML document, and just write it back out again, but it seems like a lot of trouble for something which seems like it should be simple.</p>
<p>Is there something I'm missing that makes it easy to write out a very similar XML document to the one you read in with StAX?</p>
http://stackoverflow.com/questions/1286415/world-map-with-data-display-as-a-heat-map-for-a-web-application0World map with data display as a heat map for a web applicationMatt Sheppard2009-08-17T06:21:45Z2009-08-17T07:30:19Z
<p>Are there any toolkits / libraries which can generate a world map and overlay data in a heat map sort of view (like Google's one on <a href="http://www.google.com/insights/search/#geo=&q=wimbledon+-tennis%2Cwimbledon+tennis&cmpt=q" rel="nofollow">http://www.google.com/insights/search/#geo=&q=wimbledon+-tennis%2Cwimbledon+tennis&cmpt=q</a>)?</p>
<p>I would need to be able to generate and display the map locally, not via some webservice, and would need the output in a browser (i.e. flash or HTMP/Javascript output).</p>
http://stackoverflow.com/questions/45399/advantages-and-disadvantages-of-guid-uuid-database-keys20Advantages and disadvantages of GUID / UUID database keysMatt Sheppard2008-09-05T08:00:50Z2009-08-16T12:56:39Z
<p>I've worked on a number of database systems in the past where moving entries between databases would have been made a lot easier if all the database keys had been <a href="http://en.wikipedia.org/wiki/Globally_Unique_Identifier" rel="nofollow">GUID / UUID</a> values. I've considered going down this path a few times, but there's always a bit of uncertainty, especially around performance and un-read-out-over-the-phone-able URLs.</p>
<p>Has anyone worked extensively with GUIDs in a database? What advantages would I get by going that way, and what are the likely pitfalls?</p>
http://stackoverflow.com/questions/1135731/java-lang-nosuchmethoderror-main-when-starting-helloworld-with-eclipse-scala-plu1java.lang.NoSuchMethodError: main when starting HelloWorld with Eclipse Scala pluginMatt Sheppard2009-07-16T06:23:31Z2009-08-16T05:00:03Z
<p>I've just been playing with Scala, and installed the Eclipse plugin as described at <a href="http://www.scala-lang.org/node/94" rel="nofollow">http://www.scala-lang.org/node/94</a>, but after entering the "Hello World" test example and setting up the run configuration as described, I get the following error</p>
<pre><code>Exception in thread "main" java.lang.NoSuchMethodError: main
</code></pre>
<p>For reference the code is</p>
<pre><code>package hello
object HelloWorld extends Application {
println("Hello World!")
}
</code></pre>
<p>I've tinkered a bit with the obvious solutions (adding a main method, adding a singleton object with a main method) but I'm clearly doing something wrong.</p>
<p>Can anyone get their test example to work, or point out what I am doing wrong?</p>
http://stackoverflow.com/questions/1281073/embeddable-language-with-good-string-manipulation-support2Embeddable language with good string manipulation supportMatt Sheppard2009-08-15T03:33:46Z2009-08-15T15:49:25Z
<p>I've been working on a C program which does quite a lot of string manipulation, and very often needs to be tweaked and recompiled for some sort of special case processing. I've been thinking that embedding some scripting language with good string manipulation support might make sense for the project.</p>
<p>What language would provide the best string manipulation support while being easy to embed in a C program?</p>
<p>For some extra background...</p>
<ul>
<li>Performance is pretty important (especially startup time)</li>
<li>Needs easily be compiled on multiple platforms (Linux, Solaris, Win32 (ideally with MinGW), Darwin)</li>
<li>Needs to be a language which will still be around in 5 years time</li>
</ul>
<p>I've looked a little at Python (perhaps too heavy weight?) and Lua (perhaps not focused on string manipulation?) but don't really know enough about them or what other choices might be out there.</p>
http://stackoverflow.com/questions/27578/when-to-choose-checked-and-unchecked-exceptions9When to choose checked and unchecked exceptionsMatt Sheppard2008-08-26T08:45:56Z2009-08-04T12:58:32Z
<p>In Java (or any other language with checked exceptions), when creating your own exception class, how do you decide whether it should be checked or unchecked?</p>
<p>My instinct is to say that a checked exception would be called for in cases where the caller might be able to recover in some productive way, where as an unchecked exception would be more for unrecoverable cases, but I'd be interested in other's thoughts.</p>
http://stackoverflow.com/questions/999418/using-seleniums-waitforcondition-with-an-xpath0Using selenium's waitForCondition with an xpathMatt Sheppard2009-06-16T02:54:57Z2009-07-02T03:44:08Z
<p>Selenium has some nice support for finding elements in a page via xpath</p>
<p><code>selenium.isElementPresent("//textarea")</code></p>
<p>and in ajax pages you can use waitForCondition to wait on a page until something appears</p>
<p><code>selenium.waitForCondition("some_javascript_boolean_test_as_a_string", "5000")</code></p>
<p>My difficulty is, I can't seem to get into a position to use the xpath support for the boolean test. document.getElementById seems to work fine, but selenium.isElementPresent doesn't.</p>
<p>Is there any easy way of accessing selenium's xpath element finding abilities from within waitForCondition's first parameter?</p>
http://stackoverflow.com/questions/25785/delete-all-but-the-most-recent-x-files-in-bash4Delete all but the most recent X files in bashMatt Sheppard2008-08-25T08:37:03Z2009-06-13T12:03:34Z
<p>Is there a simple way, in a pretty standard UNIX environment with bash, to run a command to delete all but the most recent X files from a directory?</p>
<p>To give a bit more of a concrete example, imagine some cron job writing out a file (say, a log file or a tar-ed up backup) to a directory every hour. I'd like a way to have another cron job running which would remove the oldest files in that directory until there are less than, say, 5.</p>
<p>And just to be clear, there's only one file present, it should never be deleted.</p>
http://stackoverflow.com/questions/62153/reasons-not-to-build-your-own-bug-tracking-system17Reasons not to build your own bug tracking systemMatt Sheppard2008-09-15T10:59:42Z2009-06-12T14:43:01Z
<p>Several times now I've been faced with plans from a team that wants to build their own bug tracking system - Not as a product, but as an internal tool.</p>
<p>The arguments I've heard in favous are usually along the lines of :</p>
<ul>
<li>Wanting to 'eat our own dog food' in terms of some internally built web framework</li>
<li>Needing some highly specialised report, or the ability to tweak some feature in some allegedly unique way</li>
<li>Believing that it isn't difficult to build a bug tracking system</li>
</ul>
<p>What arguments might you use to support buying an existing bug tracking system? In particular, what features sound easy but turn out hard to implement, or are difficult and important but often overlooked?</p>
http://stackoverflow.com/questions/41504/timezone-lookup-from-latitude-longitude10Timezone lookup from latitude longitudeMatt Sheppard2008-09-03T11:52:41Z2009-06-11T19:28:23Z
<p>Is there any library (or even better, web service) available which can convert from a latitude/longitude into a time zone?</p>
http://stackoverflow.com/questions/43157/easy-way-to-write-contents-of-a-java-inputstream-to-an-ouptutstream10Easy way to write contents of a Java InputStream to an OuptutStreamMatt Sheppard2008-09-04T03:46:16Z2009-02-12T10:56:38Z
<p>I was surprised to find today that I couldn't track down any simple way to write the contents of an input stream to an output stream in Java. Obviously, the byte buffer code isn't difficult to write, but I suspect I'm just missing something which would make my life easier (and the code clearer).</p>
<p>So, given an InputStream in and an OutputStream out, is there a simpler way to write the following?</p>
<pre><code>byte[] buffer = new byte[1024];
int len = in.read(buffer);
while (len != -1) {
out.write(buffer, 0, len);
len = in.read(buffer);
}
</code></pre>
http://stackoverflow.com/questions/37449/equivalent-to-stax-for-c0Equivalent to StAX for CMatt Sheppard2008-09-01T04:18:59Z2009-02-10T20:45:21Z
<p>I've used the StAX API in Java quite a bit, and find it quite a clean way of dealing with XML files. Is there any equivalent library I could use for performing similar processing in C?</p>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/61138#6113837Answer by Matt Sheppard for What to Learn after C++?Matt Sheppard2008-09-14T04:54:32Z2009-02-09T11:49:49Z<p>Java, C#, Ruby, Python and JavaScript are probably the big choices before you.</p>
<p><a href="http://en.wikipedia.org/wiki/Java_(programming_language)" rel="nofollow">Java</a> and <a href="http://en.wikipedia.org/wiki/C_Sharp" rel="nofollow">C#</a> are not hugely different languages. This big difference you'll find from C++ is memory management (i.e. objects are automatically freed when they are no longer referenced). You would chose these if you were interested in desktop style applications, or keen on static typing (and you'd probably choose between them based on how you feel towards Microsoft and the Windows platform). In both cases you'll find much richer standard libraries than you'll be used to from C++.</p>
<p><a href="http://en.wikipedia.org/wiki/Python_(programming_language)" rel="nofollow">Python</a> and <a href="http://en.wikipedia.org/wiki/Ruby_(programming_language)" rel="nofollow">Ruby</a> take a step away from static typing, into a world where you can call and method on any object (and fail at runtime if it's not there). That is both a blessing (a lot less boilerplate code) and a curse (the compiler can't catch those errors for you anymore). Once again, you'll find they have richer standard libraries, and are higer level again than Java / C#. Performance is the main downfall, with Python being somewhat faster than Ruby as I understand it. To choose between them, you'd probably choose Ruby if you're interesting in web development for the Ruby on Rails framework community, and otherwise go with Python.</p>
<p><a href="http://en.wikipedia.org/wiki/JavaScript" rel="nofollow">JavaScript</a> is even more different from C++ in that it does away with classes entirely. Objects are simply cloned from other objects and can have methods and properties added to them at runtime. Very flexible, but also very easy to make into a total mess. JavaScript is the only real choice if you're interested in running applications in a browser, which is really coming into its own as a platform. You'll find the standard libraries available rather limited if you're not doing a lot with the browser, but there are quite a few good frameworks which fill in some of the gaps.</p>
<p>Some other interesting, though more niche choices are</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Smalltalk" rel="nofollow">Smalltalk</a> - More or less in the Ruby and Python camp, and significantly faster as I understand it. Be careful though _ I've seen lots of good engineers learn Smalltalk and never come back ;)</li>
<li><a href="http://en.wikipedia.org/wiki/Objective-C" rel="nofollow">Objective-C</a> - When C went object oriented, C++ went one way (static typing), and Objective-C went the other (dynamic typing). It's quite Smalltalk inspired, and has a good standard library if you're in Mac / iPhone land. In terms of memory management, unlike everything else I've listed, it's not garbage collected (though that's now an option on Mac OS X 10.5), but it does have a reference counting scheme which makes life significantly simpler than managing memory by hand.</li>
<li><a href="http://en.wikipedia.org/wiki/Lisp_programming_language" rel="nofollow">Lisp</a> - I've never learnt it myself beyond what I needed for minor Emacs hacking. As I understand it, the libraries were nice in their day, but though the language remains supremely elegant, they've fallen a little behind the times.</li>
<li><a href="http://en.wikipedia.org/wiki/Haskell_(programming_language)" rel="nofollow">Haskel</a> - If you wanted a complete break from objects and classes, Haskel and it's functional approach is an interesting way to go (or Lisp as above, or <a href="http://en.wikipedia.org/wiki/F_Sharp_programming_language" rel="nofollow">F#</a> if you are in .Net land). Basically, you're giving up loops and variables in favour of doing everything recursively. Takes some time to wrap your mind around, and probably isn't practical for most real world applications, but it's a good one to learn.</li>
<li><a href="http://en.wikipedia.org/wiki/Eiffel_(programming_language)" rel="nofollow">Eiffel</a> - I love it - Very clean syntax, and designed for serious engineering type systems. Statically types like C# and Java, and with a weaker standard library, but it will make you really think about language and class library design.</li>
<li><a href="http://en.wikipedia.org/wiki/ActionScript" rel="nofollow">ActionScript</a> and <a href="http://en.wikipedia.org/wiki/Adobe_Flex" rel="nofollow">Flex</a> - The programming interface to Flash, which is based on what seems to be a statically typed version of JavaScript. I've played with it a bit, and it's quite slick if you're interested in developing media based applications. You can also push beyond the browser with Flex and into the <a href="http://en.wikipedia.org/wiki/Adobe_Integrated_Runtime" rel="nofollow">Air</a> platform to build real desktop apps.</li>
</ul>
http://stackoverflow.com/questions/27509/detecting-an-undefined-object-property-in-javascript9Detecting an undefined object property in JavaScriptMatt Sheppard2008-08-26T07:25:08Z2009-01-06T12:27:41Z
<p>What's the best way of checking if an object property in JavaScript is undefined?</p>
<p>Sorry, I initially said variable rather than object property. I believe the same == undefined approach doesn't work there.</p>
http://stackoverflow.com/questions/27129/charting-library-for-java-and-net1Charting library for Java and .NetMatt Sheppard2008-08-25T23:51:06Z2008-12-03T21:27:28Z
<p>Can anyone recommend a library for chart generation (bar charts, pie charts etc.) which runs on both Java and .Net?</p>
http://stackoverflow.com/questions/56543/recovering-from-a-slightly-out-of-date-subversion-repository-backup4Recovering from a slightly out of date subversion repository backupMatt Sheppard2008-09-11T13:38:17Z2008-11-14T18:16:43Z
<p>A problem I ran into a while back I never found a good solution for...</p>
<p>Say you have a working copy checked out from subversion at revision 7500, and the disk holding the current repository dies. You've got a backup of the repository at, say, revision 7450. It's easy to restore the repository backup, but any attempt to use the working copy against it gives an error saying that revision 7500 doesn't exist in the repository.</p>
<p>What is the best way to check in one gigantic revision to bring the content of the repository up to match the content of the working copy and get he working copy back to a functional state?</p>
<p>(Ideally I'd like something easier than having to check out a brand new working copy and then copying over all the files manually - I think at the time the working copies were used to configuration manage servers, so it was a real pain to have to check out clean working copies)</p>
http://stackoverflow.com/questions/1768090/what-is-activeperl-doing-when-it-relocates-files-during-installation/1768152#1768152Comment by Matt Sheppard on What is ActivePerl doing when it "relocates" files during installation?Matt Sheppard2009-11-21T12:59:44Z2009-11-21T12:59:44ZYeah, LD_LIBRARY_PATH can work, but I'm thinking more of something I might install onto an end user's system (where LD_LIBRARY_PATH probably would not be acceptable) than a quick hack to get something working for myself. Thanks though.http://stackoverflow.com/questions/1768090/what-is-activeperl-doing-when-it-relocates-files-during-installation/1768345#1768345Comment by Matt Sheppard on What is ActivePerl doing when it "relocates" files during installation?Matt Sheppard2009-11-21T12:57:30Z2009-11-21T12:57:30ZI tried doing something like that by hand once, but ran into trouble if the path was a different length to the original. I guess if you start with a very long path and fill it out with nulls things might go ok...http://stackoverflow.com/questions/1768090/what-is-activeperl-doing-when-it-relocates-files-during-installation/1768345#1768345Comment by Matt Sheppard on What is ActivePerl doing when it "relocates" files during installation?Matt Sheppard2009-11-20T05:37:39Z2009-11-20T05:37:39ZCool - Where could I start in learning how to work out how to do this kind of thing to an arbitrary program?http://stackoverflow.com/questions/1768090/what-is-activeperl-doing-when-it-relocates-files-during-installation/1768164#1768164Comment by Matt Sheppard on What is ActivePerl doing when it "relocates" files during installation?Matt Sheppard2009-11-20T03:49:43Z2009-11-20T03:49:43ZYeah, I guess I'd be interested to know what the elements are, and how to update them. For example, the perl binary seems to pick up some library paths embedded within the binary. I guess there must be some way to fix them as part of the relocation...http://stackoverflow.com/questions/1768090/what-is-activeperl-doing-when-it-relocates-files-during-installation/1768152#1768152Comment by Matt Sheppard on What is ActivePerl doing when it "relocates" files during installation?Matt Sheppard2009-11-20T03:48:15Z2009-11-20T03:48:15ZI'm not sure it "should just work" - at least it doesn't seem to for perl and apache (but does for Java for what it's worth)http://stackoverflow.com/questions/1768090/what-is-activeperl-doing-when-it-relocates-files-during-installation/1768194#1768194Comment by Matt Sheppard on What is ActivePerl doing when it "relocates" files during installation?Matt Sheppard2009-11-20T03:46:20Z2009-11-20T03:46:20ZI'm pretty sure not, as I don't think I'm required to have a C compiler to install it.http://stackoverflow.com/questions/393647/response-content-type-as-csv/393696#393696Comment by Matt Sheppard on Response Content type as CSVMatt Sheppard2009-11-11T02:49:03Z2009-11-11T02:49:03ZCorrected ordering in header value.http://stackoverflow.com/questions/1635041/sqlite-dialect-error-with-hibernate/1639239#1639239Comment by Matt Sheppard on SQLite dialect error with HibernateMatt Sheppard2009-11-09T05:01:19Z2009-11-09T05:01:19ZThanks, query.addScalar("id", Hibernate.STRING); seems to have fixed it.http://stackoverflow.com/questions/1671479/indirect-reference-in-freemarker/1671498#1671498Comment by Matt Sheppard on Indirect reference in FreemarkerMatt Sheppard2009-11-04T03:36:06Z2009-11-04T03:36:06ZThat worked well, thanks.http://stackoverflow.com/questions/1635041/sqlite-dialect-error-with-hibernateComment by Matt Sheppard on SQLite dialect error with HibernateMatt Sheppard2009-10-28T07:08:02Z2009-10-28T07:08:02ZAdded the full stack trace down to the code samplehttp://stackoverflow.com/questions/1635041/sqlite-dialect-error-with-hibernateComment by Matt Sheppard on SQLite dialect error with HibernateMatt Sheppard2009-10-28T07:02:09Z2009-10-28T07:02:09ZIt's being thrown by the uniqueResult line - I'll dig up the stack trace.http://stackoverflow.com/questions/1397724/how-can-a-currently-running-c-program-find-out-what-directory-it-is-located-in/1397754#1397754Comment by Matt Sheppard on How can a currently running C program find out what directory it is located in?Matt Sheppard2009-09-09T05:51:32Z2009-09-09T05:51:32ZThat would work in the first and second case, but not in the third unless I'm mistaken.http://stackoverflow.com/questions/1377469/how-can-i-check-that-a-perl-version-is-not-greater-than-some-valueComment by Matt Sheppard on How can I check that a perl version is not greater than some value?Matt Sheppard2009-09-04T06:18:57Z2009-09-04T06:18:57ZIn my case, I have a system which includes a bunch of compiled libraries which won't work on perl 5.10.http://stackoverflow.com/questions/1003710/how-do-i-install-jetty-wtp-server-adapter-for-eclipse-3-5/1157555#1157555Comment by Matt Sheppard on How do I install Jetty WTP Server Adapter for Eclipse 3.5?Matt Sheppard2009-09-04T00:18:00Z2009-09-04T00:18:00ZThanks - Worked for me.http://stackoverflow.com/questions/1286415/world-map-with-data-display-as-a-heat-map-for-a-web-application/1286462#1286462Comment by Matt Sheppard on World map with data display as a heat map for a web applicationMatt Sheppard2009-08-17T07:08:30Z2009-08-17T07:08:30ZCheers - Can't use a web service I'm afraid (it's for an internal web app where the user may not have external internet access)