User starblue - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T07:29:53Zhttp://stackoverflow.com/feeds/user/49246http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1894081/what-is-the-easiest-way-to-sort-maps-according-to-values-in-java/1894169#18941690Answer by starblue for What is the easiest way to sort maps according to values in Java?starblue2009-12-12T17:46:04Z2009-12-12T17:46:04Z<p>Use <a href="http://java.sun.com/javase/6/docs/api/java/util/Collections.html#reverseOrder()" rel="nofollow">Collections.reverseOrder()</a>.</p>
http://stackoverflow.com/questions/1891775/any-reason-for-having-val-capacity-int-instead-of-val-int-capacity-in-scala/1893263#18932632Answer by starblue for Any reason for having "val capacity : Int" instead of "val Int Capacity" in Scalastarblue2009-12-12T12:26:22Z2009-12-12T12:26:22Z<p>x : T is the standard notation for types in logic and many programming languages. C and its descendants, with Java among them, deviates from this. But the type notation of C is really awful (try to write down the type for some moderately complicated higher order function like map).</p>
<p>Also, with this notation it is easy to leave out the type (as Wysawyg has already written), or to add a type inside an expression.</p>
http://stackoverflow.com/questions/1881456/prolog-wildcards/1883755#18837552Answer by starblue for Prolog wildcardsstarblue2009-12-10T20:23:52Z2009-12-10T20:23:52Z<p>You can use double negation to avoid variable bindings:</p>
<pre><code>?- \+ \+ member((A,A),[(a,a),(b,a),(c,a)]).
true.
</code></pre>
http://stackoverflow.com/questions/1872322/java-confirm-method-binary-division-and-find-remainder-is-correct/1873922#18739220Answer by starblue for Java: confirm method Binary division and find remainder is correct?starblue2009-12-09T13:32:30Z2009-12-09T13:32:30Z<p>CRC works on polynomials, not numbers, so you need to adapt the math.</p>
http://stackoverflow.com/questions/1851539/whats-wrong-with-this-version-of-functorprolog/1851557#18515573Answer by starblue for Whats wrong with this version of functor(Prolog)?starblue2009-12-05T08:12:21Z2009-12-05T08:12:21Z<p>The problem is that Args is not yet instantiated for =.. . Try putting lenlist/3 before it.</p>
<p>BTW, you could also use the built-in length/2. </p>
http://stackoverflow.com/questions/1843899/how-to-define-a-predicate-in-prolog/1848538#18485380Answer by starblue for How to define a predicate in prologstarblue2009-12-04T17:43:09Z2009-12-04T17:43:09Z<p>You can do</p>
<pre><code>?- consult(user).
</code></pre>
<p>or</p>
<pre><code>?- [user].
</code></pre>
<p>and enter the clauses after that, then terminate the input with the end of file character (Ctrl-D in Linux, could be Ctrl-Z in MS-Windows). This is equivalent to reading a file, see <a href="http://www.swi-prolog.org/pldoc/doc_for?object=section%282%2c%20%274.3%27%2c%20swi%28%27%2fdoc%2fManual%2fconsulting.html%27%29%29#consult/1" rel="nofollow">the documentation of consult/1</a>.</p>
<p>assert/1 and retract/1 are intended for predicates that are changed dynamically by the code (i.e. for storing global data), not for normal programming.</p>
http://stackoverflow.com/questions/1841461/unsigned-short-in-java/1841849#18418490Answer by starblue for unsigned short in javastarblue2009-12-03T18:20:39Z2009-12-03T18:20:39Z<p>If you really need a value with exactly 16 bits:</p>
<p><strong>Solution 1:</strong> Use the available signed short and stop worrying about the sign, unless you need to do comparison (<, <=, >, >=) or division (/, %, >>) operations. See <a href="http://stackoverflow.com/questions/397867/port-of-random-generator-from-c-to-java#397997">this answer</a> for how to handle signed numbers as if they were unsigned.</p>
<p><strong>Solution 2 (where solution 1 doesn't apply):</strong> Use the lower 16 bits of int and remove the higher bits with & 0xffff where necessary.</p>
http://stackoverflow.com/questions/1841115/programming-math-based-images-for-use-in-high-resolution-artwork/1841242#18412420Answer by starblue for Programming math-based images for use in high-resolution artworkstarblue2009-12-03T16:48:26Z2009-12-03T16:48:26Z<p>I would try to create a PDF with iText in Java. PDF supports vector graphics, so it should scale without problems. I don't know how well iText scales w.r.t. performance when you have a really big number of graphic elements.</p>
http://stackoverflow.com/questions/1838050/latex-math-symbol-macro/1838260#18382603Answer by starblue for LaTeX math symbol macrostarblue2009-12-03T07:28:57Z2009-12-03T09:14:24Z<p>Try the following (not tested):</p>
<pre><code>\newcommand{\mycomparator}{\stackrel{?}{\circ}}
</code></pre>
<p>Also look up \mathrel, it can be used to make arbitrary symbolds into a relation for correct math spacing.</p>
<p>Mathematically your idea is not so brilliant, as different relations obey different rules. For an example, multiply both sides of an inequation by a negative number. </p>
<p>Actually, standard practice would use an uppercase R for a general relation, i.e. \mathrel{R} for proper spacing. You can use subsequent letters or indices if you need more than one.</p>
<p>For a general transitive relation I'd use some nonstandard comparison symbol like \preceq or \prec, depending on whether it is reflexive or not.</p>
<p>\circ is normally used for a general binary operation, or for function composition.</p>
http://stackoverflow.com/questions/1831488/problem-with-integer-division-opertor-in-prolog/1831885#18318852Answer by starblue for Problem with integer division opertor in Prologstarblue2009-12-02T10:02:18Z2009-12-02T10:02:18Z<p>According to <a href="http://www.swi-prolog.org/pldoc/doc_for?object=section%282%2c%20%27A.7%27%2c%20swi%28%27%2fdoc%2fManual%2fclpfd.html%27%29%29" rel="nofollow">the documentation</a>, CLP-FD uses / for integer division.</p>
http://stackoverflow.com/questions/1818292/can-anybody-suggest-me-a-book-on-embedded-system-design/1818417#18184173Answer by starblue for Can anybody suggest me a book on embedded system design?starblue2009-11-30T08:02:03Z2009-11-30T08:02:03Z<p>Take a look at the <a href="http://www.ganssle.com/" rel="nofollow">website of Jack Ganssle</a>. There is <a href="http://www.ganssle.com/bkreviews.htm" rel="nofollow">a list of books</a> and there are also a lot of interesting <a href="http://www.ganssle.com/articles-subj.htm" rel="nofollow">articles</a>.</p>
http://stackoverflow.com/questions/1809602/thermometer-using-ds1620-ic-and-arm-microcontroller/1809883#18098831Answer by starblue for Thermometer using DS1620 IC and arm microcontrollerstarblue2009-11-27T17:30:22Z2009-11-27T17:30:22Z<p>Look through the 8051 code. For the hardware interfaces of the 8051 that are used in the code pick some equivalent hardware on the LPC23xx and adapt the code. </p>
<p>Read the relevant parts of the LPC23xx and the 8051 data sheets until you understand them sufficiently.</p>
<p>Be careful about the size of int, 8051 is 8 bit and ARM 32 bit.</p>
http://stackoverflow.com/questions/1798118/what-do-you-do-to-write-better-code/1808571#18085710Answer by starblue for What do you do to write better code?starblue2009-11-27T12:45:16Z2009-11-27T12:45:16Z<p><strong>Every mistake is a learning opportunity</strong></p>
<p>When you make a mistake, always think what you could change to avoid that mistake in the future.</p>
http://stackoverflow.com/questions/1804311/how-to-check-if-an-integer-is-power-of-3/1804399#180439933Answer by starblue for How to check if an integer is power of 3?starblue2009-11-26T15:41:21Z2009-11-26T19:03:59Z<pre><code>while (n % 3 == 0) {
n /= 3;
}
return n == 1;
</code></pre>
<p>Note that 1 is the zeroth power of three.</p>
<p><strong>Edit:</strong> You also need to check for zero before the loop, as the loop will not terminate for n = 0 (thanks to Bruno Rothgiesser).</p>
http://stackoverflow.com/questions/1795257/high-speed-tracing/1795720#17957204Answer by starblue for high speed tracingstarblue2009-11-25T09:30:50Z2009-11-25T09:30:50Z<p>If you can use an output port on the microcontrollers without disturbing other hardware too much you can output the current task number and capture it with a logic analyzer.</p>
http://stackoverflow.com/questions/1787308/members-predicate-in-prolog/1788424#17884241Answer by starblue for members predicate in Prologstarblue2009-11-24T07:24:23Z2009-11-24T07:24:23Z<p>You do the check for the depth after the recursion. So the depth of the recursion is not limited, only the resulting lists are discarded as too long.</p>
http://stackoverflow.com/questions/1787361/ideal-data-structure-for-mapping-integers-to-integers/1788398#17883980Answer by starblue for Ideal data structure for mapping integers to integers?starblue2009-11-24T07:17:20Z2009-11-24T07:17:20Z<p>To avoid the overhead of malloc you can use a hashtable where the entries in the table are your structs, assuming they are small. In your case a pair of integers should suffice, with a special value to indicate emptyness of the slot in the table.</p>
http://stackoverflow.com/questions/1786871/can-java-floats-be-sorted-by-their-byte-representations/1788349#17883491Answer by starblue for Can java floats be sorted by their byte representations?starblue2009-11-24T07:05:18Z2009-11-24T07:05:18Z<p>Use Float.toIntBits(float) and compare the integers.</p>
http://stackoverflow.com/questions/1782394/using-final-object-in-anonymous-inner-class-results-in-null/1782937#17829374Answer by starblue for Using final object in anonymous inner class results in nullstarblue2009-11-23T12:42:08Z2009-11-23T12:42:08Z<p>It fails in Java 1.4 because the field containing the local variable is not yet initialized when the super constructor for Repository is executed.</p>
<p>It works in Java 1.5 and later, because then the field is initialized before the super constructor is called.</p>
<p>In general it is bad style to call methods which may be overridden in subclasses in a constructor, because it leads to this kind of problems.</p>
http://stackoverflow.com/questions/1775651/whats-the-operator-in-prolog-and-how-can-i-use-it/1776478#17764781Answer by starblue for What's the -> operator in Prolog and how can I use it?starblue2009-11-21T19:30:34Z2009-11-21T19:30:34Z<p>It's a local version of the cut, see for example the <a href="http://www.swi-prolog.org/pldoc/doc_for?object=section%282%2c%20%274.7%27%2c%20swi%28%27%2fdoc%2fManual%2fcontrol.html%27%29%29" rel="nofollow">section on control predicated</a> in the SWI manual.</p>
<p>It is mostly used to implement if-then-else by (condition -> true-branch ; false-branch). Once the condition succeeds there is no backtracking from the true branch back into the condition or into the false branch, but backtracking out of the if-then-else is still possible. Therefore it is called local cut or soft cut.</p>
http://stackoverflow.com/questions/1775206/are-ascii-characters-always-encoded-the-same-way-in-all-character-encodings/1775300#17753002Answer by starblue for Are ASCII characters always encoded the same way in all character encodings?starblue2009-11-21T12:01:13Z2009-11-21T12:01:13Z<p>No, there are some unofficial regional variants of <a href="http://en.wikipedia.org/wiki/ISO/IEC_646" rel="nofollow">ISO-646</a> which <a href="http://en.wikipedia.org/wiki/ISO/IEC_646#Variants_of_ASCII_that_are_not_ISO_646" rel="nofollow">differ quite a lot from ASCII</a>.</p>
http://stackoverflow.com/questions/1771029/substitute-in-a-nested-list-prolog/1773033#17730332Answer by starblue for substitute in a nested list (prolog)starblue2009-11-20T20:25:44Z2009-11-20T20:25:44Z<p>Here is how you could write it using (... -> ... ; ...):</p>
<pre><code>subs(_, _, [], []).
subs(X, Y, [H1|T1], [H2|T2]) :-
(H1 == X ->
H2 = Y
; is_list(H1) ->
subs(X, Y, H1, H2),
subs(X, Y, T1, T2)
;
H1 = H2,
subs(X, Y, T1, T2)
).
</code></pre>
http://stackoverflow.com/questions/1768274/prolog-learning-by-example/1772412#17724120Answer by starblue for Prolog : Learning by examplestarblue2009-11-20T18:31:37Z2009-11-20T18:31:37Z<p>sudoku/1 basically describes the constraints a Sudoku solution must satisfy, where the board is represented as a list of nine lists of length nine. problem/2 assigns a partially instantiated board to a problem number. To use it you should do</p>
<p>?- problem(1, Board), sudoku(Board).</p>
<p>You should read up on the predicates used in <a href="http://www.swi-prolog.org/pldoc/refman/" rel="nofollow">the documentation</a>.</p>
http://stackoverflow.com/questions/1761334/how-firmwares-communicate-to-the-electronic-devices-to-perform-its-operations/1761555#17615551Answer by starblue for How firmwares communicate to the electronic devices to perform its operations?starblue2009-11-19T07:41:38Z2009-11-19T07:41:38Z<p>In most systems there are special memory addresses which are used for I/O. Reading and writing on such addresses executes some function instead of just moving data around. In x86 systems there are also special I/O instructions IN and OUT for that.</p>
<p>The simplest case is called general parallel I/O (GPIO), where you can read or write data directly from/to external electrical pins on the device. There are several memory addresses, called registers, where you can read data from the port (voltage near 0 = 0, near supply voltage = 1), where you can write data to the port, and where you can define whether a particular pin is input (the corresponding bit is typically 0) or output (the bit is 1). Every microcontroller has GPIO.</p>
<p>So in your example the button could be connected to a pin set to input, which the software could sense. It would typically do this every 10ms and only react if it has a stable value for several reads, this is called debouncing. Then it would write a 1 to some output, which via some transistor for amplification could drive a motor. If it senses that you release the switch it could turn the motor off again by writing a 0. And so on, this program would run until you turn the device off.</p>
<p>There are lots of other I/O devices for other purposes with typically hundreds of registers for controlling them. If you want to see more you could look into the data sheet of some microcontroller. For example, here is <a href="http://www.atmel.com/dyn/resources/prod_documents/doc8127.pdf" rel="nofollow">the data sheet of ATtiny4/5/9/10</a>, a very small controller from the Atmel AVR family.</p>
<p>Today most firmware is written in C, except for the smallest devices and for a little special code for handling resets and interrupts, which is written in assembly language.</p>
http://stackoverflow.com/questions/1758315/fastest-way-to-pick-a-random-element-from-a-list-that-fulfills-certain-condition/1758780#17587800Answer by starblue for Fastest way to pick a random element from a list that fulfills certain conditionstarblue2009-11-18T20:19:38Z2009-11-18T20:19:38Z<p>You could use a <a href="http://en.wikipedia.org/wiki/Linear_congruential_generator" rel="nofollow">linear congruential random number generator</a> which cycles once through the indexes of your list, plus maybe a few more to be able to chose suitable parameters, and then check the values indexed by this sequence, discarding indexes which are too big and picking the first element you find. If you find nothing you can stop when the random sequence starts repeating.</p>
<p>For this to work <em>m</em> needs be at least as large as the list. To be able to chose <em>a</em> the modulus <em>m</em> must contain a factor of 8 or a square of some prime >= 3. c should be chosen randomly so that it is relatively prime to m. Also pick the initial value randomly.</p>
http://stackoverflow.com/questions/1756290/loop-loope-loopne/1757661#17576610Answer by starblue for LOOP, LOOPE, LOOPNE?starblue2009-11-18T17:22:47Z2009-11-18T17:22:47Z<p>Have you tried looking it up in an instruction set reference, <a href="http://www.intel.com/design/intarch/manuals/243191.htm" rel="nofollow">for example in this one by Intel</a>?</p>
http://stackoverflow.com/questions/1737756/pascals-triangle-in-prolog/1737776#17377760Answer by starblue for Pascal's Triangle in Prolog starblue2009-11-15T15:12:42Z2009-11-15T15:12:42Z<p>You need a base case for pascalA where N = 0.</p>
http://stackoverflow.com/questions/1737443/bool-true-false/1737455#17374551Answer by starblue for bool true = false?starblue2009-11-15T12:44:30Z2009-11-15T12:44:30Z<p>I vaguely recall that in Smalltalk this is possible with <code>true become: false</code>, though I never tried it myself. Make a backup of your image before you try this.</p>
http://stackoverflow.com/questions/1735840/how-do-i-split-an-integer-into-2-byte-binary/1737187#17371870Answer by starblue for How do I split an integer into 2 byte binary?starblue2009-11-15T10:26:14Z2009-11-15T10:26:14Z<p>For converting two bytes the cleanest solution is</p>
<pre><code>data[0] = (byte) width;
data[1] = (byte) (width >>> 8);
</code></pre>
<p>For converting an integer to four bytes the code would be</p>
<pre><code>data[0] = (byte) width;
data[1] = (byte) (width >>> 8);
data[2] = (byte) (width >>> 16);
data[3] = (byte) (width >>> 24);
</code></pre>
<p>It doesn't matter whether >> or >>> is used for shifting, any one bits created by sign extension will not end up in the resulting bytes.</p>
<p>See also <a href="http://stackoverflow.com/questions/397867/port-of-random-generator-from-c-to-java/397997#397997">this answer</a>.</p>
http://stackoverflow.com/questions/1737095/how-do-i-disassemble-raw-x86-code/1737110#17371107Answer by starblue for How do I disassemble raw x86 code?starblue2009-11-15T09:45:23Z2009-11-15T09:45:23Z<p>The GNU tool is called <strong>objdump</strong>, for example:</p>
<pre><code>objdump -D -b binary -m i8086 <file>
</code></pre>
http://stackoverflow.com/questions/1901725/how-to-input-the-following-data-in-prologComment by starblue on How to input the following data in prolog?starblue2009-12-14T16:15:10Z2009-12-14T16:15:10ZWhat's the context of the question?http://stackoverflow.com/questions/1873832/how-do-i-compare-two-integersComment by starblue on How do I compare two Integers?starblue2009-12-09T13:24:10Z2009-12-09T13:24:10ZYou shouldn't use Integer x = ... in the first place, use int x = ... instead.http://stackoverflow.com/questions/1852393/why-java-has-fixed-data-type-size-unlike-cComment by starblue on Why java has fixed data type size unlike Cstarblue2009-12-05T18:46:12Z2009-12-05T18:46:12ZIt would be more appropriate to ask why sizes are not fixed in C, because that's a serious drawback of C. Fixed size types have been introduced in C99, but that's rather late. Most embedded C code I've seen still uses C90 and homegrown fixed size types.http://stackoverflow.com/questions/1830186/what-does-arrows-mean-in-mathComment by starblue on What does arrows mean in math?starblue2009-12-03T07:40:05Z2009-12-03T07:40:05ZIt can mean just about anything it is defined to mean in a given context. You need to find the applicable definition for your case. (I've worked in term rewriting, so I've seen a lot of arrows pointing in all directions.)http://stackoverflow.com/questions/1833480/stringbuffer-append/1833501#1833501Comment by starblue on StringBuffer append("")starblue2009-12-02T15:25:12Z2009-12-02T15:25:12ZYes, but almost always you use it locally in a single thread so you don't need thread safety.http://stackoverflow.com/questions/1078065/most-readable-programming-language-to-simulate-10-000-chutes-and-ladders-game-pla/1078408#1078408Comment by starblue on most readable programming language to simulate 10,000 chutes and ladders game plays?starblue2009-12-02T09:43:37Z2009-12-02T09:43:37ZExcept that other things aren't equal. Explicitly writing down the types give you extra information, which may make it easier to understand the code.http://stackoverflow.com/questions/1813483/averaging-angles-againComment by starblue on Averaging angles... Againstarblue2009-12-01T09:37:20Z2009-12-01T09:37:20ZIt's not biased towards zero. Clusters of angles have more weight than you would expect if you naively average the raw angles. You could play with some scaling function on the length of the vector to try counter that "bias".http://stackoverflow.com/questions/1823864/a-good-algorithm-for-generating-an-order-number/1823896#1823896Comment by starblue on A good algorithm for generating an order numberstarblue2009-12-01T09:24:04Z2009-12-01T09:24:04Z+1 This is a linear congruential random number generator. Note that the sequence can be deduced from a few numbers, it is only obfuscated.http://stackoverflow.com/questions/1813483/averaging-angles-againComment by starblue on Averaging angles... Againstarblue2009-11-29T12:44:57Z2009-11-29T12:44:57Z+1 Interesting question. I still have no intuition what to do about it, but note that 30 = arc sin(0.5).http://stackoverflow.com/questions/1809606/what-is-an-irrational-number-relevant-to-computer-scienceComment by starblue on What is an irrational number relevant to computer science?starblue2009-11-27T17:18:05Z2009-11-27T17:18:05ZDo 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.http://stackoverflow.com/questions/1798118/what-do-you-do-to-write-better-code/1798744#1798744Comment by starblue on What do you do to write better code?starblue2009-11-27T12:40:36Z2009-11-27T12:40:36Z<a href="http://xkcd.com/323/" rel="nofollow">xkcd.com/323</a>http://stackoverflow.com/questions/1807737/nan-problem-in-javaComment by starblue on NaN problem in Javastarblue2009-11-27T09:59:00Z2009-11-27T09:59:00ZWhat is the context of this question?http://stackoverflow.com/questions/1804311/how-to-check-if-an-integer-is-power-of-3/1804468#1804468Comment by starblue on How to check if an integer is power of 3?starblue2009-11-26T19:06:00Z2009-11-26T19:06:00ZYou could use binary search to speed it up.http://stackoverflow.com/questions/1795257/high-speed-tracing/1795720#1795720Comment by starblue on high speed tracingstarblue2009-11-26T10:07:06Z2009-11-26T10:07:06ZI 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.http://stackoverflow.com/questions/1796692/c-the-limits-of-speed-of-the-desktop-cpus-if-program-is-build-using-gcc-with-al/1796789#1796789Comment by starblue on C - the limits of speed of the Desktop-CPUs if program is build using GCC with all optimization flags?starblue2009-11-25T14:37:29Z2009-11-25T14:37:29ZWhy don't you get a candidate machine and write some small benchmark programs for testing performance?