User Pete Kirkham - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T11:26:35Zhttp://stackoverflow.com/feeds/user/1527http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1806618/c-multithreading-sharing-data/1807562#18075620Answer by Pete Kirkham for C# - Multithreading - Sharing DataPete Kirkham2009-11-27T09:02:47Z2009-11-27T09:02:47Z<p>The default behaviour of threads in the same process is to share global storage. </p>
<p>If you don't want shared storage, then the environment provides <a href="http://en.wikipedia.org/wiki/Thread-local%5Fstorage#C.23%5Fand%5Fother%5F.NET%5Flanguages" rel="nofollow">thread local storage</a>.</p>
<p>If you do access shared storage, then you probably need to synchronize access to the storage, either using locks, atomic operations or memory fences. If you forget to do that in any part of the code, it may fail in unpredictable ways.</p>
http://stackoverflow.com/questions/1806964/is-there-equivalent-of-extends-t-super-t-in-c/1807486#18074862Answer by Pete Kirkham for Is there equivalent of <? extends T> <? super T> in c++?Pete Kirkham2009-11-27T08:45:41Z2009-11-27T08:45:41Z<p>You can restrict the range of a template parameter in C++ using the various traits mechanisms, of which there are implementations available in boost.</p>
<p>Usually you don't - the reason the syntax exists in Java and C# is that they use generics, not templates. </p>
<p>Java generics generate shared code which uses virtual dispatch from the base type, rather than generating code for each type used as a template argument. So usually you are using the restriction in order to allow you to call methods on objects of the type used as the template parameter.</p>
<p>As C++ generates code for each type used as a template parameter, it doesn't need to know about a base type for them.</p>
<p>For example, a template class for a matrix will use +,-,* operators on its target type. In can then be used for any type which supports those operators. If it was arbitrarily restricted to <code>double</code>s and <code>int</code>s, then you couldn't use the template with a <code>complex<double></code> or run a test with a type which supports interval arithmetic, even though those types provide those operators, and the matrix library would be valid using them.</p>
<p>The ability to work on arbitrary types which have the same shape is the power of templates, and makes them more useful. It's up to the client code to decide whether or not it's valid to use that template with that type (as long as it compiles), and the customer is always right. The inability to work on arbitrary types which have the same shape, and the requirement to specify restrictions to call methods other than those of <code>java.lang.Object</code> is a weakness of generics. </p>
http://stackoverflow.com/questions/1766268/a-more-efficient-approach-to-verbal-arithmetic-alphametics/1766670#17666700Answer by Pete Kirkham for A more efficient approach to Verbal arithmetic / Alphametics?Pete Kirkham2009-11-19T21:22:59Z2009-11-19T21:22:59Z<p>That class of problem is the poster child for query optimisation. Java isn't for that.</p>
<p>If you have fewer than a few tens of billion states, brute force it. It will take <em>much</em> less time to run a brute force search than it would to create an optimising query engine. </p>
http://stackoverflow.com/questions/1766277/where-can-i-find-graph-input-resources-files/1766655#17666551Answer by Pete Kirkham for where can I find graph input resources/files?Pete Kirkham2009-11-19T21:19:24Z2009-11-19T21:19:24Z<p>RDF datasets are graphs, try <a href="http://www.rdfdata.org/data.html" rel="nofollow">rdfdata.org</a>, <a href="http://wiki.dbpedia.org/Downloads32" rel="nofollow">dbpedia</a> which is wikipedia in RDF, the <a href="http://swat.cse.lehigh.edu/projects/lubm/" rel="nofollow">LUBM</a> graph benchmark, or a <a href="http://vmlion25.deri.ie/" rel="nofollow">really big one</a> (currently down at 2009-11-19 21:18 GMT).</p>
<p>Also <a href="http://wordnet.princeton.edu/" rel="nofollow">wordnet</a> is a graph.</p>
http://stackoverflow.com/questions/1752526/how-to-get-this-really-fast/1752604#17526041Answer by Pete Kirkham for How to get this really fast?Pete Kirkham2009-11-17T23:27:18Z2009-11-18T01:20:42Z<p>Instead of creating your context using <code>new Context(Mode.Cached))</code>, have a factory method which creates a context. Then implement your two behaviours in two different classes which share whatever they need of an abstract super type. Use aspects and reflection to solve problems which don't have a simple direct solution.</p>
<p><hr></p>
<p>replace</p>
<pre><code>[FMEntityAttribute(PlayerOffsets.Ca)] public Int16 CA { get; }
</code></pre>
<p>with</p>
<pre><code>public Int16 CA { get { return PlayerAttrs.Ca.Get(this); } }
</code></pre>
<p>where <code>PlayerAttrs</code> has an operator Int16 to convert itself to Int16 on demand,has the offset required, and performs the appropriate cached/non-cached lookup. </p>
http://stackoverflow.com/questions/1752607/how-to-intentionally-cause-a-custom-java-compiler-warning-message/1752657#17526570Answer by Pete Kirkham for How to intentionally cause a custom java compiler warning message?Pete Kirkham2009-11-17T23:37:06Z2009-11-17T23:37:06Z<p>Create your own @Hacky annotation.</p>
http://stackoverflow.com/questions/1752298/what-design-pattern-should-i-use-for-import-export/1752392#17523920Answer by Pete Kirkham for What design pattern should I use for import/export?Pete Kirkham2009-11-17T22:40:29Z2009-11-17T22:40:29Z<p>If the vCal format is updated, you will have to change whatever code you have written whichever design pattern you use (unless they decide to switch to something like ASN.1 where upgrades are baked in).</p>
<p>I would create a format interface with import and export methods, and possibly metadata and methods for testing whether a random bit of XML is likely to be that format. Then for each different format, you have an object which implements that interface. This is sort of a 'strategy design pattern', but each format represents several strategies for doing a cohesive set of things (import,export,detection) rather than having separate strategy objects. </p>
http://stackoverflow.com/questions/1737710/c-structs-dont-define-types/1739356#17393563Answer by Pete Kirkham for C structs don't define types?Pete Kirkham2009-11-15T23:55:37Z2009-11-16T00:01:57Z<p>In C there is no confusion between </p>
<pre><code>struct Point {
int x;
int y;
};
</code></pre>
<p>and</p>
<pre><code>union Point {
int x;
int y;
};
</code></pre>
<p>which are two different types called <code>struct Point</code> and <code>union Point</code> respectively.</p>
<p>The C99 standard section 6.7.2.1 states:</p>
<blockquote>
<p>6 Structure and union specifiers have
the same form. The keywords <code>struct</code> and
<code>union</code> indicate that the type being
specified is, respectively, a
structure type or a union type.</p>
<p>7 The
presence of a struct-declaration-list
in a struct-or-union-specifier
declares a new type, within a
translation unit.</p>
</blockquote>
<p>So it most unequivocally declares a type. The syntax for type names in C is given in sections 6.7.6 and includes the <em>specifier-qualifier-list</em> from 6.7.2, which takes the form of <code>struct-or-union identifier</code>. </p>
<blockquote>
<p>Does this code works in C99? Or is this a "C++ thing"?</p>
</blockquote>
<p>No, C99 does not decide to promote structure types over enum types and union types with the same name. It is a "C++ thing", as struct and classes are mostly the same thing in C++, and classes are important to C++.</p>
http://stackoverflow.com/questions/1737465/any-differences-between-the-way-bezier-curves-are-interpreted-by-cocoa-and-svg/1737692#17376924Answer by Pete Kirkham for Any differences between the way Bézier curves are interpreted by Cocoa and SVG?Pete Kirkham2009-11-15T14:45:25Z2009-11-15T14:45:25Z<p>SVG curve to command is control point, control point, end point.</p>
<p>Cocoa curveToPoint method takes end point, control point 1, control point 2</p>
http://stackoverflow.com/questions/1734522/looking-for-a-java-graphics-alternative/1734542#17345423Answer by Pete Kirkham for Looking for a Java Graphics alternativePete Kirkham2009-11-14T15:22:04Z2009-11-14T15:22:04Z<p><a href="http://www.antigrain.com/" rel="nofollow">Anti-Grain geometry</a> gives high quality 2D rendering from path and font primitives, is a good example of idiomatic use of templates in C++, and looks fantastic. It has more documentation on the algorithms than on the API, so be prepared to look at the examples for how to use it. It requires some OS specific code to take the in-memory bitmap and blit it onto the screen. The other disadvantage is that when you next look at Java 2D or GDI+ applications you'll think <em>Ewww</em> as they're so badly rendered.</p>
http://stackoverflow.com/questions/1703820/get-the-correct-capitialisation-of-a-filename-in-dot-net0Get the correct capitialisation of a filename in dot-netPete Kirkham2009-11-09T21:08:02Z2009-11-09T21:08:02Z
<p>I've got a section of a ClearCase VOB which has been copied to another VOB for testing scripts to move a mass of interlinked XML files into separate VOBs for each team which is working on them. For some reason, in the copy the paths have all become lower case, but the capitalisation of the references in the XML is still as it was.</p>
<p>When I pass a path from the XML to ClearCase COM automation from C#, if the path's capitalisation does not match that of the version in the VOB I get an exception.</p>
<p>Neither <code>FileInfo.FullPath</code> or <code>Uri.AbsolutePath</code> give the path as it is in the file system; both give the capitalised form - is there anything in .net to get it, or do I have to list all files in the directory?</p>
http://stackoverflow.com/questions/1697020/whats-the-difference-between-a-derived-object-and-a-base-object-in-c/1697028#16970281Answer by Pete Kirkham for What's the difference between a derived object and a base object in c++?Pete Kirkham2009-11-08T16:21:47Z2009-11-08T16:21:47Z<p>a <code>public</code> colon. ( I told you C++ was nasty )</p>
<pre><code>class base { }
class derived : public base { }
</code></pre>
http://stackoverflow.com/questions/1696896/how-to-check-whether-the-number-ends-with-9-or-not-in-numbers-1to-100/1696916#16969161Answer by Pete Kirkham for how to check whether the number ends with 9 or not in numbers 1to 100Pete Kirkham2009-11-08T15:43:18Z2009-11-08T16:18:45Z<pre><code>if ( x == 0x09 || x == 0x13 || x == 0x1d || x == 0x27 || x == 0x31 || x == 0x3b || x == 0x45 || x == 0x4f || x == 0x59 || x == 0x63 )
</code></pre>
<p>or</p>
<pre><code>if ( strchr( "\x09\x13\x1d\x27\x31\x3b\x45\x4f\x59\x63", x ) )
</code></pre>
<p><hr></p>
<p>For those with no sense of the ridiculous, why are these more insane than <code>x%10 == 9</code> ? in <code>x%10==9</code> you have introduced two magic numbers rather than several, and turned a structured problem with no conditional behaviour (print rows, each row having columns) into a single loop with conditional behaviour.</p>
http://stackoverflow.com/questions/1696824/c-array-with-elements-varying-in-size/1696892#16968926Answer by Pete Kirkham for C: Array with elements varying in sizePete Kirkham2009-11-08T15:36:28Z2009-11-08T15:36:28Z<p>If you don't like casts, you can always used unions ( and a flag to indicate which type the union should be interpreted as )</p>
<pre><code>#include <stdio.h>
typedef struct {
int a;
} A;
typedef struct B {
double b;
} B;
typedef struct C {
char c[20];
} C;
typedef enum {
TypeA,
TypeB,
TypeC,
} type;
typedef struct {
type type;
union { A*a; B*b; C*c; } p;
} TypedPointer ;
void foreach (TypedPointer* list, void (*fn)(TypedPointer))
{
while (list->p.a) {
fn(*list);
++list;
}
}
void print_member (TypedPointer ptr)
{
switch (ptr.type) {
case TypeA: printf("A (%d)\n", ptr.p.a->a); break;
case TypeB: printf("B (%f)\n", ptr.p.b->b); break;
case TypeC: printf("C (%s)\n", ptr.p.c->c); break;
}
}
int main ()
{
A a = { .a = 42 };
B b = { .b = 1.01 };
C c = { .c = "Hello World!" };
TypedPointer ptrs[] = {
{ .type = TypeA, .p.a = &a },
{ .type = TypeB, .p.b = &b },
{ .type = TypeC, .p.c = &c },
{ .type = 0, .p.a = 0} };
foreach(ptrs, print_member);
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1696791/from-arraylist-to-long/1696830#16968301Answer by Pete Kirkham for From arrayList to long[]Pete Kirkham2009-11-08T15:14:56Z2009-11-08T15:14:56Z<p>Because of the dichotomy between primitives and objects in Java, you can't use the generic list <code>List<Long>.toArray(Long[])</code> to build a primitive array as the result. There are primitive collections which can be used, but either way - using a list or working over the groups - you're copying data from a temporary storage to a primitive array.</p>
<p>So either of the ways you suggest is about as good as each other. If it's performance sensitive, profile both and choose the best for your regex.</p>
http://stackoverflow.com/questions/1696086/whats-the-best-way-to-get-the-length-of-the-decimal-representation-of-an-int-in/1696563#16965630Answer by Pete Kirkham for What's the best way to get the length of the decimal representation of an int in C++?Pete Kirkham2009-11-08T13:35:24Z2009-11-08T15:03:55Z<p>If you're using a version of C++ which include C99 maths functions (C++0x and some earlier compilers)</p>
<pre><code>static const double log10_2 = 3.32192809;
int count_digits ( int n )
{
if ( n == 0 ) return 1;
if ( n < 0 ) return ilogb ( -(double)n ) / log10_2 + 2;
return ilogb ( n ) / log10_2 + 1;
}
</code></pre>
<p>Whether ilogb is faster than a loop will depend on the architecture, but it's useful enough for this kind of problem to have been added to the standard.</p>
http://stackoverflow.com/questions/1696637/how-is-frequency-multiplexing-implemented/1696650#16966502Answer by Pete Kirkham for How is frequency multiplexing implemented?Pete Kirkham2009-11-08T13:52:32Z2009-11-08T13:52:32Z<p>No, it won't. If you're talking about electromagnetic media, think about what happens if you combine red, green and blue light. You can vary the amounts of each frequency independently, different frequencies do not interfere, and the receiver (your eyes when you're looking at this screen) filters the different frequencies out and responds to each individually.</p>
<p>The same happens when you tune a radio to a specific frequency - it is a <em>selective</em> receiver, so only gets the one signal.</p>
http://stackoverflow.com/questions/1696141/design-for-tree/1696633#16966330Answer by Pete Kirkham for design for treePete Kirkham2009-11-08T13:46:11Z2009-11-08T13:46:11Z<p>Design patterns describe how components relate together to achieve some function. If you have a problem creating a functional feature, you can go to a design pattern which tells you how some components relate to create that feature. You then create an implementation of the pattern. For the composite pattern, you could select a binary tree or a red-black tree or a b-tree, or reify the composite/part relation to a map or database. They are all implementations of the composite pattern.</p>
<p>A binary tree might be an idiom to use for the implementation of a pattern, asking which patterns to use to implement it inverts the abstraction. It's like asking which metaphors to use when spelling 'octopus'.</p>
<p>Not knowing which language you're working with, I'd guess that a union type</p>
<pre><code>Tree[T] = Empty | Branch(left:Tree,right:Tree) | Leaf(value:T)
</code></pre>
<p>is the simplest implementation.</p>
http://stackoverflow.com/questions/1695971/does-wordnet-have-levels-nlp/1695983#16959835Answer by Pete Kirkham for Does WordNet have "levels"? (NLP)Pete Kirkham2009-11-08T10:34:12Z2009-11-08T11:29:35Z<p>WordNet is a lexicon rather than an ontology, so 'levels' don't really apply.</p>
<p>There is <a href="http://www.ontologyportal.org/" rel="nofollow">SUMO</a>, which is an upper ontology which relates to WordNet if you want a directed lattice instead of a network. </p>
<p>For some domains, SUMO's mid-level ontology is probably where you want to look, but I'm not sure it has 'mexican wrapped food', as most of its topics are scientific or engineering.</p>
<p>WordNet's hierarchy is</p>
<pre><code>beef burrito < burrito < dish/2 < victuals < food < substance < entity.
</code></pre>
<p>Entity is a top-level concept, so if you stop one-below substance you'll get burrito isa food. You can calculate a level based on that, but it wont' necessarily be as consistent as SUMO, or generate your own set of useful mid-level concepts to terminate at. There is no 'mexican wrapped food' step in WordNet. </p>
http://stackoverflow.com/questions/1695969/should-i-switch-to-java-from-c/1696017#16960170Answer by Pete Kirkham for Should I switch to Java from C#?Pete Kirkham2009-11-08T10:51:48Z2009-11-08T10:51:48Z<p>I've been doing a bit of C# GUIs for the last few weeks, having a background with Swing, GTK, MFC and Win32. Java Swing is about the worst for getting an acceptable UI on Windows. You end up doing an awful lot to get simple idioms such as split buttons working, which are built-in to the platform, and you don't have the simplicity that you get with GTK + C function pointers. Similarly, if you want a native GUI on linux use GTK (either python or C) and on OS X use objective C. </p>
<p>Java Swing GUIs seem to be much more effort than other toolkits, without either the performance of OpenGL, the render quality of antigrain, or a native look and feel, so have for got squeezed out by C at the performance end, Python+GTK at the quick-and-dirty end and C# for native look. With Visual Studio, it's very quick and easy to create UIs, as fast as Python. If you know Java and Win32, C# + Windows.Forms is a doddle.</p>
<p>Almost all the web development I've done since the last '90s has been Java; it's more likely than you will want to run a web server on a non-windows machine, and I've not seen a reason to change that. Traditionally, Java web servers and the JVM have been considered better, but trying to find meaningful comparisons is tricky.</p>
http://stackoverflow.com/questions/1695889/what-is-shared-variable-in-java/1695946#16959460Answer by Pete Kirkham for what is shared variable in javaPete Kirkham2009-11-08T10:12:51Z2009-11-08T10:12:51Z<p>In the <a href="http://msdn.microsoft.com/en-us/library/aa711968%28VS.71%29.aspx" rel="nofollow">VB sense</a>, a <a href="http://java.sun.com/docs/books/tutorial/java/javaOO/classvars.html" rel="nofollow">static field</a> in Java is shared by all instances of the class.</p>
<p>In the <a href="http://en.wikipedia.org/wiki/APL%5FShared%5FVariables" rel="nofollow">classical sense</a>, Java has various RPC, service and database access mechanisms.</p>
http://stackoverflow.com/questions/1695807/why-c-cs-pragmaonce-isnt-an-iso-standard/1695910#16959102Answer by Pete Kirkham for Why C/C++'s #pragma_once isn't an ISO standard?Pete Kirkham2009-11-08T09:55:56Z2009-11-08T09:55:56Z<blockquote>
<p>The problem occurs when you have headers with the same filename in different directories. </p>
</blockquote>
<p>So you have two headers which are both called <code>ice_cream_maker.h</code> in your project, both of which have a class called <code>ice_cream_maker</code> defined in them which performs the same function? Or are you calling every class in your system <code>foo</code>? </p>
<blockquote>
<p>Nevertheless definition is included once, compiler still opens header every time it meets header inclusion.</p>
</blockquote>
<p>Edit the code so you don't include headers multiple times. </p>
<p>For dependent headers (rather than the main header for a library), I often use header guards which are like this:</p>
<pre><code>#ifdef FOO_BAR_BAZ_H
#error foo_bar_baz.h multiply included
#else
#define FOO_BAR_BAZ_H
// header body
#endif
</code></pre>
http://stackoverflow.com/questions/1692814/exception-handling-in-c-what-is-the-use-of-setjmp-returning-0/1692864#16928644Answer by Pete Kirkham for Exception Handling in C - What is the use of setjmp() returning 0?Pete Kirkham2009-11-07T12:25:38Z2009-11-07T20:58:58Z<p>The C99 spec gives:</p>
<blockquote>
<p>If the return is from a direct invocation, the setjmp macro returns the value zero. If the
return is from a call to the longjmp function, the setjmp macro returns a nonzero
value.</p>
</blockquote>
<p>So the answer to 1 is that a zero indicates you have called <code>setjmp</code> the first time, and non-zero indicates it is returning from a <code>longjmp</code>.</p>
<ol>
<li><p>It pushes the current program state. After a longjmp, the state is restored, control returns to the point it was called, and the return value is non-zero.</p></li>
<li><p>There are no exceptions in C. It's sort-of similar to <code>fork</code> returning different values depending whether you're in the original process, or a second process which has inherited the environment, if you're familiar with that.</p></li>
<li><p><code>try</code>/<code>catch</code> in C++ will call destructors on all automatic objects between the throw and the catch. <code>setjmp</code>/<code>longjmp</code> will not call destructors, as they don't exist in C. So you are on your own as far as calling <code>free</code> on anything you've <code>malloc</code>ed in the mean time.</p></li>
</ol>
<p>With that proviso, this:</p>
<pre><code>#include <stdio.h>
#include <setjmp.h>
#include <string.h>
#include <stdlib.h>
void foo ( char** data ) ;
void handle ( char* data ) ;
jmp_buf env;
int main ()
{
char* data = 0;
int res = setjmp ( env );
// stored for demo purposes.
// in portable code do not store
// the result, but test it directly.
printf ( "setjmp returned %d\n", res );
if ( res == 0 )
foo ( &data );
else
handle ( data );
return 0;
}
void foo ( char** data )
{
*data = malloc ( 32 );
printf ( "in foo\n" );
strcpy ( *data, "Hello World" );
printf ( "data = %s\n", *data );
longjmp ( env, 42 );
}
void handle ( char* data )
{
printf ( "in handler\n" );
if ( data ) {
free ( data );
printf ( "data freed\n" );
}
}
</code></pre>
<p>is roughly equivalent to </p>
<pre><code>#include <iostream>
void foo ( ) ;
void handle ( ) ;
int main ()
{
try {
foo ();
} catch (int x) {
std::cout << "caught " << x << "\n";
handle ();
}
return 0;
}
void foo ( )
{
printf ( "in foo\n" );
std::string data = "Hello World";
std::cout << "data = " << data << "\n";
throw 42;
}
void handle ( )
{
std::cout << "in handler\n";
}
</code></pre>
<p>In the C case, you have to do explicit memory management (though normally you'd free it in the function which malloc'd it before calling longjmp as it makes life simpler)</p>
http://stackoverflow.com/questions/1692863/what-is-the-difference-between-identity-and-equality-in-oop/1692889#16928891Answer by Pete Kirkham for What is the difference between identity and equality in OOP?Pete Kirkham2009-11-07T12:32:26Z2009-11-07T12:32:26Z<p>In Java and similar languages which 'leak' the abstraction of a reference of an object, you can test whether two references refer to the same object. If they refer to the same object, then the references are identical. In Java, this is the <code>==</code> operator. </p>
<p>There is also an <code>equals</code> method which is used to test whether two objects have the same value, for example when used as keys of a <code>HashSet</code> (the hash code of equal objects should also be equal). Equal objects should have the same 'value' and semantics when used by client code.</p>
<p>Purer object-oriented languages do not have an identity comparison, as client code generally shouldn't care whether or not two objects have the same memory address. If objects represent the same real-world entity, then that is better modelled using some ID or key value rather than identity, which then becomes part of the equals contract. Not relying on the memory address of the object to represent real-world identity simplifies caching and distributed behaviour, and suppressing <code>==</code> would remove a host of bugs in string comparison or some uses of boxing of primitives in Java.</p>
http://stackoverflow.com/questions/1692678/comparing-objects/1692753#16927530Answer by Pete Kirkham for comparing objectsPete Kirkham2009-11-07T11:27:13Z2009-11-07T11:48:09Z<p>If the marks are in a small range (A-F rather than percent), and you need to compare marks in many subjects rather than the three you give, populate an array of boolean values to hold whether the first student has the given mark, then for the second check whether the array has a value set. That would be O(N+M) where N is the number of subjects and M the number of possible grades.</p>
<p>If you only have the three subjects, having the tests hard coded isn't that bad - you'll need six lines to get the marks from each anyway.</p>
http://stackoverflow.com/questions/1692751/is-it-worth-getting-an-msc-in-computer-science/1692773#16927731Answer by Pete Kirkham for Is it worth getting an MSc in Computer Science?Pete Kirkham2009-11-07T11:34:13Z2009-11-07T11:34:13Z<p>Do an MSc, but only do one in computer science if you want to be a computer scientist.</p>
<p>I did a MSc called "<a href="http://www.cranfield.ac.uk/students/courses/page1252.jsp" rel="nofollow">software techniques for computer aided engineering</a>" at Cranfield following a first degree in <a href="http://www.eng.cam.ac.uk/prospectus/eist.html" rel="nofollow">electronics and information engineering</a>. I also study pure mathematics as a bit of a hobby, and have done a couple of Open University modules in it over the years. </p>
<p>If there is an equivalent software engineering for audio MSc, where you will study techniques which are useful and applicable to the field you want to work in, it's probably well worth doing that rather than a computer science degree.</p>
http://stackoverflow.com/questions/1689812/why-do-you-have-to-cons-with-a-null-to-get-a-proper-list-in-scheme/1690023#16900231Answer by Pete Kirkham for Why do you have to cons with a null to get a proper list in scheme?Pete Kirkham2009-11-06T20:03:41Z2009-11-06T20:03:41Z<p>Lisps, including Scheme, are dynamically typed, and 'the lisp way' is to have many functions over a single data structure rather than different data structures for different tasks.</p>
<p>So the question "What's the point of requiring the null at the end of the list?" isn't quite the right one to ask. </p>
<p>The <code>cons</code> function does not require you to give a <code>cons</code> object or <code>nil</code> as its second argument. If the second argument is not a <code>cons</code> object or <code>nil</code>, then you get a pair rather than a list, and the runtime doesn't print it using list notation but with a dot. </p>
<p>So if you want to construct something which is shaped like a list, then give <code>cons</code> a list as its second argument. If you want to construct something else, then give <code>cons</code> something else as its second argument.</p>
<p>Pairs are useful if you want a data structure that has exactly two values in it. With a pair, you don't need the nil at the end to mark its length, so it's a bit more efficient. A list of pairs is a simple implementation of a map of key to value; common lisp has functions to support such property lists as part of its standard library.</p>
<p>So the real question is "why can you construct both pairs and lists with the same <code>cons</code> function?", and the answer is "why have two data structures when you only need one?"</p>
http://stackoverflow.com/questions/1685239/finding-the-most-frequent-subtrees-in-a-collection-of-parse-trees/1687392#16873922Answer by Pete Kirkham for Finding the most frequent subtrees in a collection of (parse) treesPete Kirkham2009-11-06T12:50:40Z2009-11-06T12:50:40Z<p>Finding the most frequent subtrees in the collection, create a compact form of the subtree, then iterate every subtree and use a hashset to count their occurrences. 30 nodes is too big for a perfect hash - it's only about one bit per node, and you need that much to indicate whether it's a sibling or a child.</p>
<p>That problem isn't LCS - the most common sequence isn't related to the longest common subsequence. The most frequent subtree is that which occurs the most. </p>
<p>It should be at worst case O(N L^2) for N trees of length L (assuming testing equality of a subtree containing L nodes is O(L)). </p>
http://stackoverflow.com/questions/1686406/dependency-injection-and-generic-collections/1686820#16868200Answer by Pete Kirkham for Dependency Injection and Generic CollectionsPete Kirkham2009-11-06T10:47:17Z2009-11-06T10:47:17Z<p>Given that you've defined the repository interface as returning a specific type, why do you think it's pointless to give the type you're expecting it to return in client code? </p>
<p>It's only pointless if you don't care the return type,but then the whole generic interface design is pointless. </p>
<p>If you want a repository object to only work with the specified type, then you will need three objects (or possibly an object with three interfaces, depending on implementation language) to provide your project repository, batch repository and task repository.</p>
http://stackoverflow.com/questions/1421520/formatting-doubles-for-output-in-c11Formatting doubles for output in C#Pete Kirkham2009-09-14T13:23:38Z2009-11-03T14:07:44Z
<p>Running a quick experiment related to <a href="http://stackoverflow.com/questions/1420752/is-double-multiplication-broken-in-net">Is double Multiplication Broken in .NET?</a> and reading a couple of articles on C# string formatting, I thought that this:</p>
<pre><code>{
double i = 10 * 0.69;
Console.WriteLine(i);
Console.WriteLine(String.Format(" {0:F20}", i));
Console.WriteLine(String.Format("+ {0:F20}", 6.9 - i));
Console.WriteLine(String.Format("= {0:F20}", 6.9));
}
</code></pre>
<p>Would be the C# equivalent of this C code:</p>
<pre><code>{
double i = 10 * 0.69;
printf ( "%f\n", i );
printf ( " %.20f\n", i );
printf ( "+ %.20f\n", 6.9 - i );
printf ( "= %.20f\n", 6.9 );
}
</code></pre>
<p>However the C# produces the output:</p>
<pre><code>6.9
6.90000000000000000000
+ 0.00000000000000088818
= 6.90000000000000000000
</code></pre>
<p><em>despite i showing up equal to the value 6.89999999999999946709 (rather than 6.9) in the debugger.</em></p>
<p>compared with C which shows the precision requested by the format:</p>
<pre><code>6.900000
6.89999999999999946709
+ 0.00000000000000088818
= 6.90000000000000035527
</code></pre>
<p>What's going on?</p>
<p>( Microsoft .NET Framework Version 3.51 SP1 / Visual Studio C# 2008 Express Edition )</p>
<p><hr /></p>
<p>I have a background in numerical computing and experience implementing interval arithmetic - a technique for estimating errors due to the limits of precision in complicated numerical systems - on various platforms. To get the bounty, don't try and explain about the storage precision - in this case it's a difference of one ULP of a 64 bit double. </p>
<p>To get the bounty, I want to know how (or whether) .Net can format a double to the requested precision as visible in the C code. </p>
http://stackoverflow.com/questions/1806658/class-forname-not-working-in-java-rmi-callComment by Pete Kirkham on Class.forName not working in Java RMI callPete Kirkham2009-11-27T08:53:49Z2009-11-27T08:53:49ZYou've put a comment on TofuBeer's answer that it's correct, but you haven't accepted it - click on the tick next to the answer.http://stackoverflow.com/questions/1769091/what-are-the-most-popular-and-common-excuses-of-poor-programmers/1769172#1769172Comment by Pete Kirkham on What are the most popular and common excuses of poor programmers?Pete Kirkham2009-11-20T11:31:24Z2009-11-20T11:31:24ZIf you don't know the language and environment, you'll write non-idiomatic code and reimplement library functions. I don't think that a good Haskell programmer will write good VB6 code.http://stackoverflow.com/questions/1423918/is-there-an-iterative-way-to-calculate-radii-along-a-scanline/1424074#1424074Comment by Pete Kirkham on Is there an iterative way to calculate radii along a scanline?Pete Kirkham2009-11-19T00:56:06Z2009-11-19T00:56:06ZAdding a test for r < some epsilon and falling back to the sqrt version shouldn't be too much of a change.http://stackoverflow.com/questions/1751662/what-standards-do-you-use/1751688#1751688Comment by Pete Kirkham on What standards do you use?Pete Kirkham2009-11-17T21:23:21Z2009-11-17T21:23:21ZWhat's the ISO number for that?http://stackoverflow.com/questions/1751662/what-standards-do-you-useComment by Pete Kirkham on What standards do you use?Pete Kirkham2009-11-17T20:51:47Z2009-11-17T20:51:47ZI don't think so. standards have much more to do with engineering - they are artefacts created by communities to solve specific problems which usually represent a compromise - rather than computer science.http://stackoverflow.com/questions/1631414/what-is-the-best-battleship-ai/1646340#1646340Comment by Pete Kirkham on What is the best Battleship AI?Pete Kirkham2009-11-16T00:19:30Z2009-11-16T00:19:30ZIf ships weren't sealed, they'd leak.http://stackoverflow.com/questions/1739175/whats-the-difference-between-a-parser-and-a-scanner/1739201#1739201Comment by Pete Kirkham on What's the difference between a parser and a scanner?Pete Kirkham2009-11-16T00:07:34Z2009-11-16T00:07:34Z-1 parsers do not figure out what tokens mean. syntax != semanticshttp://stackoverflow.com/questions/1737710/c-structs-dont-define-types/1737725#1737725Comment by Pete Kirkham on C structs don't define types?Pete Kirkham2009-11-15T15:19:14Z2009-11-15T15:19:14Zstructs are types. The name of the type defined by struct Point {} is "struct Point"http://stackoverflow.com/questions/1734522/looking-for-a-java-graphics-alternative/1734609#1734609Comment by Pete Kirkham on Looking for a Java Graphics alternativePete Kirkham2009-11-14T17:27:36Z2009-11-14T17:27:36ZUnless you multi-sample 768 times, it won't be as good antialiasing as pixel-coverage based antialiasing, which is what anti-grain useshttp://stackoverflow.com/questions/1734463/concept-of-class-and-object/1734475#1734475Comment by Pete Kirkham on concept of class and objectPete Kirkham2009-11-14T15:26:34Z2009-11-14T15:26:34Zprototype based OO languages and trait based OO languages do not require classes.http://stackoverflow.com/questions/1711304/calculate-distance-in-meters-given-the-difference-between-two-coordinatesComment by Pete Kirkham on Calculate distance in meters given the difference between two coordinatesPete Kirkham2009-11-10T21:35:02Z2009-11-10T21:35:02Zasked many times before here - <a href="http://stackoverflow.com/questions/27928" rel="nofollow">stackoverflow.com/questions/27928</a>http://stackoverflow.com/questions/1696824/c-array-with-elements-varying-in-size/1696892#1696892Comment by Pete Kirkham on C: Array with elements varying in sizePete Kirkham2009-11-08T17:18:00Z2009-11-08T17:18:00ZBecause in your OP, you said you had an a array of pointers to different structs. You can do it using a union of the structs directly, though that may also waste space as the union will be the size of the largest member.http://stackoverflow.com/questions/1696323/reversing-an-array-of-characters-without-creating-a-new-array/1696365#1696365Comment by Pete Kirkham on reversing an array of characters without creating a new array Pete Kirkham2009-11-08T16:07:08Z2009-11-08T16:07:08Z@Robert if you don't check that condition in <code>for (int start = 0, end = length-1; start < end; ++start,--end) swap(array,start,end);</code> , how will the loop terminate?http://stackoverflow.com/questions/1696881/c-how-would-you-unit-test-gethashcode/1696897#1696897Comment by Pete Kirkham on C#: How would you unit test GetHashCode?Pete Kirkham2009-11-08T15:46:28Z2009-11-08T15:46:28ZJust because someone else's code fails to produce well distributed hash values doesn't mean it's not a good test for your code.http://stackoverflow.com/questions/1696791/from-arraylist-to-long/1696802#1696802Comment by Pete Kirkham on From arrayList to long[]Pete Kirkham2009-11-08T15:13:15Z2009-11-08T15:13:15ZThere is no such method (<code>toArray(Long[])</code> doesn't accept <code>long[]</code>)