User Cayle Spandon - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T18:49:13Zhttp://stackoverflow.com/feeds/user/21435http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1703198/minimum-cost-broadcast-routing/1718596#17185961Answer by Cayle Spandon for Minimum cost broadcast routingCayle Spandon2009-11-11T22:41:58Z2009-11-11T22:41:58Z<p>Any algorithm for implementing a minimum cost broadcast (or multicast) routing scheme in the end boils down to constructing a least-cost spanning tree (rooted at the multicast source) of the full graph which represents the network.</p>
<p>There are various algorithms for computing the least-cost spanning tree.</p>
<p>IP multicast routing protocols such as PIM rely on least-cost spanning tree which is computed by the IGP (OSPF or ISIS) using the Dijkstra algorithm.</p>
<p>Older protocols, such as DVMRP, rely on a distance-vector protocol to compute the spanning tree.</p>
<p>One could theoretically use other algorithms to compute the least-cost spanning tree (e.g. Bellman-Ford) although I know of no implementation that does so in practice.</p>
http://stackoverflow.com/questions/1660655/how-to-do-erlang-pattern-matching-using-regular-expressions5How to do Erlang pattern matching using regular expressions?Cayle Spandon2009-11-02T11:12:31Z2009-11-05T00:22:56Z
<p>When I write Erlang programs which do text parsing, I frequently run into situations where I would love to do a pattern match using a regular expression.</p>
<p>For example, I wish I could do something like this, where ~ is a "made up" regular expression matching operator:</p>
<pre><code>my_function(String ~ ["^[A-Za-z]+[A-Za-z0-9]*$"]) ->
....
</code></pre>
<p>I know about the regular expression module (re) but AFAIK you cannot call functions when pattern matching or in guards.</p>
<p>Also, I wish matching strings could be done in a case-insensitive way. This is handy, for example, when parsing HTTP headers, I would love to do something like this where "Str ~ {Pattern, Options}" means "Match Str against pattern Pattern using options Options":</p>
<pre><code>handle_accept_language_header(Header ~ {"Accept-Language", [case_insensitive]}) ->
...
</code></pre>
<p>Two questions:</p>
<ol>
<li><p>How do you typically handle this using just standard Erlang? Is there some mechanism / coding style which comes close to this in terms of conciseness and easiness to read?</p></li>
<li><p>Is there any work (an EEP?) going on in Erlang to address this?</p></li>
</ol>
http://stackoverflow.com/questions/1541859/string-delimiting-in-erlang/1543552#15435521Answer by Cayle Spandon for String delimiting in ErlangCayle Spandon2009-10-09T12:47:38Z2009-10-09T12:47:38Z<p>How about this:</p>
<pre><code>1> atom_to_list('He said "hello" and then she answered "hi".').
"He said \"hello\" and then she answered \"hi\"."
</code></pre>
<p>You can define a macro to abbreviate atom_to_list for improved readability.</p>
http://stackoverflow.com/questions/1457256/is-it-safe-to-issue-blocking-write-calls-on-the-same-tcp-socket-from-multiple-t2Is it safe to issue blocking write() calls on the same TCP socket from multiple threads?Cayle Spandon2009-09-21T22:37:33Z2009-09-22T16:49:01Z
<p>Let's say I have two threads, T1 and T2.</p>
<p>Thread T1 makes a blocking write() call on a TCP socket S to send a large buffer of bytes B1. The buffer of bytes B1 is so large that (a) the write call blocks and (b) TCP has to use multiple segments to send the buffer.</p>
<p>Thread T2 also makes a blocking write() call on the same TCP socket S to send some other large buffer of bytes B2.</p>
<p>My questions is this:</p>
<p>Does the implementation of TCP on UNIX guarantee that the all bytes of B1 will be sent before all bytes of B2 (or vice versa)?</p>
<p>Or is it possible that TCP interleaves the contents of B1 and B2 (e.g. TCP sends a segment with B1 data, then a segment with B2 data, an then a segment with B1 data again).</p>
<p>PS - I know it is not a good idea to do this. I'm trying to determine whether or not some code which I did not write is correct.</p>
http://stackoverflow.com/questions/1397568/how-expensive-is-gluing-binaries-listtobinary/1399593#13995932Answer by Cayle Spandon for How expensive is gluing binaries (list_to_binary)?Cayle Spandon2009-09-09T13:08:12Z2009-09-09T13:08:12Z<p>Your first method appears to be <em>much</em> slower than your second method (by a factor of about 3000 on my platform):</p>
<pre><code>-module(test).
-export([test/0, performance_test/4]).
-define(ITERATIONS, 100000).
-define(NEW_DATA, <<1, 2, 3, 4, 5, 6, 7, 8, 9, 10>>).
accumulate_1(AccumulatedData, NewData) ->
list_to_binary([AccumulatedData, NewData]).
extract_1(AccumulatedData) ->
AccumulatedData.
accumulate_2(AccumulatedData, NewData) ->
[NewData | AccumulatedData].
extract_2(AccumulatedData) ->
list_to_binary(lists:reverse(AccumulatedData)).
performance_test(AccumulateFun, ExtractFun) ->
{Time, _Result} = timer:tc(test, performance_test, [AccumulateFun, ExtractFun, [], ?ITERATIONS]),
io:format("Test run: ~p microseconds~n", [Time]).
performance_test(_AccumulateFun, ExtractFun, AccumulatedData, _MoreIterations = 0) ->
ExtractFun(AccumulatedData);
performance_test(AccumulateFun, ExtractFun, AccumulatedData, MoreIterations) ->
NewAccumulatedData = AccumulateFun(AccumulatedData, ?NEW_DATA),
performance_test(AccumulateFun, ExtractFun, NewAccumulatedData, MoreIterations - 1).
test() ->
performance_test(fun accumulate_1/2, fun extract_1/1),
performance_test(fun accumulate_2/2, fun extract_2/1),
ok.
</code></pre>
<p>Output:</p>
<pre><code>7> test:test().
Test run: 57204314 microseconds
Test run: 18996 microseconds
</code></pre>
http://stackoverflow.com/questions/1258345/faster-more-concise-way-to-figure-out-proper-size-needed-to-store-signed-unsigned/1260124#12601240Answer by Cayle Spandon for Faster/more concise way to figure out proper size needed to store signed/unsigned ints?Cayle Spandon2009-08-11T12:46:29Z2009-08-11T12:46:29Z<p>How about simply:</p>
<pre><code>nr_bytes(Value) ->
if Value < 256 -> 1;
true -> 1 + nr_bytes(Value bsr 8)
end.
</code></pre>
http://stackoverflow.com/questions/1018452/most-significant-32-bits-lost-when-casting-pointer-to-int64t1Most significant 32 bits lost when casting pointer to int64_t Cayle Spandon2009-06-19T15:00:59Z2009-06-19T15:10:25Z
<p>Can someone explain the following strange behavior?</p>
<p>I run the following program on a 64-bit Intel platform:</p>
<pre><code>include <stdio.h>
#include <stdint.h>
int main(void)
{
int x;
int *ptr = &x;
printf("ptr = %p\n", ptr);
printf("sizeof(ptr) = %d\n", sizeof(ptr));
int64_t i1 = (int64_t) ptr;
printf("i1 = 0x%x\n", i1);
printf("sizeof(i1) = %d\n", sizeof(i1));
return 0;
}
</code></pre>
<p>This program produces the following output:</p>
<pre><code>ptr = 0x7fbfffdf2c
sizeof(ptr) = 8
i1 = 0xbfffdf2c
sizeof(i1) = 8
</code></pre>
<p>Can anyone explain why i1 contains only the least significant 32 bits of ptr? (Note that it is missing 0x7f).</p>
<pre><code>Compiler: gcc version 3.4.6 20060404 (Red Hat 3.4.6-9)
OS: Linux scream 2.6.9-67.ELsmp #1 SMP Wed Nov 7 13:56:44 EST 2007 x86_64 x86_64 x86_64 GNU/Linux
Processor: Intel(R) Xeon(R) CPU E5430 @ 2.66GHz
</code></pre>
http://stackoverflow.com/questions/999083/erlang-how-to-set-or-check-ttl-in-udp-packets2Erlang: how to set or check TTL in UDP packets?Cayle Spandon2009-06-16T00:11:24Z2009-06-18T20:08:54Z
<p>In Erlang, how can I:</p>
<ul>
<li><p>Set the TTL for sent UDP packets?</p></li>
<li><p>Retrieve the value of the TTL for received UDP packets?</p></li>
</ul>
<p>I need to do this to implement <a href="http://www.ietf.org/rfc/rfc3682.txt" rel="nofollow">GTSM</a></p>
http://stackoverflow.com/questions/1001448/using-cppunit-for-memory-leak-detection/1001778#10017780Answer by Cayle Spandon for Using CppUnit for memory leak detectionCayle Spandon2009-06-16T14:15:49Z2009-06-16T14:15:49Z<p>Run your unit tests with <a href="http://valgrind.org/" rel="nofollow">valgrind</a>. The unit test framework which I use allows you to run one or more individual unit tests so you can detect which one is causing the leak.</p>
http://stackoverflow.com/questions/1001544/options-for-a-message-passing-system-for-a-game/1001721#10017210Answer by Cayle Spandon for Options for a message passing system for a gameCayle Spandon2009-06-16T14:07:31Z2009-06-16T14:07:31Z<p>I agree with Zan's recommendation to pass messages in memory whenever possible.</p>
<p>One reason is that you can pass complex objects C++ without needing to marshal and unmarshal (serialize and de-serialize) them.</p>
<p>The cost of protecting your message queue with a semaphore is most likely going to be less than the cost of making networking code calls.</p>
<p>If you protect your message queue with some lock-free algorithm (using atomic operations as you alluded to yourself) you can avoid a lot a context switches into and out of the kernel.</p>
http://stackoverflow.com/questions/996200/is-there-a-right-way-to-return-a-new-object-instance-by-reference-in-c/996318#9963185Answer by Cayle Spandon for Is there a right way to return a new object instance by reference in C++?Cayle Spandon2009-06-15T14:07:27Z2009-06-15T14:07:27Z<p>Returning an object by value (see example below) may actually be less expensive than you think. The compiler often optimizes out the extra copy. This is called the <a href="http://en.wikipedia.org/wiki/Return%5Fvalue%5Foptimization" rel="nofollow">return value optimization</a>.</p>
<pre><code> Rectangle GetRect( void ) const
{
return Rectangle( x, y, w, h );
}
</code></pre>
http://stackoverflow.com/questions/908891/could-you-recommend-some-networking-paper-for-me/934702#9347021Answer by Cayle Spandon for Could you recommend some networking paper for me?Cayle Spandon2009-06-01T12:54:47Z2009-06-01T12:54:47Z<p>One classic book is "Interconnections 2nd edition" by Radia Perlman.</p>
<p>Another very good one is "Routing in the Internet" by Christian Huitema.</p>
<p>If you are serious about learning how the Internet works, you also need to know about BGP. A decent introduction is "BGP4 Inter-Domain Routing in the Internet" by John Stewart.</p>
<p>A more advanced topic is MPLS. A very good book on this is "MPLS-Enabled Applications" by Ina Minei and Julian Lucek.</p>
<p>Another more advanced topic is multicast. I could recommend "Interdomain Multicast Routing" by Brian Edwards and others.</p>
<p>The books published by Cisco press tend to be good (although obviously vendor-specific) if you are interested in more practical details of how to configure network equipment.</p>
<p>Finally, "Unix Network Programming, Volume 1" by Richard Stevens is a must read if you want to do network programming.</p>
http://stackoverflow.com/questions/922920/what-does-bgp-path-attribute-type-18-refer-to/934670#9346700Answer by Cayle Spandon for What does BGP Path Attribute Type 18 refer to?Cayle Spandon2009-06-01T12:44:28Z2009-06-01T12:44:28Z<p>Yes, you are correct: attribute 18 is AS4_AGGREGATOR which is described in RFC 4893. It carries a 4-octet AS number. I have seen UPDATEs with that attribute generated by Cisco and Juniper routers and never noticed anything unusual that isn't clear from the RFC. If you post a hex-dump of that packet which is giving you trouble I could attempt a decode for you...</p>
http://stackoverflow.com/questions/798168/unused-field-value-in-transmission-protocol/798863#7988630Answer by Cayle Spandon for Unused field value in transmission protocol.Cayle Spandon2009-04-28T16:46:51Z2009-04-28T16:46:51Z<p>It is generally a good idea to specify the value of unused fields as follows:
- The sender MUST set the field to zero
- The receiver MUST ignore the field</p>
<p>That way, at some future point in time you can choose to use the field for some new feature. When you do so, all you have to do for backward compatibility is to define value 0 of the field to mean "the old behavior prior to the introduction of the new feature.</p>
<p>(Actually, it is also a good idea to introduce some form of capability announcement which allows to one side to discover whether or not the other side supports the feature, in other words whether the other side will be able to understand non-zero values for the field.)</p>
http://stackoverflow.com/questions/473327/unexpected-behavior-of-iofread-in-erlang5Unexpected behavior of io:fread in ErlangCayle Spandon2009-01-23T15:30:42Z2009-03-27T10:21:00Z
<p>This is an Erlang question.</p>
<p>I have run into some unexpected behavior by io:fread.</p>
<p>I was wondering if someone could check whether there is something wrong with the way I use io:fread or whether there is a bug in io:fread.</p>
<p>I have a text file which contains a "triangle of numbers"as follows:</p>
<pre>
59
73 41
52 40 09
26 53 06 34
10 51 87 86 81
61 95 66 57 25 68
90 81 80 38 92 67 73
30 28 51 76 81 18 75 44
...
</pre>
<p>There is a single space between each pair of numbers and each line ends with a carriage-return new-line pair.</p>
<p>I use the following Erlang program to read this file into a list.</p>
<pre>
-module(euler67).
-author('Cayle Spandon').
-export([solve/0]).
solve() ->
{ok, File} = file:open("triangle.txt", [read]),
Data = read_file(File),
ok = file:close(File),
Data.
read_file(File) ->
read_file(File, []).
read_file(File, Data) ->
case io:fread(File, "", "~d") of
{ok, [N]} ->
read_file(File, [N | Data]);
eof ->
lists:reverse(Data)
end.
</pre>
<p>The output of this program is:</p>
<pre>
(erlide@cayle-spandons-computer.local)30> euler67:solve().
[59,73,41,52,40,9,26,53,6,3410,51,87,86,8161,95,66,57,25,
6890,81,80,38,92,67,7330,28,51,76,81|...]
</pre>
<p>Note how the last number of the fourth line (34) and the first number of the fifth line (10) have been merged into a single number 3410.</p>
<p>When I dump the text file using "od" there is nothing special about those lines; they end with cr-nl just like any other line:</p>
<pre>
> od -t a triangle.txt
0000000 5 9 cr nl 7 3 sp 4 1 cr nl 5 2 sp 4 0
0000020 sp 0 9 cr nl 2 6 sp 5 3 sp 0 6 sp 3 4
0000040 cr nl 1 0 sp 5 1 sp 8 7 sp 8 6 sp 8 1
0000060 cr nl 6 1 sp 9 5 sp 6 6 sp 5 7 sp 2 5
0000100 sp 6 8 cr nl 9 0 sp 8 1 sp 8 0 sp 3 8
0000120 sp 9 2 sp 6 7 sp 7 3 cr nl 3 0 sp 2 8
0000140 sp 5 1 sp 7 6 sp 8 1 sp 1 8 sp 7 5 sp
0000160 4 4 cr nl 8 4 sp 1 4 sp 9 5 sp 8 7 sp
</pre>
<p>One interesting observation is that some of the numbers for which the problem occurs happen to be on 16-byte boundary in the text file (but not all, for example 6890).</p>
http://stackoverflow.com/questions/600642/how-do-i-concatenate-two-binaries-in-erlang2How do I concatenate two binaries in Erlang?Cayle Spandon2009-03-01T22:11:30Z2009-03-02T07:03:48Z
<p>How do I concatenate two binaries in Erlang?</p>
<p>For example, let's say I have:</p>
<pre><code>B1 = <<1,2>>.
B2 = <<3,4>>.
</code></pre>
<p>How do I concatenate B1 and B2 to create a binary B3 which is <<1,2,3,4>>?</p>
<p>The reason I am asking this is because I am writing code to encode a packet for some networking protocol. I am implementing this by writing encoders for the fields in the packet and I need to concatenate those fields to build up the whole packet.</p>
<p>Maybe I am doing this the wrong way. Should I build up the packet as a list of integers and convert the list to a binary at the last moment?</p>
http://stackoverflow.com/questions/349576/linux-retrieve-per-interface-sent-received-packet-counters-ethernet-ipv4-ipv63Linux: retrieve per-interface sent/received packet counters (ethernet, ipv4, ipv6)Cayle Spandon2008-12-08T13:38:53Z2009-02-04T13:24:32Z
<p>On Linux, how can I (programmatically) retrieve the following counters <em>on a per-interface basis</em>:</p>
<ul>
<li>Sent/received ethernet frames,</li>
<li>Sent/received IPv4 packets,</li>
<li>Sent/received IPv6 packets.</li>
</ul>
http://stackoverflow.com/questions/501918/what-are-some-good-resources-for-learning-network-programming/501952#5019527Answer by Cayle Spandon for What are some good resources for learning network programming?Cayle Spandon2009-02-02T01:07:30Z2009-02-02T01:07:30Z<p><a href="http://rads.stackoverflow.com/amzn/click/0131411551" rel="nofollow">Unix network programming</a> by Richard Stevens is a must-have book which discusses many advanced network programming techniques. I've been doing network programming for years, and even now hardly a day goes by without me looking up something in this great reference.</p>
http://stackoverflow.com/questions/89705/concurrent-prime-generator/479965#4799650Answer by Cayle Spandon for Concurrent Prime GeneratorCayle Spandon2009-01-26T14:35:50Z2009-01-26T14:35:50Z<p>You can find four different Erlang implementations for finding prime numbers (two of which are based on the Sieve of Eratosthenes) <a href="http://caylespandon.blogspot.com/2009/01/in-euler-problem-10-we-are-asked-to.html" rel="nofollow">here</a>. This link also contains graphs comparing the performance of the 4 solutions.</p>
http://stackoverflow.com/questions/146622/sieve-of-eratosthenes-in-erlang/449412#4494120Answer by Cayle Spandon for Sieve of Eratosthenes in ErlangCayle Spandon2009-01-16T03:32:21Z2009-01-16T03:32:21Z<p>Have a look here to find 4 different implementations for finding prime numbers in Erlang (two of which are "real" sieves) and for performance measurement results:</p>
<blockquote>
<p><a href="http://caylespandon.blogspot.com/2009/01/in-euler-problem-10-we-are-asked-to.html" rel="nofollow">http://caylespandon.blogspot.com/2009/01/in-euler-problem-10-we-are-asked-to.html</a></p>
</blockquote>
http://stackoverflow.com/questions/351892/is-erlang-going-to-be-the-next-big-language/357878#3578782Answer by Cayle Spandon for Is erlang going to be the next big language?Cayle Spandon2008-12-10T22:43:53Z2008-12-10T22:43:53Z<p>I don't know about Erlang being "the next big thing" but I certainly do think that Erlang is rapidly gaining popularity. It is widely used in the company I work for which is a Telco equipment vendor where very high reliability and scalability over many CPUs / cores are very important (and no, it's not Ericsson :-).</p>
http://stackoverflow.com/questions/323938/memory-leak/323961#3239611Answer by Cayle Spandon for Memory leakCayle Spandon2008-11-27T14:50:53Z2008-11-27T14:50:53Z<p>The only thing that even comes close that I can think of is when you want to test your code for handling out-of-memory conditions. This is important on embedded systems that don't have swap space, where an out-of-memory is a fatal condition.</p>
<p>If you want to get close to 100% code coverage with automated unit testing, you will have to figure out some way to make a specific allocation request fail from an automated unit test (which is easier said than done).</p>
<p>Once you have that, you need to write a unit test for each allocation request to make sure you have the out-of-memory failure is handled correctly for that allocation (a lot of work).</p>
http://stackoverflow.com/questions/31572/broadcast-like-udp-with-the-reliability-of-tcp/312593#3125930Answer by Cayle Spandon for Broadcast like UDP with the reliability of TCPCayle Spandon2008-11-23T14:53:58Z2008-11-23T14:53:58Z<p>You might want to look into <a href="http://tools.ietf.org/html/rfc3208" rel="nofollow">RFC 3208</a> "PGM Reliable Transport Protocol Specification".</p>
<p>Here is the abstract:</p>
<blockquote>
<p>Pragmatic General Multicast (PGM)
is a reliable multicast transport<br />
protocol for applications that require
ordered or unordered,<br />
duplicate-free, multicast data
delivery from multiple sources to<br />
multiple receivers. PGM guarantees
that a receiver in the group either
receives all data packets from
transmissions and repairs, or is
able to detect unrecoverable data
packet loss. PGM is specifically
intended as a workable solution for
multicast applications with basic
reliability requirements. Its central
design goal is simplicity of
operation with due regard for
scalability and network efficiency.</p>
</blockquote>
http://stackoverflow.com/questions/305554/c-do-static-primitives-become-invalid-at-program-exit/305610#3056101Answer by Cayle Spandon for C++: Do static primitives become invalid at program exit?Cayle Spandon2008-11-20T15:18:41Z2008-11-20T15:18:41Z<p>The short answer is "no": your pointer will not "become invalid" at program exit time. I.e. the pointer value will not automatically be reset to null, and destructor of the MyClass object to which it points will not automatically be called.</p>
<p>This is because a pointer is a "primitive type", i.e. not an object.</p>
<p>If you have a non-local (i.e. global or static) variable which is an object, then the rules are different: the destructor of the object will be called when the program terminates by calling exit() or by returning from the main function. It will not be called if the program terminates by calling abort().</p>
http://stackoverflow.com/questions/301693/why-didnt-unit-testing-work-out-for-your-project/301928#30192820Answer by Cayle Spandon for Why didn't unit testing work out for your project?Cayle Spandon2008-11-19T13:46:44Z2008-11-19T13:46:44Z<p>Lots of unit tests were written, but they were not maintained vigorously enough.</p>
<p>All unit tests passed at the time when they were written and checked in.</p>
<p>The unit tests were run frequently, but when some of them started failing (often because the code changed without updating the corresponding unit test) we did not fix the unit tests quickly enough.</p>
<p>We situation was allowed to deteriorate and now we have so many unit tests failing that they have become almost meaningless.</p>
<p>Running a unit test suite before a check in to make sure I am not about to break anything is useless because lots of tests are failing with and without my changes, so it is impossible to see which failures were introduced by my changes.</p>
http://stackoverflow.com/questions/163962/switching-from-stdstring-to-stdwstring-for-embedded-applications2Switching from std::string to std::wstring for embedded applications?Cayle Spandon2008-10-02T18:51:33Z2008-10-04T11:40:52Z
<p>Up until now I have been using std::string in my C++ applications for embedded system (routers, switches, telco gear, etc.).</p>
<p>For the next project, I am considering to switch from std::string to std::wstring for Unicode support. This would, for example, allow end-users to use Chinese characters in the command line interface (CLI).</p>
<p>What complications / headaches / surprises should I expect? What, for example, if I use a third-party library which still uses std::string?</p>
<p>Since support for international strings isn't that strong of a requirement for the type of embedded systems that I work on, I would only do it if it isn't going to cause major headaches.</p>
http://stackoverflow.com/questions/133335/subclipse-error-message-expected-format-3-of-repository-found-format-5/157368#1573681Answer by Cayle Spandon for Subclipse error message "Expected format '3' of repository; found format '5'"Cayle Spandon2008-10-01T12:38:09Z2008-10-01T12:38:09Z<p>(Answering myself)</p>
<p>I ended up picking the solution suggested by Cory Engebretson, which is to use Subversive instead of Subclipse. I did some googling to see if one is better than the other, and they seem to be pretty much equivalent some like one and some the other. I found the help (particualarly the installation instructions) for Subversive clearer and I was able to get it to work without too much trouble.</p>
http://stackoverflow.com/questions/133335/subclipse-error-message-expected-format-3-of-repository-found-format-51Subclipse error message "Expected format '3' of repository; found format '5'"Cayle Spandon2008-09-25T13:31:20Z2008-10-01T12:38:09Z
<p>I installed subclipse in eclipse, but I get an error message "Expected format '3' of repository; found format '5'" when I try to open a repository.</p>
<p>Here is the sequence of steps that leads to the error message.</p>
<p>Select "Window -> Open Perspective -> SNV Repository Exploring" from the Eclipse main menu.</p>
<p>Right click on the "SVN Repository" tab. Select "New -> Repository Location..." from the pop-up menu. The "Add SVN Repository" panel appears.</p>
<p>Enter "file:///Users/caylespandon/svn/MyProject" in the "Url" field. Click on the "Finish" buton.</p>
<p>A panel with the following error message appears:</p>
<pre>
Unable to Validate
Error validating location: "org.tigris.subversion.javahl.ClientException:
Couldn't open a repository
svn: Unable to open an ra_local session to URL
svn: Unable to open repository 'file:///Users/caylespandon/svn/MyProject'
Unsupported repository version
svn: Expected format '3' of repository; found format '5'
"
</pre>
<p>Note that I can access the same repository from the command line just fine:</p>
<pre>
~> svn checkout file:///Users/caylespandon/svn/MyProject
A MyProject/trunk
A MyProject/trunk/Jamrules
A MyProject/trunk/.project
A MyProject/trunk/setenv
[...]
</pre>
<p>Here is the version information:</p>
<p>Eclipse: version 3.4.0 build id I20080617-2000 </p>
<p>Subclipse version: 1.2.0 </p>
<p>SVN version: 1.4.4 (r25188) </p>
<p>Running on a Mac: OS X version 10.5.4</p>
<p>PS -- If your answer involves switching from file to svn+ssh, please explain why and how to convert an existing repository from file to svn+ssh without losing any history.</p>
http://stackoverflow.com/questions/52445/are-there-c-library-resources-similar-to-cs-boost-library/153066#1530660Answer by Cayle Spandon for Are there C library resources similar to C++'s Boost library?Cayle Spandon2008-09-30T13:43:47Z2008-09-30T13:43:47Z<p>ACE (Adaptive Communication Environment) is sometimes mentioned. It's not quite an apples-to-apples comparison. Boost provides more "basic building blocks" whereas ACE provides more of an tightly integrated framework geared towards telco products. I have used both extensively and I find Boost vastly superior. One big advantage of Boost is that many of its features will show up in the STL extensions for the upcoming C++0x standard (see, for example, <a href="http://en.wikipedia.org/wiki/Technical_Report_1" rel="nofollow">http://en.wikipedia.org/wiki/Technical_Report_1</a>).</p>
http://stackoverflow.com/questions/130740/link-error-when-compiling-gcc-atomic-operation-in-32-bit-mode/130813#1308131Answer by Cayle Spandon for Link error when compiling gcc atomic operation in 32-bit modeCayle Spandon2008-09-25T00:33:39Z2008-09-25T00:33:39Z<p>The answer from Dan Udey was close, close enough in fact to allow me to find the real solution.</p>
<p>According to the man page "-mcpu" is a deprecated synonym for "-mtune" and just means "optimize for a particular CPU (but still run on older CPUs, albeit less optimal)". I tried this, and it did not solve the issue.</p>
<p>However, "-march=" means "generate code for a particular CPU (and don't run on older CPUs)". When I tried this it solved the problem: specifying a CPU of i486 or better got rid of the link error.</p>
<pre><code>~/test> /share/tools/gcc-4.2.2/bin/g++ -m32 test.cc
/tmp/ccYnYLj6.o(.text+0x27): In function `main':
: undefined reference to `__sync_add_and_fetch_4'
collect2: ld returned 1 exit status
~/test> /share/tools/gcc-4.2.2/bin/g++ -m32 -march=i386 test.cc
/tmp/ccOr3ww8.o(.text+0x22): In function `main':
: undefined reference to `__sync_add_and_fetch_4'
collect2: ld returned 1 exit status
~/test> /share/tools/gcc-4.2.2/bin/g++ -m32 -march=i486 test.cc
~/test> /share/tools/gcc-4.2.2/bin/g++ -m32 -march=pentium test.cc
</code></pre>
http://stackoverflow.com/questions/1660655/how-to-do-erlang-pattern-matching-using-regular-expressions/1660731#1660731Comment by Cayle Spandon on How to do Erlang pattern matching using regular expressions?Cayle Spandon2009-11-02T11:42:20Z2009-11-02T11:42:20ZYes, the re module does a great job at regular expressions, but you AFAIK you cannot call functions while pattern matching or in guards.http://stackoverflow.com/questions/1457256/is-it-safe-to-issue-blocking-write-calls-on-the-same-tcp-socket-from-multiple-tComment by Cayle Spandon on Is it safe to issue blocking write() calls on the same TCP socket from multiple threads?Cayle Spandon2009-09-21T22:42:24Z2009-09-21T22:42:24ZLinux. (And I would be interested if the answer was different for other flavors of Unix, e.g. OpenBSD or OS X).http://stackoverflow.com/questions/1274681/query-an-erlang-process-for-its-state/1276996#1276996Comment by Cayle Spandon on Query an Erlang process for its state?Cayle Spandon2009-08-14T13:31:13Z2009-08-14T13:31:13Z+1: sys:get_status/1 is your friend. I use this all the time.http://stackoverflow.com/questions/1018452/most-significant-32-bits-lost-when-casting-pointer-to-int64t/1018478#1018478Comment by Cayle Spandon on Most significant 32 bits lost when casting pointer to int64_t Cayle Spandon2009-06-19T15:10:59Z2009-06-19T15:10:59ZDuh! Thanks very much.http://stackoverflow.com/questions/988222/declaration-of-ets-in-erlang/989429#989429Comment by Cayle Spandon on Declaration of ETS in ErlangCayle Spandon2009-06-15T14:13:58Z2009-06-15T14:13:58ZObject oriented functional programming! I love it! My buzzword-o-meter just went tilt!http://stackoverflow.com/questions/600642/how-do-i-concatenate-two-binaries-in-erlang/601482#601482Comment by Cayle Spandon on How do I concatenate two binaries in Erlang?Cayle Spandon2009-03-02T15:07:46Z2009-03-02T15:07:46ZPresumably this is not an O(1) operation, so it would still make sense to build a deep list (IO list) as suggested by cthulahoops and postpone walking the deep list until I am ready to send the packet?http://stackoverflow.com/questions/600642/how-do-i-concatenate-two-binaries-in-erlang/600841#600841Comment by Cayle Spandon on How do I concatenate two binaries in Erlang?Cayle Spandon2009-03-02T00:51:47Z2009-03-02T00:51:47ZThanks! I was not familiar with the concepts of deep lists and io lists in Erlang.http://stackoverflow.com/questions/118945/best-c-c-network-library/118968#118968Comment by Cayle Spandon on Best C/C++ Network LibraryCayle Spandon2009-03-01T23:26:09Z2009-03-01T23:26:09ZBoost is very good and it has the advantage that the new standard library for C++0x will be based on it to a large extent. I've used ACE extensively and I dislike it: it imposes too much of its own architecture, it doesn't mesh with STL, the code is not readable, and the documentation is not good.http://stackoverflow.com/questions/473327/unexpected-behavior-of-iofread-in-erlang/490023#490023Comment by Cayle Spandon on Unexpected behavior of io:fread in ErlangCayle Spandon2009-01-29T14:13:06Z2009-01-29T14:13:06ZLooks like you are getting warmer. Thanks for taking the time for getting to the bottom of this.http://stackoverflow.com/questions/473327/unexpected-behavior-of-iofread-in-erlang/488129#488129Comment by Cayle Spandon on Unexpected behavior of io:fread in ErlangCayle Spandon2009-01-28T20:12:08Z2009-01-28T20:12:08ZThanks! That helps. If you find a format string that works, that would certainly be helpful too. But just to make sure we are on the same page: do you think that the format string which I am using now (namely "~d") should work with my original file? In other words: there is a bug in io:fread?http://stackoverflow.com/questions/349576/linux-retrieve-per-interface-sent-received-packet-counters-ethernet-ipv4-ipv6/349623#349623Comment by Cayle Spandon on Linux: retrieve per-interface sent/received packet counters (ethernet, ipv4, ipv6)Cayle Spandon2008-12-08T16:15:11Z2008-12-08T16:15:11ZGreat! This is what I needed. Thanks!http://stackoverflow.com/questions/349576/linux-retrieve-per-interface-sent-received-packet-counters-ethernet-ipv4-ipv6/349623#349623Comment by Cayle Spandon on Linux: retrieve per-interface sent/received packet counters (ethernet, ipv4, ipv6)Cayle Spandon2008-12-08T15:07:02Z2008-12-08T15:07:02ZSounds promising. Can you elaborate and/or point to a book/website describing this? Also, would there be a performance implication if I want this turned on "all the time" on a production system?http://stackoverflow.com/questions/349576/linux-retrieve-per-interface-sent-received-packet-counters-ethernet-ipv4-ipv6Comment by Cayle Spandon on Linux: retrieve per-interface sent/received packet counters (ethernet, ipv4, ipv6)Cayle Spandon2008-12-08T15:05:09Z2008-12-08T15:05:09Zxahtep hit the nail on the head: it is easy the find the frame count. I'm looking for IPv4 and IPv6 packet counts as well.http://stackoverflow.com/questions/349576/linux-retrieve-per-interface-sent-received-packet-counters-ethernet-ipv4-ipv6/349645#349645Comment by Cayle Spandon on Linux: retrieve per-interface sent/received packet counters (ethernet, ipv4, ipv6)Cayle Spandon2008-12-08T15:03:57Z2008-12-08T15:03:57Zifconfig reports RX packets and TX packet per interface. I suspect these are ethernet frame counters. How would I get IPv4 and IPv6 packet counters?http://stackoverflow.com/questions/349576/linux-retrieve-per-interface-sent-received-packet-counters-ethernet-ipv4-ipv6/349607#349607Comment by Cayle Spandon on Linux: retrieve per-interface sent/received packet counters (ethernet, ipv4, ipv6)Cayle Spandon2008-12-08T15:02:53Z2008-12-08T15:02:53ZThanks, but I'm looking for a way to retrieve these counters on a "standard" linux system without installing any additional software.