starblue

11,155
Reputation
1054 views

Registered User

Name starblue
Member for 11 months
Seen 34 mins ago
Website
Location NRW, Germany
Age 44
I'm a free-lance embedded software developer who also likes mathematics and electronics.
34m
revised Is IMUL AX valid?
edited tags
5h
answered Thermometer using DS1620 IC and arm microcontroller
6h
comment What is an irrational number relevant to computer science?
Do the world a favor and use sensible version numbers. Donald Knuth may get away with it, because his software is so stable, but others shouldn't even try.
10h
answered What do you do to write better code?
10h
comment What do you do to write better code?
xkcd.com/323
13h
comment NaN problem in Java
What is the context of this question?
14h
revised Graph Theory: Find the Jordan center?
added 56 characters in body
1d
comment How to check if an integer is power of 3?
You could use binary search to speed it up.
1d
revised How to check if an integer is power of 3?
added 134 characters in body
1d
awarded  Good Answer
1d
awarded  Nice Answer
1d
answered How to check if an integer is power of 3?
1d
revised Load Assembly at runtime and create class instance
edited tags
1d
comment high speed tracing
I like that it is immediate and disturbs the timing very little. It is not the method of choice for complex logic errors, but for getting a handle on timing issues it's great.
2d
comment C - the limits of speed of the Desktop-CPUs if program is build using GCC with all optimization flags?
Why don't you get a candidate machine and write some small benchmark programs for testing performance?
2d
answered high speed tracing
2d
awarded  Guru
Nov
24
comment Missing java.util.HashMap
java.util.HashMap is a class, not a package.
Nov
24
comment What statically typed, functional and interpreted language would you suggest?
-1 for "interpreted language".
Nov
24
comment Median of Medians in Java
Look up the median of medians algorithm, understand it (e.g. run it by hand on small examples), then implement it.
Nov
24
comment Should the conditional operator evaluate all arguments?
The result can be +Infinity or -Infinity for subnormal numbers, but I would call that an overflow rather than a division by zero.
Nov
24
answered members predicate in Prolog
Nov
24
comment Compute a list of distinct odd numbers (if one exists), such that their sum is equal to a given number.
What is your query? Since you only get True something is probably wrong with it.
Nov
24
answered Ideal data structure for mapping integers to integers?
Nov
24
answered Can java floats be sorted by their byte representations?
Nov
23
comment How to round *down* integers in Java?
This rounds towards zero.
Nov
23
comment Random number generation
Do you want a sequence of random numbers or a single hash code for an input?
Nov
23
comment Using final object in anonymous inner class results in null
@Aaron Digulla The local variable is testDao in main(), which is accessed in the anonymous class. The compiler implements this by adding a parameter for the variable to the constructor and storing its value in a field of the anonymous class, which is then accessed.
Nov
23
accepted Using final object in anonymous inner class results in null
Nov
23
answered Using final object in anonymous inner class results in null
Nov
22
comment Complexity in Prolog programs?
Make that _ a 0 and it is correct.
Nov
21
answered What’s the -> operator in Prolog and how can I use it?
Nov
21
comment What’s the -> operator in Prolog and how can I use it?
That's --> (note the two - characters), see the SWI Manual: swi-prolog.org/pldoc/…
Nov
21
revised Java: Prim’s with Fibonacci heap? (JGraphT)
added 106 characters in body; edited tags
Nov
21
answered Are ASCII characters always encoded the same way in all character encodings?
Nov
21
comment What is the name of this theorem?
I guess it's too trivial to warrant a name. Just compute P(a)-P(b) modulo a-b and you'll see.
Nov
20
comment substitute in a nested list (prolog)
Cuts are ugly, they hide the implicit negation in the following clauses. I find it better to use (... -> ... ; ...), which resembles if-then-else in functional programming.
Nov
20
answered substitute in a nested list (prolog)
Nov
20
revised Utilizing the LDT (Local Descriptor Table)
edited tags
Nov
20
answered Prolog : Learning by example
Nov
19
comment Java Hardware Interrupt Handling
What do you need that for?
Nov
19
comment Tips for Project Euler Problem #78
I can't give you any specific advice, but I posted some general advice a while ago: stackoverflow.com/questions/1537306/…
Nov
19
comment Is there software or code to alter USB power output
Use an LM317 voltage regulator.
Nov
19
comment Circular Buffer in Flash
+1 for COBS encoding.
Nov
19
answered How firmwares communicate to the electronic devices to perform its operations?
Nov
18
answered Fastest way to pick a random element from a list that fulfills certain condition
Nov
18
comment How to solve this mathematical problem?
It's far too trivial for Mathoverflow.net. The programming would also be trivial, it would just amount to writing down the formulas in some programming language.
Nov
18
comment What is the best List implementation for Large lists in java
100000 is not that large these days. Doing it in the most naive way with an array list takes less than 100ms on my machine (single core of Intel Core2 T5600 @ 1.83GHz).
Nov
18
answered LOOP, LOOPE, LOOPNE?
Nov
17
accepted Coinduction - clear, concise description