Pete Kirkham

12,129
Reputation
882 views

Registered User

Name Pete Kirkham
Member for 1 year
Seen 13 hours ago
Website
Location GB
Age 39
It might look like a spider, but it's a 7000 year old petroglyph from an Irish barrow tomb.
1d
accepted Passing the values to the fraction class in java
1d
comment Does Google’s Go language compute complicated algorithms faster than C++ and C#?
Your example 'algorithm' will be IO limited in any credible language.
Nov
27
answered C# - Multithreading - Sharing Data
Nov
27
comment Class.forName not working in Java RMI call
You'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.
Nov
27
answered Is there equivalent of <? extends T> <? super T> in c++?
Nov
23
awarded  Nice Answer
Nov
20
comment What are the most popular and common excuses of poor programmers?
If 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.
Nov
20
awarded  Nice Answer
Nov
19
answered A more efficient approach to Verbal arithmetic / Alphametics?
Nov
19
answered where can I find graph input resources/files?
Nov
19
accepted How to get this really fast?
Nov
19
revised Efficient queue in Haskell.
prefer existing tags ( algorithm )
Nov
19
revised Calculating distance from latitude, longitude and height using a geocentric co-ordinate system
prefer existing tags ( math )
Nov
19
revised How are float numbers represented in binary string?
prefer existing tags ( math rather than maths is the more useful tag, even though being born in the UK I'd prefer the plural form )
Nov
19
revised What are some good resources on flocking and swarm algorithms?
prefer existing tags ( algorithm )
Nov
19
revised Fastest way to search 1GB+ a string of data for the first occurence of a pattern in Python.
edited tags
Nov
19
revised Discrete Mathematics
prefer existing tags ( algorithm )
Nov
19
comment Is there an iterative way to calculate radii along a scanline?
Adding a test for r < some epsilon and falling back to the sqrt version shouldn't be too much of a change.
Nov
18
awarded  Nice Answer
Nov
18
revised How to get this really fast?
example
Nov
17
answered How to intentionally cause a custom java compiler warning message?
Nov
17
answered How to get this really fast?
Nov
17
answered What design pattern should I use for import/export?
Nov
17
comment What standards do you use?
I 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.
Nov
17
accepted Does WordNet have “levels”? (NLP)
Nov
16
comment What is the best Battleship AI?
If ships weren't sealed, they'd leak.
Nov
16
comment What’s the difference between a parser and a scanner?
-1 parsers do not figure out what tokens mean. syntax != semantics
Nov
16
revised C structs don’t define types?
deleted 17 characters in body
Nov
15
answered C structs don’t define types?
Nov
15
comment C structs don’t define types?
structs are types. The name of the type defined by struct Point {} is "struct Point"
Nov
15
accepted Any differences between the way Bézier curves are interpreted by Cocoa and SVG?
Nov
15
answered Any differences between the way Bézier curves are interpreted by Cocoa and SVG?
Nov
14
accepted Fade in multiple LEDs with Arduino
Nov
14
comment Looking for a Java Graphics alternative
Unless you multi-sample 768 times, it won't be as good antialiasing as pixel-coverage based antialiasing, which is what anti-grain uses
Nov
14
accepted Looking for a Java Graphics alternative
Nov
14
comment concept of class and object
prototype based OO languages and trait based OO languages do not require classes.
Nov
14
answered Looking for a Java Graphics alternative
Nov
10
comment Calculate distance in meters given the difference between two coordinates
asked many times before here - stackoverflow.com/questions/27928
Nov
9
asked Get the correct capitialisation of a filename in dot-net
Nov
9
accepted C: Array with elements varying in size
Nov
9
accepted From arrayList to long[]
Nov
8
comment C: Array with elements varying in size
Because 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.
Nov
8
answered What’s the difference between a derived object and a base object in c++?
Nov
8
revised how to check whether the number ends with 9 or not in numbers 1to 100
added 333 characters in body
Nov
8
revised how to check whether the number ends with 9 or not in numbers 1to 100
added 77 characters in body; added 3 characters in body
Nov
8
comment reversing an array of characters without creating a new array
@Robert if you don't check that condition in for (int start = 0, end = length-1; start < end; ++start,--end) swap(array,start,end); , how will the loop terminate?
Nov
8
comment C#: How would you unit test GetHashCode?
Just because someone else's code fails to produce well distributed hash values doesn't mean it's not a good test for your code.
Nov
8
answered how to check whether the number ends with 9 or not in numbers 1to 100
Nov
8
answered C: Array with elements varying in size
Nov
8
answered From arrayList to long[]