Dan

1,592
Reputation
223 views

Registered User

Name Dan
Member for 1 year
Seen 2 days ago
Website
Location Dublin, Ireland
Age 24
Working in telecommunications. Interested in operating systems, programming languages, human computer interfacing, virtual & augmented reality and python. And killbots, everyone loves killbots.
2d
comment How does one start a thread in Clojure?
Dont forget the likes of pmap!
2d
answered Representing A Tree in Clojure
2d
revised Can you implement lazy array access in QtScript?
added 1 characters in body
2d
asked Can you implement lazy array access in QtScript?
Nov
16
revised How do modern optimizing compilers determine when to optimize?
added 400 characters in body
Nov
16
asked How do modern optimizing compilers determine when to optimize?
Nov
3
revised Do you plan on using the factor programming language?
added 471 characters in body
Nov
3
comment Do you plan on using the factor programming language?
Interestingly enough, I took another look at Clojure since and... I love it! You were totally right, its a great language and theres a good chance I'll be suing it for my projects now. :-P
Sep
24
awarded  Yearling
Sep
22
awarded  Nice Answer
Sep
3
comment C++ explanation & uses of public, private & protected inheritance
Thats what I thought. Maybe I shoulda not said anything and not deleted my comment and vote whored :-D +1 anyway, for an easy to follow answer.
Sep
3
comment Is C++ showing its age as programmers try to use it in ways it was never designed to be used?
Dunno about call stack, but certainly a hierarchy of templated types to give a single type signature...
Sep
3
comment C++ explanation & uses of public, private & protected inheritance
Is private correct? Would the public members not be accessable from D, just not from outside D or D's derived classes?
Sep
3
asked Eclipse, regular expression search and replace
Aug
18
awarded  Notable Question
Jul
30
comment Dataflow Programming Languages
"Spreadsheets propagate values, not constraints." Yes, the flow of values is what makes it "dataflow".
Jul
30
comment How to get the id of a bean from inside the bean in Spring?
I wanted this because each instance has a name parameter that I need for printing out statistics and since i had to set the bean name anyway, I wanted to be able to just set one. This lets me do that (and the name in Java code is not used to access Spring). I can see where this may introduce problems if the name is used to access the application context.
Jul
30
comment What program should I use to mock up GUIs?
That looks good. Pity its not free, but I'll check it out anyway.
Jul
29
comment What’s your most controversial programming opinion?
@Daniel: Both solutions were correct and robust. The second solution used better data structures (one big win was replacing lists with tables so I went from O(n) to O(1) in that part of the code). This was, unfortunately, only possible because I could profile the code, so the first version wasn't a TOTAL waste of time and see which parts were inefficient. Would have been hard to do it that way from the start. But, yes, I do wish I wrote it that way in the first place. Would have saved me about a day...
Jul
29
comment What is the optimal length for an email address in a database?
Heres one that seems likely to be real and its 31 character: michael dot peterson at googlemail dot com (spaces, changed @ etc added cause this could be a real address). Basically, don't make assumptions, always code to the limits defined in whatever specification because you can never be completely sure otherwise.
Jul
29
comment How to get the id of a bean from inside the bean in Spring?
Thank you! Exactly what I was looking for.
Jul
29
asked How to get the id of a bean from inside the bean in Spring?
Jul
27
comment Why is software quality so problematic?
@David: I disagree with your comment. Software and hardware are really not so different. Or rather, they needn't be. The problem here is the temporally sequential code used in MOST programming languages vs the routing of data through a flat hierarchial network. The former is difficult & complex because you must keep the entire code in mind due to strict ordering, also, if you program concurrent systems, you have multiple "streams" of ordering to keep in mind. The software is also stacked; you cannot change one part without it affecting higher up parts. The latter do not have these issues. IMHO
Jul
27
comment Why is software quality so problematic?
Agreed! People think that Software is somehow different. It really IS just engineering in the end and us software engineers need to be trained just like other engineers.
Jul
27
revised Why is software quality so problematic?
added 372 characters in body
Jul
23
comment Returning null from native methods using JNI
No, using the Sun VM. Yeah, I'm assuming that theres additional error handling code being run when the return value is zero. Anyway, it would be nice to know what the deal here is, but I can fix it in other ways anyway.
Jul
23
comment Returning null from native methods using JNI
Thanks for that. Well, the code is still slow if everything is commented out EXCEPT the return 0, so it can't be the call to ExceptionDescribe(). Still a good point though and your code IS a bit cleaner than mine.
Jul
23
comment Returning null from native methods using JNI
Yes, I assumed that instead of returning 0 (which appears to WORK, ie I get a null back on the Java side, but for some strange strange reason its really slow.. maybe JNI treats it as an error case and returns null because of this as a side effect? and the additional error handling is slowing it down??) that I should be returning some kind of jnull object, but I had no look actually finding one...
Jul
23
revised Returning null from native methods using JNI
edited body
Jul
23
comment Returning null from native methods using JNI
Two reasons: 1) I'd like to avoid rewriting existing code and, more importantly, 2) because it must be possible and I'd like to learn how. If I cannot figure it out, then I will use your method though. Thanks.
Jul
23
comment Returning null from native methods using JNI
But what if I want Java to get a "null"? What is the correct procedure for this using JNI? Is there some jnull object which I've overlooked, or..?
Jul
23
revised Returning null from native methods using JNI
Added some code
Jul
23
comment Returning null from native methods using JNI
Well, I specifically want Java to receive "null", not an empty byte array. I could rewrite the Java code to work with that, but I'd really rather not, if possible. I added the method signatures.
Jul
23
revised Returning null from native methods using JNI
Added additional information
Jul
22
asked Returning null from native methods using JNI
Jul
20
comment What’s your most controversial programming opinion?
I don't agree that its the worst language; I do agree that its a bad language; I also agree that its a bad first language. C++ is powerful and has a lot of features that are very useful. This makes C++ a good choice - sometimes. C++ also has a lot of hidden evil (lots of undefined behavior that looks perfectly fine..) which makes it a bad language and definitely a bad first language.
Jul
20
comment What’s your most controversial programming opinion?
@Mr. Shiny and New: Its not. I just mean that if I absolutely MUST poke around in the internals, then at least give me a language with properties. I'm still against using properties though, as, just like getters/setters, I do not think that a properly designed OO system needs them.
Jul
20
comment What’s your most controversial programming opinion?
I think performance does matter, but code correctness and reliability matters more. That means you should develop your code to be correct, reliable and secure first and worry about performance later, after prototyping. The hotspots should then be rewritten as needed. Pure cycle-shaving optimisation is also never as effective as a good algorithm. Example: I once had a program that took 2.5 hours to run. I did some hardcore optimisation and it ran in 40 minutes!! I rewrote it to use a better algorithm; it ran in 20 seconds! I tried optimising that - but it did not go any faster. Go figure :-P
Jul
20
comment What’s your most controversial programming opinion?
If you absolutely MUST use XML-like markup, then at least use YAML. Its easier to read (less noise), small in size and equal to XML in every other way. I usually prefer simple "key=value" or "command parameters" files for configuration and such and in the rare rare cases where that isn't enough then YAML. Note that I've never had a case where I had to use YAML :-D but I imagine it will eventually happen.
Jul
13
awarded  Nice Answer
Jul
13
comment Finished first year of comp sci at university… What to do for summer?
+1 cause its an easy trap to fall into.
Jul
13
comment Finished first year of comp sci at university… What to do for summer?
Depending on the uni, you'll get some of those too. I agree though. Some other good choices are Python, Factor, OCaml, Oz. Python because its practical, Factor because its extremely flexible and powerful (and concatenative programming is just plain cool), OCaml because it mixes functional, imperative and OO and Oz because it provides an amazing mix between dataflow, imperative, functional, OO... (and Peter Van Roys book Concepts Techniques & Models of Computer Programming is awesome).
Jul
13
comment Finished first year of comp sci at university… What to do for summer?
We did x86 assembly in first year too (but they called in Computer Architecture and covered more than just assembly language). In second year we did more x86 and also MIPS.
Jul
13
comment Finished first year of comp sci at university… What to do for summer?
Yeah, specs are horrible.. too much of my job revolves around reading and understanding specs and rfc's :'(
Jul
9
comment Language showdown: Convert string of digits to array of integers?
does 'echo $foo[2] + 4' print 6?
Jul
9
comment Language showdown: Convert string of digits to array of integers?
+1 cause I actually needed this to convert phone numbers and was too lazy to write it myself :-D
Jul
9
comment Language showdown: Convert string of digits to array of integers?
I <3 point free programming! +1
Jun
29
answered What should I call this function composition?
Jun
29
revised What is the next great UI metaphor that will replace the Desktop?
Added link to blog post, which touches on the topic.
Jun
25
answered Face recognition Library