User Ryan Fox - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T05:54:05Z http://stackoverflow.com/feeds/user/55 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1607527/finding-patterns-in-these-numbers/1608523#1608523 0 Answer by Ryan Fox for Finding patterns in these numbers Ryan Fox 2009-10-22T16:47:17Z 2009-10-22T16:47:17Z <p>This seems like a problem that would be best-solved by a neural network. Hopefully you can get a bigger data set to train with though!</p> http://stackoverflow.com/questions/1564277/why-would-you-want-to-export-symbols-in-perl 2 Why would you want to export symbols in Perl? Ryan Fox 2009-10-14T04:43:29Z 2009-10-15T07:47:17Z <p>It seems strange to me that Perl would allow a package to export symbols into another package's namespace. The exporting package doesn't know if the using package already defined a symbol by the same name, and it certainly can't guarantee that it's the only package exporting a symbol by that name.</p> <p>A <a href="http://www.perlmonks.org/?node%5Fid=182540" rel="nofollow">very common problem</a> caused by this is using CGI and LWP::Simple at the same time. Both packages export head() and cause an error. I know, it's easy enough to work around, but that's not the point. You shouldn't have to employ work arounds to use two practically-core Perl libraries.</p> <p>As far as I can see, the only reason to do this is laziness. You save some key strokes by not typing Foo:: or using an object interface, but is it really worth it?</p> http://stackoverflow.com/questions/1446841/handling-input-into-struct-elements-with-array/1447003#1447003 0 Answer by Ryan Fox for Handling input into struct elements with array Ryan Fox 2009-09-18T21:56:27Z 2009-09-18T21:56:27Z <p>You could do this, but it seems a little silly:</p> <pre><code>#include &lt;iostream&gt; typedef struct _random_struct { int var1; int var2; int var3; } random_struct; typedef struct _other_struct { int var[3]; } other_struct; union being_lazy { random_struct r; other_struct o; }; int main() { random_struct st[3]; being_lazy l[3]; for(int i = 0; i &lt; 3; ++i) { for(int j = 0; j &lt; 3; ++j) { std::cout &lt;&lt; "Enter data for var" &lt;&lt; j &lt;&lt; " in struct" &lt;&lt; i &lt;&lt; ": "; std::cin &gt;&gt; l[i].o.var[j]; } } for(int i = 0; i &lt; 3; ++i) { st[i] = l[i].r; } for(int i = 0; i &lt; 3; i++) { std::cout &lt;&lt; "struct" &lt;&lt; i &lt;&lt; ".var1 == " &lt;&lt; st[i].var1 &lt;&lt; std::endl; std::cout &lt;&lt; "struct" &lt;&lt; i &lt;&lt; ".var2 == " &lt;&lt; st[i].var2 &lt;&lt; std::endl; std::cout &lt;&lt; "struct" &lt;&lt; i &lt;&lt; ".var3 == " &lt;&lt; st[i].var3 &lt;&lt; std::endl; } } </code></pre> <p>You'd need to make sure that both random_struct and other_struct have the same structure in memory, or bad things might happen.</p> <p>Really though, if you accessing individual fields is too painful, you either want to just directly use arrays, or re-think your code.</p> http://stackoverflow.com/questions/1267619/is-this-code-on-or-o1/1267748#1267748 -1 Answer by Ryan Fox for Is this code O(N) or O(1) Ryan Fox 2009-08-12T18:02:19Z 2009-08-12T18:02:19Z <p>Pushing onto a vector does not happen in constant time in the worst case. If your vector is full, it will have the copy the contents into a larger vector before continuing. This is an O(n) operation.</p> http://stackoverflow.com/questions/1237575/how-do-i-find-out-what-all-symbols-are-exported-from-a-shared-object/1237597#1237597 1 Answer by Ryan Fox for How do i find out what all symbols are exported from a shared object? Ryan Fox 2009-08-06T08:25:30Z 2009-08-06T08:25:30Z <p>Usually, you would also have a header file that you include in your code to access the symbols.</p> http://stackoverflow.com/questions/1237266/how-can-inheritance-be-modelled-using-c/1237334#1237334 2 Answer by Ryan Fox for How can Inheritance be modelled using C? Ryan Fox 2009-08-06T06:56:55Z 2009-08-06T06:56:55Z <p>I've used an object system in C that used late-bound methods, which allowed for object-orientation with reflection.</p> <p>You can read about it <a href="http://www.vpri.org/pdf/tr2006003a%5Fobjmod.pdf" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1192310/an-online-svn-client/1231660#1231660 1 Answer by Ryan Fox for An online SVN client Ryan Fox 2009-08-05T07:26:56Z 2009-08-05T07:26:56Z <p>Here's a bit of a crazy idea:</p> <p>I've been playing with <a href="http://www.dokuwiki.org/dokuwiki" rel="nofollow">Dokuwiki</a>, which saves all of its pages as text files, rather than in a database.</p> <p>Why is this special? Well, I set up a symlink to my cgi-bin (I think I had to tell Apache to accept .txt files as Perl scripts, since Dokuwiki only looks for .txt files), and I can now edit my Perl scripts from within the wiki. I can also have the code included in a separate page which does syntax highlighting on the code.</p> <p>So using this idea, you could hack Dokuwiki to accept .c/.h/.whatever files you want as wiki pages and then make some sort of plugin that does SVN commands on a category. (categories are just directories) Or, you could use the Dokuwiki internal versioning tools, though they're not as good as SVN.</p> <p>Now, I'm not saying that this is necessarily a good idea. I'm sure that doing this is probably a huge security risk. (My wiki is hosted locally, and not externally accessible.) However, any sort of web-based write access to SVN is inherently risky.</p> http://stackoverflow.com/questions/1231489/what-techniques-can-you-use-to-encode-data-on-a-lossy-one-way-channel/1231554#1231554 3 Answer by Ryan Fox for What techniques can you use to encode data on a lossy one-way channel? Ryan Fox 2009-08-05T06:44:52Z 2009-08-05T06:44:52Z <p>Probably one of the better-known methods is to use <a href="http://en.wikipedia.org/wiki/Hamming%5Fcode" rel="nofollow">Hamming code</a>. It might not be the best way of correcting errors on large scales, but it's incredibly simple to understand.</p> http://stackoverflow.com/questions/1217880/best-c-debugger-for-linux/1217904#1217904 7 Answer by Ryan Fox for Best C++ Debugger For Linux Ryan Fox 2009-08-02T00:54:35Z 2009-08-02T00:54:35Z <p>If you're already using emacs as your editor, you can use</p> <pre><code>M-x gdb M-x gdb-many-windows </code></pre> <p>To use GDB with displays for the source code, registers, etc... Sort of similar to what you get with Visual Studio.</p> http://stackoverflow.com/questions/1053572/why-kernel-code-thread-executing-in-interrupt-context-cannot-sleep/1208242#1208242 0 Answer by Ryan Fox for Why kernel code/thread executing in interrupt context cannot sleep? Ryan Fox 2009-07-30T17:56:10Z 2009-07-30T17:56:10Z <p>Even if you could put an ISR to sleep, you wouldn't want to do it. You want your ISRs to be as fast as possible to reduce the risk of missing subsequent interrupts.</p> http://stackoverflow.com/questions/1207902/what-are-the-compelling-reasons-to-upgrade-to-emacs-23-1/1207964#1207964 9 Answer by Ryan Fox for What are the compelling reasons to upgrade to emacs 23.1? Ryan Fox 2009-07-30T17:06:25Z 2009-07-30T17:06:25Z <p>M-x butterfly</p> <p><img src="http://imgs.xkcd.com/comics/real%5Fprogrammers.png" alt="alt text" /></p> http://stackoverflow.com/questions/1162889/what-methods-are-there-to-modularize-c-code/1162939#1162939 3 Answer by Ryan Fox for What methods are there to modularize C code? Ryan Fox 2009-07-22T03:34:37Z 2009-07-22T04:56:22Z <ol> <li>Don't define variables in header files; instead, define the variable in the source file and add an extern statement (declaration) in the header. This will tie into #2 and #3.</li> <li>Use an include guard on every header. This will save so many headaches.</li> <li>Assuming you've done #1 and #2, include everything you need (but only what you need) for a certain file in that file. Don't depend on the order of how the compiler expands your include directives.</li> </ol> http://stackoverflow.com/questions/1160160/generating-all-possible-trees-of-depth-n/1162861#1162861 0 Answer by Ryan Fox for Generating all possible trees of depth N? Ryan Fox 2009-07-22T02:58:45Z 2009-07-22T02:58:45Z <p>If the only difference between node types is the number of children, then generating every possible tree with only the node type with the greatest number of children will also generate every possible tree for any combination of nodes having equal or fewer children.</p> <p>That's sort of a mouthful...</p> <p>Put another way, if 5 children is the maximum, then some of the possible trees made of only 5-children nodes will have nodes that have, for example, two actual children, and three null pointers. This is practically the same as having a node with only two children.</p> http://stackoverflow.com/questions/4208/windows-equivalent-of-nice 13 Windows Equivalent of 'nice' Ryan Fox 2008-08-07T00:39:17Z 2009-06-26T13:20:19Z <p>Is there a Windows equivalent of the Unix command, <em>nice</em>?</p> <p>I'm specifically looking for something I can use at the command line, and <strong>not</strong> the "Set Priority" menu from the task manager.</p> <p>My attempts at finding this on Google have been thwarted by those who can't come up with better adjectives.</p> http://stackoverflow.com/questions/21475/why-havent-torrents-replaced-http-downloads 13 Why haven't torrents replaced HTTP downloads? Ryan Fox 2008-08-22T00:00:33Z 2009-04-24T17:50:51Z <p>It seems to me that many sites are wasting a lot of bandwidth by providing file downloads over HTTP. If 10,000 users download a 20MB file, the website uses 200,000MB of bandwidth, assuming nothing fancy is done by the ISPs, like caching, etc. (I'm just trying to provide a simple example.)</p> <p>Here's my idea: Rather than providing a direct link to the desired file, give a link to a torrent associated with it. By itself, this would definitely fail. If the file isn't popular, no one will be able to get it. So the key to this idea is that <strong>the webserver would need to seed the file.</strong></p> <p>This is how I see it:</p> <ul> <li><p>Worst case scenario:</p> <ul> <li>The file is something really obscure, something that only one person in the world would want.</li> <li>Eventually, this person finds out where to get the file, and starts to use the torrent. </li> <li>Since it is only the webserver seeding, the person downloads at the same rate he would have over HTTP.</li> <li>There's some overhead for running the BitTorrent client, and perhaps a tracker as well. (I don't really know anything about torrent trackers.)</li> </ul></li> <li><p>Best case scenario: </p> <ul> <li>The file is something that everyone really wants, like the latest Windows update.</li> <li>The initial downloaders download at the base rate, but later downloaders can download from the server, as well as their peers.</li> <li>Users are able to download the file as fast as they possibly can.</li> <li>The cost to the company hosting the file asymptotes.</li> <li>A month later, the one person who hasn't turned their computer on for a long time connects and downloads from the webserver, since no one else is downloading anymore.</li> </ul></li> </ul> <p>Right now, there are some obstacles that might turn people off of the idea:</p> <ul> <li>You need to run a BitTorrent client on the server. There's some overhead associated with this.</li> <li>You have to add another file to the client whenever you offer another file for download.</li> <li>BitTorrent hasn't been integrated into the popular web browsers. Your grandmother doesn't want to download another program to download... whatever it is that grandmothers might be interested in downloading...</li> </ul> <p>Pretend that these problems have been solved. Are there any other problems with this idea that I haven't thought of?</p> <p>Also, are there any initiatives out there that are trying to promote this?</p> http://stackoverflow.com/questions/593140/regular-expressions-for-non-strings 1 Regular expressions for non-strings Ryan Fox 2009-02-27T00:49:29Z 2009-04-03T22:07:47Z <p>I was wondering if there is such a thing as regular expressions for sequential data that isn't a string.</p> <p>I know that regular expressions essentially boil down to DFAs, but I'm more interested in higher-level languages for specifying these DFAs.</p> http://stackoverflow.com/questions/652833/what-type-of-game-logic-would-this-be-called/653021#653021 2 Answer by Ryan Fox for What type of game logic would this be called ? Ryan Fox 2009-03-17T04:27:14Z 2009-03-17T04:36:26Z <p>It sounds like you would be best-served by using a <a href="http://en.wikipedia.org/wiki/Finite%5FState%5FMachine" rel="nofollow">state machine</a>.</p> <pre><code>State A: * Walk Forward : ++Points * Jump : Points += 100 * Points &lt; 100 : Go to State A * Points &gt; 100 : Points = 0; Go to State B * Points &gt; 150 : Points = 0; Go to State C State B: * Kill Bad Guy : ++Points * Get Hurt : --Points * Points &lt; -50 : Points = 0; Go to State A * Points &lt; 100 : Go to State C * Points &gt; 100 : Points = 0; Go to State D ...etc... </code></pre> <p>That 'Points == 150' condition is just something I made up to demonstrate the power of the state machine. If the player does something especially good to jump from less than 100 to above 150, then he gets to skip a level. You could even have bonus levels that are only accessible in this way.</p> <p>Edit: Wow, I got so engrossed in my typing, that I kinda forgot what the initial problem was. Hopefully my answer makes more sense now.</p> <p>(I think most of the other answerers are interpreting your description as logarithmic growth.)</p> http://stackoverflow.com/questions/649039/is-there-a-perl-tutorial-for-verilog-engineers/649272#649272 1 Answer by Ryan Fox for Is there a Perl tutorial for Verilog engineers? Ryan Fox 2009-03-16T04:33:11Z 2009-03-16T16:22:27Z <p>I'm not sure about parsing the output, (you'd have to be most specific about what it looks like) but there seems to be a <a href="http://search.cpan.org/perldoc?Verilog-Perl" rel="nofollow">good guide to existing Verilog-based modules</a> which has been updated recently.</p> http://stackoverflow.com/questions/625656/favourite-command-line-trick/626110#626110 0 Answer by Ryan Fox for Favourite command line trick Ryan Fox 2009-03-09T12:57:12Z 2009-03-09T12:57:12Z <p><a href="http://debaday.debian.net/2009/03/01/bash-completion-the-greatest-things-since-bash-completion/" rel="nofollow">bash-completion: the greatest things since bash completion</a></p> <p>This gives you relevant completion suggestions for what you've currently typed. Extremely useful!</p> http://stackoverflow.com/questions/231741/qr-code-2d-barcode-coding-and-decoding-algorithms/584980#584980 4 Answer by Ryan Fox for QR code (2D barcode) coding and decoding algorithms? Ryan Fox 2009-02-25T06:47:08Z 2009-02-25T06:47:08Z <p>(In response to those asking about QR codes in PHP)</p> <p>The <a href="http://code.google.com/apis/chart/types.html#qrcodes" rel="nofollow">Google Charts QR chart type</a> might work for you, if you don't expect a lot of traffic, or if you can cache the images. It's extremely easy to use- just put the text to encode in the URL.</p> http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/581798#581798 1 Answer by Ryan Fox for What was your first computer game that got you interested in computers? Ryan Fox 2009-02-24T13:50:42Z 2009-02-24T13:50:42Z <p>Final Fantasy</p> <p><img src="http://upload.wikimedia.org/wikipedia/en/d/d8/FF1%5FUSA%5Fboxart.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/580047/what-are-some-problems-that-are-hard-to-solve-in-c/580112#580112 1 Answer by Ryan Fox for What are some problems that are hard to solve in C++? Ryan Fox 2009-02-24T01:20:21Z 2009-02-24T01:20:21Z <p>I think you need a <a href="http://fishbowl.pastiche.org/2007/07/17/understanding_engineers_feasibility/" rel="nofollow">refresher on the terminology</a>. "Hard" doesn't mean impossible.</p> http://stackoverflow.com/questions/510277/algorithm-for-finding-redundant-edges-in-a-graph-or-tree 7 Algorithm for Finding Redundant Edges in a Graph or Tree Ryan Fox 2009-02-04T06:29:01Z 2009-02-05T00:54:01Z <p>Is there an established algorithm for finding redundant edges in a graph?</p> <p>For example, I'd like to find that a->d and a->e are redundant, and then get rid of them, like this:</p> <p><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/5/51/Tred-G.png/124px-Tred-G.png" alt="alt text" /> => <img src="http://upload.wikimedia.org/wikipedia/commons/thumb/1/1f/Tred-Gprime.png/80px-Tred-Gprime.png" alt="alt text" /></p> <p>Edit: Strilanc was nice enough to read my mind for me. "Redundant" was too strong of a word, since in the example above, neither a->b or a->c is considered redundant, but a->d is.</p> http://stackoverflow.com/questions/471929/whats-the-coolest-startup-programmer-job-title/478213#478213 2 Answer by Ryan Fox for What's the coolest startup programmer job title? Ryan Fox 2009-01-25T20:26:28Z 2009-01-25T20:26:28Z <p>Man With Whip</p> http://stackoverflow.com/questions/477200/programming-language-history/477268#477268 2 Answer by Ryan Fox for Programming language history Ryan Fox 2009-01-25T06:35:45Z 2009-01-25T06:35:45Z <p><a href="http://www.digibarn.com/collections/posters/tongues/tongues.jpg" rel="nofollow">Here's a graph</a> of the progression of programming languages, up to 2001. Not many details, but a nice visual.</p> http://stackoverflow.com/questions/402247/anyone-using-short-and-byte-primitive-types-in-real-apps/402252#402252 4 Answer by Ryan Fox for Anyone using short and byte primitive types, in real apps? Ryan Fox 2008-12-31T03:42:08Z 2008-12-31T03:42:08Z <p>Keep in mind that Java is also used on mobile devices, where memory is much more limited.</p> http://stackoverflow.com/questions/385023/why-do-you-use-typedef-when-declaring-an-enum-in-c/385033#385033 8 Answer by Ryan Fox for Why do you use typedef when declaring an enum in C++ ? Ryan Fox 2008-12-21T22:05:29Z 2008-12-21T22:11:54Z <p>In C, declaring your enum the first way allows you to use it like so:</p> <pre><code>TokenType my_type; </code></pre> <p>If you use the second style, you'll be forced to declare your variable like this:</p> <pre><code>enum TokenType my_type; </code></pre> <p>As mentioned by others, this doesn't make a difference in C++. My guess is that either the person who wrote this is a C programmer at heart, or you're compiling C code as C++. Either way, it won't affect the behaviour of your code.</p> http://stackoverflow.com/questions/33643/diagramming-software-for-a-developer-designer/382913#382913 2 Answer by Ryan Fox for Diagramming Software for a Developer/Designer Ryan Fox 2008-12-20T04:24:13Z 2008-12-20T04:24:13Z <p>You should look into <a href="http://www.graphviz.org/" rel="nofollow">Graphviz</a>. It's easy to use both by hand, and programmatically! You can output to images or PDFs, or a bunch of other formats.</p> http://stackoverflow.com/questions/380490/speeding-up-text-output-on-windows-for-a-console/380531#380531 1 Answer by Ryan Fox for Speeding up text output on Windows, for a console Ryan Fox 2008-12-19T09:46:41Z 2008-12-19T09:46:41Z <p>Are the output windows part of the same application? It almost sounds like they aren't...</p> <p>If they are, you should look into the <a href="http://en.wikipedia.org/wiki/Observer_pattern" rel="nofollow">Observer design pattern</a> to get away from SendMessage(). I've used it for the same type of use case, and it worked beautifully for me.</p> <p>If you can't make a change like that, perhaps you could buffer your output for something like 100ms so that you don't have so many out-going messages per second, but it should also update at a comfortable rate.</p> http://stackoverflow.com/questions/366566/how-do-i-prepare-myself-for-working-with-other-programmers/366989#366989 0 Answer by Ryan Fox for How do I prepare myself for working with other programmers? Ryan Fox 2008-12-14T21:07:52Z 2008-12-14T21:07:52Z <p>Be ready to deal with people who will do nothing (either on purpose or by accident) and then try to take credit for the work.</p> http://stackoverflow.com/questions/1636221/why-doesnt-my-cgi-scripts-die-message-display-in-the-browser/1636266#1636266 Comment by Ryan Fox on Why doesn't my CGI script's "die" message display in the browser? Ryan Fox 2009-10-28T10:42:33Z 2009-10-28T10:42:33Z die does more than just print a message. It will also exit the script, and perhaps other things. (Return an error code?) http://stackoverflow.com/questions/1564277/why-would-you-want-to-export-symbols-in-perl/1564283#1564283 Comment by Ryan Fox on Why would you want to export symbols in Perl? Ryan Fox 2009-10-14T05:02:49Z 2009-10-14T05:02:49Z $foo-&gt; as in: my $foo = new Blah::Whatever; $foo-&gt;bar(); http://stackoverflow.com/questions/1478932/check-if-user-inputs-a-letter-or-number-in-c/1478986#1478986 Comment by Ryan Fox on Check if User Inputs a Letter or Number in C Ryan Fox 2009-09-25T21:41:33Z 2009-09-25T21:41:33Z What do you have against vowels? If you're going to remove the meaning from your variable names, you might as well just go with 'v'. http://stackoverflow.com/questions/1446841/handling-input-into-struct-elements-with-array/1446995#1446995 Comment by Ryan Fox on Handling input into struct elements with array Ryan Fox 2009-09-18T21:57:58Z 2009-09-18T21:57:58Z Why not just edit the original question? http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/988#988 Comment by Ryan Fox on Fastest way to get value of pi Ryan Fox 2009-09-18T05:32:37Z 2009-09-18T05:32:37Z Not sure what to tell you... It seems fine to me. http://stackoverflow.com/questions/1255223/what-are-the-important-notions-in-c-that-you-did-not-learn-from-your-teachers/1258020#1258020 Comment by Ryan Fox on What are the important notions in C that you did not learn from your teachers Ryan Fox 2009-08-12T04:59:11Z 2009-08-12T04:59:11Z What's wrong with 0? http://stackoverflow.com/questions/1237963/alignment-along-4-byte-boundaries/1238034#1238034 Comment by Ryan Fox on Alignment along 4-byte boundaries Ryan Fox 2009-08-06T10:27:05Z 2009-08-06T10:27:05Z char* ptr will be aligned, since it is a pointer. http://stackoverflow.com/questions/1237640/what-to-do-if-someone-tries-to-add-part-of-a-product-to-a-basket/1237659#1237659 Comment by Ryan Fox on What to do if someone tries to add part of a product to a basket? Ryan Fox 2009-08-06T09:29:19Z 2009-08-06T09:29:19Z Throwing away non-numeric characters might get you in trouble when a customer inadvertently order 46 of a product, instead of 4.6. http://stackoverflow.com/questions/1231489/what-techniques-can-you-use-to-encode-data-on-a-lossy-one-way-channel/1231512#1231512 Comment by Ryan Fox on What techniques can you use to encode data on a lossy one-way channel? Ryan Fox 2009-08-05T06:47:37Z 2009-08-05T06:47:37Z You would need to add additional information to identify each packet. ie: If A got through each time, you'd want to ignore it after the first time. Also, you don't want B to be taken as A in the fourth iteration. http://stackoverflow.com/questions/1207902/what-are-the-compelling-reasons-to-upgrade-to-emacs-23-1/1207964#1207964 Comment by Ryan Fox on What are the compelling reasons to upgrade to emacs 23.1? Ryan Fox 2009-07-30T17:43:16Z 2009-07-30T17:43:16Z Nothing, really... It asks if you want to unleash the power of the butterfly. If you say yes, you get a little animation. If you say no, it loads the page for the xkcd comic I included in my answer. http://stackoverflow.com/questions/1207902/what-are-the-compelling-reasons-to-upgrade-to-emacs-23-1/1207964#1207964 Comment by Ryan Fox on What are the compelling reasons to upgrade to emacs 23.1? Ryan Fox 2009-07-30T17:20:41Z 2009-07-30T17:20:41Z Youtube did it. http://stackoverflow.com/questions/1124363/how-can-i-convince-my-department-to-implement-a-version-control-system/1124386#1124386 Comment by Ryan Fox on How can I convince my department to implement a version control system? Ryan Fox 2009-07-14T10:11:29Z 2009-07-14T10:11:29Z You're not very creative then. VCS-hating bears are now more likely to attack. ... Also, it adds another step into the employee's process, and it's a bunch of new terminology and commands that they have to learn. Considering they're mostly over 40, that could be a big disadvantage! http://stackoverflow.com/questions/1124363/how-can-i-convince-my-department-to-implement-a-version-control-system/1124406#1124406 Comment by Ryan Fox on How can I convince my department to implement a version control system? Ryan Fox 2009-07-14T10:08:18Z 2009-07-14T10:08:18Z VCS does too have cost: 1) Licensing the software 2) Paying the person in charge of maintaining the repository 3) Training your users on how to use the new system http://stackoverflow.com/questions/1114565/how-can-i-find-last-node-of-a-circular-linked-list-whose-size-i-dont-know-and-the/1114572#1114572 Comment by Ryan Fox on how can I find last node of a circular linked list whose size I dont know and the last node points to any other node except first node of the linked list? Ryan Fox 2009-07-11T20:53:53Z 2009-07-11T20:53:53Z That's not what memoization is. Perhaps you should read your link. http://stackoverflow.com/questions/3553/one-piece-of-advice/3605#3605 Comment by Ryan Fox on One piece of advice Ryan Fox 2009-05-09T04:26:46Z 2009-05-09T04:26:46Z That's a good point too. Sometimes just trying to figure out how to phrase your problem to tell it to someone else helps you figure out how to solve it.