User coledot - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T09:32:00Zhttp://stackoverflow.com/feeds/user/14463http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1806673/are-vector-assignments-copied-by-value-or-by-reference-in-googles-go-language/1806760#18067600Answer by coledot for Are vector assignments copied by value or by reference in Google's Go language?coledot2009-11-27T04:39:18Z2009-11-27T04:39:18Z<p>In your code, <code>movesAlreadyDone</code> is a <code>*vector.Vector</code>; when you assign <code>retVal.movesAlreadyDone = parent.movesAlreadyDone;</code>, you are copying a reference. Anytime a vector modification is done on either <code>retVal.movesAlreadyDone</code> or <code>parent.movesAlreadyDone</code> you'll be modifying the same underlying vector.</p>
<p>If you want to copy the contents of one vector to another you will need to iterate through the source vector and push its elements to the destination vector. Like so:</p>
<pre><code>for n := range srcVect.Iter() {
dstVect.Push(n);
}
</code></pre>
http://stackoverflow.com/questions/1804317/double-pointer-and-structures/1806668#18066680Answer by coledot for double pointer and structurescoledot2009-11-27T04:05:11Z2009-11-27T04:05:11Z<p>Assuming all of the <code>(struct somestruct *)</code> pointers point to memory that's already been allocated, yes, it looks correct.</p>
<p>As for the error, what version of gcc are you using? I tested the code on 4.3.3 and it compiles with no complaints, even with <code>-Wall -pedantic</code>.</p>
http://stackoverflow.com/questions/1488372/mimic-pythons-strip-function-in-c/1489496#14894960Answer by coledot for Mimic Python's strip() function in Ccoledot2009-09-28T21:34:48Z2009-09-28T21:34:48Z<p>I asked a very similar question long ago. See <a href="http://stackoverflow.com/questions/122616/painless-way-to-trim-leading-trailing-whitespace-in-c">here</a>; there are ways to do it both in-place and with a new copy.</p>
http://stackoverflow.com/questions/1262007/please-help-me-figure-out-whats-wrong-with-this-web-proxy-code/1289459#12894590Answer by coledot for Please help me figure out what's wrong with this web proxy codecoledot2009-08-17T17:59:58Z2009-08-17T17:59:58Z<p>Is the client socket blocking? If so, you may want to try non-blocking I/O or set a socket timeout.</p>
http://stackoverflow.com/questions/562303/the-definitive-c-book-guide-and-list/562618#5626182Answer by coledot for The Definitive C Book Guide and Listcoledot2009-02-18T20:11:28Z2009-02-18T20:11:28Z<p>"<a href="http://www.cs.princeton.edu/software/cii/" rel="nofollow" title="C Interfaces and Implementations">C Interfaces and Implementations</a>" by David R. Hanson. It provides info on how to define a boundary between an interface and an implementation in C in a generic and reusable fashion. It also demonstrates this principle by applying it to the implementation of common mechanisms and data structures in C, such as lists, sets, exceptions, string manipulation, memory allocators and more.</p>
http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/318329#31832913Answer by coledot for What are the best programming articles?coledot2008-11-25T18:08:27Z2008-11-25T18:08:27Z<p><a href="http://www.laputan.org/mud/" rel="nofollow">Big Ball of Mud</a> by Brian Foote and Joseph Yoder</p>
http://stackoverflow.com/questions/122616/painless-way-to-trim-leading-trailing-whitespace-in-c7Painless way to trim leading/trailing whitespace in C?coledot2008-09-23T17:57:15Z2008-10-10T19:17:52Z
<p>Is there a clean, preferably standard method of trimming leading and trailing whitespace from a string in C? I'd roll my own, but I would think this is a common problem with an equally common solution.</p>
http://stackoverflow.com/questions/111254/what-are-some-simple-projects-you-can-do-to-learn-the-embedded-programming-basics/112076#1120765Answer by coledot for What are some simple projects you can do to learn the embedded programming basics?coledot2008-09-21T20:44:57Z2008-09-21T20:44:57Z<p>I purchased an <a href="http://arduino.cc/" rel="nofollow">Arduino</a> recently, which is easy to get up and running. It's a small, fairly inexpensive board running an Atmega168 with the I/O broken out, power, USB, and other fun stuff. It runs native C code (as one would expect from an Atmega chip) and can be used to drive circuits through software. </p>
http://stackoverflow.com/questions/111933/why-shouldnt-i-use-hungarian-notation/112005#1120055Answer by coledot for Why shouldn't I use "Hungarian Notation"?coledot2008-09-21T20:28:22Z2008-09-21T20:28:22Z<p>Tacking on cryptic characters at the beginning of each variable name is unnecessary and shows that the variable name by itself isn't descriptive enough. Most languages require the variable type at declaration anyway, so that information is already available.</p>
<p>There's also the situation where, during maintenance, a variable type needs to change. Example: if a variable declared as "uint_16 u16foo" needs to become a 64-bit unsigned, one of two things will happen:</p>
<ol>
<li>You'll go through and change each variable name (making sure not to hose any unrelated variables with the same name), or</li>
<li>Just change the type and not change the name, which will only cause confusion.</li>
</ol>
http://stackoverflow.com/questions/122616/painless-way-to-trim-leading-trailing-whitespace-in-c/122644#122644Comment by coledot on Painless way to trim leading/trailing whitespace in C?coledot2008-09-23T18:04:54Z2008-09-23T18:04:54ZThat'd work great, but adding a regex library would be a bit overkill, especially when one isn't already included in the project in question.