User RCIX - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T18:15:50Z http://stackoverflow.com/feeds/user/117069 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1777582/turing-machine-code-golf 10 Turing Machine Code Golf RCIX 2009-11-22T02:11:55Z 2009-12-01T03:01:10Z <p>Ok guys, today's goal is to build a Turing machine simulator. For those that don't know what it is, see <a href="http://en.wikipedia.org/wiki/Turing%5Fmachine" rel="nofollow">the Wikipedia article</a>. The state table we are using today is found at the end of <a href="http://en.wikipedia.org/wiki/Turing%5Fmachine#Formal%5Fdefinition" rel="nofollow">the Formal Definition that's part of that page</a>.</p> <p>The code will take a sequence of "0" and "1" string characters, an integer representing the character that the machine starts with, and an integer representing the state of the program (in no particular order), and output the final result of the operations on the string, as well as the final position. Examples:</p> <p>Example 1:</p> <pre><code>1010 state A(0) ^ (3) 1011 state B(1) ^ (2) 1011 state B(1) ^ (1) 1111 state A(0) ^ (2) 1111 state C(0) ^ (3) 1111 HALT ^ (2) </code></pre> <p>Example 2:</p> <pre><code>110100 state B(1) ^ (3) 110100 state B(1) ^ (2) 111100 state A(0) ^ (3) 111100 state C(2) ^ (4) 111110 state B(1) ^ (5) 1111110 state A(0) ^ (6, tape has been extended to right) 1111111 state B(1) ^ (5) 1111111 state B(1) ^ (4) 1111111 state B(1) ^ (3) 1111111 state B(1) ^ (2) 1111111 state B(1) ^ (1) 1111111 state B(1) ^ (0) 01111111 state B(1) ^ (0, tape has been extended to left) 11111111 state A(0) ^ (1) 11111111 state C(2) ^ (2) 11111111 HALT ^ (1) </code></pre> <p>Misc:</p> <ul> <li>Your code must properly handle attempts to write into "blank spaces" on the tape, by extending the string as necessary.</li> <li>Since the state machine specified does not specify any sort of "blank tape" action, treat all blank values as 0.</li> <li>You must count only the method that handles evaluation of a string with initial state, how you output that data is up to you.</li> <li>Moving right on the tape is incrementing up (string position 0 is all the way at the left), state 0 is A, state 1 is B, and state 2 is C.</li> </ul> <p><strong>(hopefully) final edit:</strong> I offer my most sincere apologies as to the confusion and trouble I've caused with this question: I misread the supplied state table I listed, and got it backwards. I hope you'll forgive me for wasting your time; it was entirely unintentional!</p> http://stackoverflow.com/questions/1818425/using-flyweight-pattern-in-database-driven-application/1818460#1818460 1 Answer by RCIX for Using Flyweight Pattern in database-driven application RCIX 2009-11-30T08:12:59Z 2009-11-30T08:19:01Z <p>[Not a DB guy so this is my best guess]</p> <p>The real bonus to the flyweight pattern is that you can reuse data if you need to; Another example is word processing where ideally you would have an object per "character" in your document, but that wuld eat up way too much memory so the flyweight memory lets you only store one of each unique value that you need.</p> <p>A second (and perhaps simplest) way to look at it is like object pooling, only you're pooling on a "per-field" level as opposed to a "per-object" level.</p> <p>In fact, now that i think about it, it's not unlike using a (comparatively small) chunk of memory in c(++) so store some raw data which you do pointer manipulation to get stuff out of.</p> <p>[<a href="http://en.wikipedia.org/wiki/Flyweight%5Fpattern" rel="nofollow">See this wikpedia article</a>].</p> http://stackoverflow.com/questions/1818427/getting-a-process-to-terminate 0 Getting a Process to terminate RCIX 2009-11-30T08:04:48Z 2009-11-30T08:12:02Z <p>I have a process object setup like the following:</p> <pre><code>Process p = new Process(); p.StartInfo.FileName = command; p.StartInfo.UseShellExecute = true; p.StartInfo.Arguments = String.Format( commandArguments, destinationLocation, sourceLocation, sourceDirName, (string.IsNullOrEmpty(revisionNotes.Text)) ? "" : revisionNotes.Text); </code></pre> <p>(where undefined values are supplied externally to this code and are valid). The process in question launches and properly executes with <code>p.Start();</code> but i need to catch it on termination. The console window flashes up briefly and goes away which would seem to indicate that the process is done, but none of the relevant events are fired (OutputDataRecieved, Exited, etc) and it's like the process never ends. (I'm trying to execute a lua script with some parameters if that's relevant). Can someone help me get this process to stop correctly?</p> http://stackoverflow.com/questions/1818131/convert-an-enum-to-another-type-of-enum/1818152#1818152 2 Answer by RCIX for convert an enum to another type of enum RCIX 2009-11-30T06:28:16Z 2009-11-30T06:48:29Z <p>you could write a simple function like the following:</p> <pre><code>public static MyGender ConvertTo(TheirGender theirGender) { switch(theirGender) { case TheirGender.Male: break;//return male case TheirGender.Female: break;//return female case TheirGender.Unknown: break;//return whatever } } </code></pre> http://stackoverflow.com/questions/1817562/execute-a-shell-command-from-a-net-application 0 Execute a shell command from a .net application RCIX 2009-11-30T02:11:30Z 2009-11-30T04:06:34Z <p>I need to execute a shell command from my .NET app, not unlike <a href="http://lua-users.org/wiki/OsLibraryTutorial" rel="nofollow"><code>os.execute</code></a>(a little ways down on that page) in Lua. However with a cursory search i couldn't find anything, how do i do it?</p> http://stackoverflow.com/questions/1817473/align-controls-to-center-of-form-in-windows-forms-designer 0 Align controls to center of form in Windows Forms Designer RCIX 2009-11-30T01:35:47Z 2009-11-30T02:06:47Z <p>This is something that's been driving me up the wall: how can i get the windows forms designer to provide pixel snapping for the horizontal and vertical centers of the form I'm working on?</p> http://stackoverflow.com/questions/1815163/lua-get-command-line-input-from-user 1 Lua - get command line input from user? RCIX 2009-11-29T10:14:49Z 2009-11-29T10:30:33Z <p>In my lua program, i want to stop and ask user for confirmation before proceeding with an operation. I'm not sure how to stop and wait for user input, how can it be done?</p> http://stackoverflow.com/questions/1811562/rolling-my-own-version-control -2 Rolling my own "Version Control" RCIX 2009-11-28T04:31:41Z 2009-11-29T05:07:18Z <p>I'm a hobby developer and i want to put my projects in some sort of version control. I've tried several version control systems (git i think, SVN, mercurial, bazaar) and they were a pain in the neck for one or more of the following reasons:</p> <ul> <li>There was no GUI interface</li> <li>The gui interface it DID have was clunky</li> <li>it plastered decals all over my files in Explorer</li> <li>i couldn't figure out how to get any projects into it properly (whether that was the fault of the interface, or the lack of a plugin for VS depends on the software)</li> <li>None of them seemed to have a facility for rolling back to a previous revision</li> </ul> <p>Thus, i'm thinking of rolling my own. I only need a <em>very</em> simple system which allows committing of revisions and rolling back to a previous version. I can accomplish branching and merging/change inspection via a combination of Copying and WinMerge.</p> <p>I plan to write the actual code that does the heavy lifting in lua with an occasional shell command executed for copying and such, and either AutoHotKey or a combination of AutoHotKey and Winforms/.NET for the gui interface (depends on how easy it is to create dialogs with input in AHK). I wanted to pick your brains on this, what do you guys think? is there software already that does what i want?</p> <p>To rephrase my question in short: is there a minimal-functionality version control system that basically handles backup, revision annotation and rollback, and little to nothing else, failing that what is your opinion on my implementation and suggestions for improvement?</p> <p>[I hope this doesn't get closed, i really think it's on topic and useful to the community.]</p> http://stackoverflow.com/questions/1812209/finding-free-individual-note-sounds-for-procedural-music 0 Finding free individual note sounds for procedural music RCIX 2009-11-28T10:41:31Z 2009-11-28T12:17:45Z <p>If you want to make procedural music, generally you're going to need individual note sounds (for whatever instrument) which you can string together. Is there somewhere i can get these for free, preferably usable for commercial purposes?</p> http://stackoverflow.com/questions/1811846/how-to-get-the-second-highest-number-in-an-array-in-visual-c/1811892#1811892 6 Answer by RCIX for How to get the second highest number in an array in Visual C#? RCIX 2009-11-28T07:36:11Z 2009-11-28T08:57:29Z <p>Try this (using LINQ):</p> <pre><code>int secondHighest = (from number in numbers orderby number descending select number).Skip(1).First(); </code></pre> http://stackoverflow.com/questions/1811884/lua-string-format-options 1 Lua string.format options RCIX 2009-11-28T07:31:34Z 2009-11-28T08:10:39Z <p>This may seem like a stupid question, but what are the symbols used for string replacement in string.format? can someone point me to a simple example of how to use it?</p> http://stackoverflow.com/questions/1811756/how-to-get-the-maximum-of-more-than-2-numbers-in-visual-c/1811763#1811763 3 Answer by RCIX for How to get the maximum of more than 2 numbers in Visual C#? RCIX 2009-11-28T06:18:39Z 2009-11-28T06:24:07Z <p>Straightforward way:</p> <pre><code>Math.Max(Math.Max(a,b), c)//on and on for the number of numbers you have </code></pre> <p>using LINQ:</p> <pre><code>int[] arr1; int[] arr2; int highest = (from number in new List&lt;int&gt;(arr1).AddRange(arr2) orderby number descending select number).First(); </code></pre> http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/1767920#1767920 0 Answer by RCIX for What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow) RCIX 2009-11-20T02:18:53Z 2009-11-27T06:43:24Z <p>Aww why not! Here's an extension to IList (can't be IEnumerable because i use list specific features) for insertion sort.</p> <pre><code>internal static class SortingHelpers { /// &lt;summary&gt; /// Performs an insertion sort on this list. /// &lt;/summary&gt; /// &lt;typeparam name="T"&gt;The type of the list supplied.&lt;/typeparam&gt; /// &lt;param name="list"&gt;the list to sort.&lt;/param&gt; /// &lt;param name="comparison"&gt;the method for comparison of two elements.&lt;/param&gt; /// &lt;returns&gt;&lt;/returns&gt; public static void InsertionSort&lt;T&gt;(this IList&lt;T&gt; list, Comparison&lt;T&gt; comparison) { for (int i = 2; i &lt; list.Count; i++) { for (int j = i; j &gt; 1 &amp;&amp; comparison(list[j], list[j - 1]) &lt; 0; j--) { T tempItem = list[j]; list.RemoveAt(j); list.Insert(j - 1, tempItem); } } } } </code></pre> <p>An example:</p> <pre><code>List&lt;int&gt; list1 = { 3, 5, 1, 2, 9, 4, 6 }; list1.InsertionSort((a,b) =&gt; a - b); //list is now in order of 1,2,3,4,5,6,9 </code></pre> http://stackoverflow.com/questions/1801770/how-do-i-find-the-drive-to-learn/1806768#1806768 3 Answer by RCIX for How do I find the drive to learn? RCIX 2009-11-27T04:42:09Z 2009-11-27T04:55:22Z <p>First of all, like others said, you should think about programming and see if anything in it interests you. if it doesn't then something else may be for you.</p> <p>However, if you can think of something that would be interesting, then you should try it! some examples are:</p> <ul> <li>robot programming with the <a href="http://en.wikipedia.org/wiki/BASIC%5FStamp" rel="nofollow">BASIC Stamp</a> or a <a href="http://en.wikipedia.org/wiki/Lego%5FMindstorms%5FNXT" rel="nofollow">Mindstorms kit</a> (you can program the Mindstorms in several languages) (great for getting "tangible" programs)</li> <li>Low-level programming with C or <a href="http://en.wikipedia.org/wiki/X86%5Fassembly%5Flanguage" rel="nofollow">assembler</a> (challenging but some like it, you could make a little dummy OS or something if you really worked at it and had some practice)</li> <li>Web programming making sites with <a href="http://php.net/index.php" rel="nofollow">PHP</a>, <a href="http://lua.org/" rel="nofollow">Lua</a>, <a href="http://en.wikipedia.org/wiki/Ajax%5F%28programming%29" rel="nofollow">AJAX</a>, or similar (um, not sure what the draw is here, maybe showing stuff off and maybe producing something that lots of people use?)</li> <li>Scripting for games or general-purpose tasks with <a href="http://lua.org/" rel="nofollow">Lua</a>, <a href="http://www.perl.org/" rel="nofollow">Perl</a> or <a href="http://www.python.org/" rel="nofollow">Python</a> (game modifying can often be a good introduction to scripting)</li> <li>Mobile devices programming for the <a href="http://developer.apple.com/iphone/" rel="nofollow">iPhone</a>, <a href="http://developer.android.com/sdk/" rel="nofollow">Android</a> or <a href="http://msdn.microsoft.com/en-us/windowsmobile/default.aspx" rel="nofollow">Windows Mobile</a> platforms (Objective-C and either python or java, and C#) (make the next iShoot maybe? ;) )</li> <li>Game programming with C++, <a href="http://msdn.microsoft.com/en-us/vcsharp/default.aspx" rel="nofollow">C#</a>, <a href="http://www.python.org/" rel="nofollow">Python</a>, or <a href="http://lua.org/" rel="nofollow">Lua</a> (you could make a cool little 2D game or something)</li> </ul> <p>For instance, i just wrote a small lua script that strips off preceding whitespace from all lines in a file then writes it out all on one line, here it is:</p> <pre><code>filename = arg[1] if not filename then os.execute("echo did not pass a filename") os.exit() end file = io.open(filename, "r") if not file then os.execute("echo did not pass a proper filename") os.exit() end output = io.open(string.gsub(filename, ".lua", "") .. "_compressed.lua", "w+") for line in file:lines() do line = line:gsub("\n", "") line = line:gsub("\r", "") local i = 1 while line:sub(i,i) == " " or line:sub(i,i) == " " do line = line:sub(i+1, #line) end output:write(line .. " ") end </code></pre> <p>Helps code golfing a lot!</p> <p>In your case i would really recommend robot programming or general scripting, as those have the "most bang for the buck" at least as far as you're concerned. They are most suited to practical application, with a focus on offering immediate, tangible results.</p> <p>For the record, i am actually in kind of the same boat you are. Not sure what to program though for me it's more of a hobby thing.</p> http://stackoverflow.com/questions/1782442/free-code-to-flowchart-uml-tool-for-c-code 0 Free Code-to-Flowchart/UML tool for C# code RCIX 2009-11-23T11:05:58Z 2009-11-26T05:18:34Z <p>I'm looking for a free tool similar to <a href="http://www.aivosto.com/visustin.html" rel="nofollow">Visustin</a>. Are there any like that that exist?</p> http://stackoverflow.com/questions/1801134/upnp-library-for-net/1801331#1801331 0 Answer by RCIX for UPnP Library for .Net RCIX 2009-11-26T03:07:18Z 2009-11-26T03:07:18Z <p>Does <a href="http://msdn.microsoft.com/en-us/library/aa382261%28VS.85%29.aspx" rel="nofollow">this</a> help?</p> http://stackoverflow.com/questions/1777582/turing-machine-code-golf/1777924#1777924 1 Answer by RCIX for Turing Machine Code Golf RCIX 2009-11-22T05:38:54Z 2009-11-26T02:59:28Z <p><strong>Lua:</strong></p> <p>Semi-golfed version:</p> <pre><code>a=arg t=a[1] i=a[2]+1 s=a[3]+0 r=string.rep b=string.sub;z="0";o="1";while true do if i&lt;1 then t=z..t i=1 elseif i&gt;#t then t=t..z end c=b(t,i,i) if i&gt;0 then t=b(t,0,i-1)..o..b(t,i+1,#t) else t="1"..b(t,i+1,#t) end if s==0 then if c==z then i=i-1 s=1 elseif c==o then i=i+1 s=2 end elseif s==1 then if c==z then i=i+1 s=0 elseif c==o then i=i-1 end elseif s==2 then if c==z then i=i+1 s=1 elseif c==o then i=i-1 break end end end print(t,i-1) </code></pre> <p>Compacted version weighing in at <strong>441</strong> characters:</p> <pre><code>a=arg t=a[1] i=a[2]+1 s=a[3]+0 r=string.rep b=string.sub;z="0";o="1";while true do if i&lt;1 then t=z..t i=1 elseif i&gt;#t then t=t..z end c=b(t,i,i) if i&gt;0 then t=b(t,0,i-1)..o..b(t,i+1,#t) else t="1"..b(t,i+1,#t) end if s==0 then if c==z then i=i-1 s=1 elseif c==o then i=i+1 s=2 end elseif s==1 then if c==z then i=i+1 s=0 elseif c==o then i=i-1 end elseif s==2 then if c==z then i=i+1 s=1 elseif c==o then i=i-1 break end end end print(t,i-1) </code></pre> <p>Pass the arguments in form of tape, instruction pointer, state, like the following:</p> <pre><code>turing.lua 1010 3 0 </code></pre> http://stackoverflow.com/questions/1795065/what-is-direct-2d-rendering-in-browser/1795070#1795070 0 Answer by RCIX for What is direct 2D rendering in Browser.. RCIX 2009-11-25T06:43:14Z 2009-11-25T06:43:14Z <p><a href="http://msdn.microsoft.com/en-us/library/dd370990%28VS.85%29.aspx" rel="nofollow">Direct2D</a></p> <p>From Wikipedia:</p> <blockquote> <p>Direct2D is a 2D and vector graphics application programming interface (API) designed by Microsoft and implemented in Windows 7 and Windows Server 2008 R2, and also Windows Vista and Windows Server 2008 (with Platform Update installed).</p> <p>Direct2D is designed to be fast with support for hardware acceleration through compatible graphics cards. It provides high quality immediate rendering of 2D graphics while maintaining interoperability with GDI/GDI+ and Direct3D/DirectDraw.</p> <p>Internet Explorer 9 and Firefox will use Direct2D and DirectWrite for better performance.</p> </blockquote> http://stackoverflow.com/questions/1794516/how-do-i-install-visual-studio-dll-files/1794559#1794559 0 Answer by RCIX for How do I install Visual Studio dll files? RCIX 2009-11-25T04:10:20Z 2009-11-25T04:10:20Z <p>Generally you would add them to the project you want to use them in, then add a reference, and then use them like any other dll.</p> <p>For installing into the GAC, see <a href="http://msdn.microsoft.com/en-us/library/ex0ss12c%28VS.80%29.aspx" rel="nofollow">this</a>.</p> http://stackoverflow.com/questions/1749905/code-golf-fractran/1754011#1754011 4 Answer by RCIX for Code Golf: Fractran RCIX 2009-11-18T06:18:10Z 2009-11-24T01:12:31Z <p><strong>C#:</strong></p> <p>Tidy version:</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Test { class Program { static void Main(string[] args) { int ip = 1; decimal reg = Convert.ToInt32(args[0]); while (true) { if (ip+1 &gt; args.Length) { break; } decimal curfrac = Convert.ToDecimal(args[ip]) / Convert.ToDecimal(args[ip+1]); if ((curfrac * reg) % 1 == 0) { ip = 1; reg = curfrac * reg; } else { ip += 2; } } Console.WriteLine(reg); Console.ReadKey(true); } } } </code></pre> <p>Cut down version weighing in at <strong>201 chars</strong> (without the namespace declarations or any of that, just the single using statement (not system) and the Main function):</p> <pre><code>using System;namespace T{using b=Convert;static class P{static void Main(string[] a){int i=1;var c=b.ToDecimal(a[0]);while(i+1&lt;=a.Length){var f=b.ToDecimal(a[i])/b.ToDecimal(a[i+1]);if((f*c)%1==0){i=1;c*=f;}else{i+=2;}}Console.Write(c);}}} </code></pre> <p>Examples (input is through command line arguments):</p> <pre><code>input: 108 3 2 output: 243.00 input: 1296 3 2 output: 6561.0000 input: 108 455 33 11 13 1 11 3 7 11 2 1 3 output: 45045.000000000000000000000000 </code></pre> http://stackoverflow.com/questions/1781948/net-application-very-slow-to-start-cryptnet-dll-trying-to-access-ip-in-bermuda/1782034#1782034 0 Answer by RCIX for .NET application very slow to start - cryptnet.dll trying to access IP in Bermuda RCIX 2009-11-23T09:31:23Z 2009-11-23T09:31:23Z <p>Does <a href="http://blogs.technet.com/markrussinovich/archive/2009/05/26/3244913.aspx" rel="nofollow">this</a> help? It seems similar.</p> http://stackoverflow.com/questions/110641/how-do-you-code-the-hello-world-program-in-your-favourite-language/1781593#1781593 0 Answer by RCIX for How do you code the "Hello World!" program in your favourite language? RCIX 2009-11-23T07:27:35Z 2009-11-23T07:27:35Z <p>Lua:</p> <pre><code>print "Hello World!" </code></pre> http://stackoverflow.com/questions/1770427/code-golf-what-is-the-shortest-program-that-compiles-and-crashes/1774654#1774654 3 Answer by RCIX for Code-Golf: What is the shortest program that compiles and crashes? RCIX 2009-11-21T05:55:02Z 2009-11-23T06:05:20Z <p>to quote <a href="http://stackoverflow.com/questions/62188/stack-overflow-code-golf">this answer</a>:</p> <blockquote> <p>All these answers and no Befunge? I'd wager a fair amount it's shortest solution of them all:</p> <pre><code>1 </code></pre> <p>Not kidding. Try it yourself: <a href="http://www.quirkster.com/js/befunge.html" rel="nofollow">http://www.quirkster.com/js/befunge.html</a></p> <p>EDIT: I guess I need to explain this one. The 1 operand pushes a 1 onto Befunge's internal stack and the lack of anything else puts it in a loop under the rules of the language.</p> <p>Using the interpreter provided, you will eventually--and I mean eventually--hit a point where the Javascript array that represents the Befunge stack becomes too large for the browser to reallocate. If you had a simple Befunge interpreter with a smaller and bounded stack--as is the case with most of the languages below--this program would cause a more noticeable overflow faster.</p> </blockquote> http://stackoverflow.com/questions/1780815/how-do-you-like-your-naming-conventions/1780905#1780905 0 Answer by RCIX for How do you like your naming conventions? RCIX 2009-11-23T03:04:35Z 2009-11-23T03:04:35Z <p>I use</p> <pre><code>PublicVariable _nonPublicVariable localToMethodVariable </code></pre> <p>. Prefixing my private stuff with _ helps me distingush it from public and local variables so i don't use the wrong variable. But mostly its a matter of taste and convention.</p> http://stackoverflow.com/questions/1777944/analogy-a-programming-language-without-namespaces-is-like/1777991#1777991 0 Answer by RCIX for Analogy? A programming language without namespaces is like (...) RCIX 2009-11-22T06:17:27Z 2009-11-22T06:17:27Z <p>It's like living in a house without walls. Everyone can see everything you are doing.</p> http://stackoverflow.com/questions/1777719/what-is-the-definition-of-an-implementation-detail/1777728#1777728 6 Answer by RCIX for What is the definition of an implementation detail? RCIX 2009-11-22T03:40:19Z 2009-11-22T06:13:07Z <p>It's a behavior produced by code which may be relied on by consuming code, though that behavior is not specified by the spec the code is written to. Hence, other implementations of the same spec may not exhibit the same behavior, and will break that consuming code. That's why it's bad to rely on them.</p> <p>For instance, if you were to write some code against a list interface which specified an array sort but not the algorithm it used, and you needed the sort method to be <a href="http://en.wikipedia.org/wiki/Sorting%5Falgorithms#Stability" rel="nofollow">stable</a>, and a version of your code was used with a non-stable sort algorithm, then your code would break.</p> http://stackoverflow.com/questions/1749905/code-golf-fractran/1753884#1753884 2 Answer by RCIX for Code Golf: Fractran RCIX 2009-11-18T05:42:07Z 2009-11-21T05:45:46Z <p><strong>Lua:</strong></p> <p>Tidy code:</p> <pre><code>a=arg; ip=2; reg=a[1]; while a[ip] do curfrac = a[ip] / a[ip+1]; if (curfrac * reg) % 1 == 0 then ip=2; reg = curfrac * reg else ip=ip+2 end end print(reg) </code></pre> <p>Compact code weighing in at <strong>98 chars</strong> (reduction suggested by Scoregraphic on my other answer, and more suggested by gwell):</p> <pre><code>a=arg i=2 r=a[1]while a[i]do c=a[i]/a[i+1]v=c*r if v%1==0 then i=2 r=v else i=i+2 end end print(r) </code></pre> <p>Run from the command line, supplying the base number first then the series of fractions presented as numbers with space separation, like the following:</p> <pre><code>C:\Users\--------\Desktop&gt;fractran.lua 108 3 2 243 C:\Users\--------\Desktop&gt;fractran.lua 1296 3 2 6561 C:\Users\--------\Desktop&gt;fractran.lua 108 455 33 11 13 1 11 3 7 11 2 1 3 15625 </code></pre> <p>(manually typed some of that in because it's a pain to get stuff out of the command line, though that is the results returned)</p> <p>Does NOT handle the bonus vector sadly :(</p> http://stackoverflow.com/questions/1774214/il-compiler-for-net 1 IL Compiler for .NET? RCIX 2009-11-21T01:41:17Z 2009-11-21T01:42:46Z <p>This may be a dumb question, but is there a compiler for IL code, similar to that shown by Reflector in IL mode?</p> http://stackoverflow.com/questions/1769217/programming-a-chess-ai 2 Programming a chess AI RCIX 2009-11-20T09:07:02Z 2009-11-20T09:20:59Z <p>I'm looking to try and write a chess AI. Is there something i can use on the .NET framework (or maybe even a chess program scripted in Lua) that will let me write and test a chess AI without worrying about actually makign a chess game?</p> http://stackoverflow.com/questions/1769053/when-would-you-use-a-listkeyvaluepairt1-t2-instead-of-a-dictionaryt1-t2/1769061#1769061 3 Answer by RCIX for When would you use a List<KeyValuePair<T1, T2>> instead of a Dictionary<T1, T2>? RCIX 2009-11-20T08:35:23Z 2009-11-20T08:35:23Z <p>In short, the list does not enforce uniqueness of either the key or the value, so if you need that semantic then that's what you should use.</p> http://stackoverflow.com/questions/1777582/turing-machine-code-golf/1801073#1801073 Comment by RCIX on Turing Machine Code Golf RCIX 2009-12-01T04:00:03Z 2009-12-01T04:00:03Z Congratulations! you are officially the winner of my code golf :) http://stackoverflow.com/questions/32315/what-is-web-3-0/32431#32431 Comment by RCIX on What is Web 3.0? RCIX 2009-11-30T11:30:47Z 2009-11-30T11:30:47Z +1 you got my last vote today :) http://stackoverflow.com/questions/1818427/getting-a-process-to-terminate/1818458#1818458 Comment by RCIX on Getting a Process to terminate RCIX 2009-11-30T08:47:00Z 2009-11-30T08:47:00Z Boy that's a stupid flag (at least to me), but thanks for the help this will probably be what i want! http://stackoverflow.com/questions/1818427/getting-a-process-to-terminate/1818458#1818458 Comment by RCIX on Getting a Process to terminate RCIX 2009-11-30T08:46:06Z 2009-11-30T08:46:06Z Didn't know about this, thanks! i'll try it! http://stackoverflow.com/questions/1818425/using-flyweight-pattern-in-database-driven-application/1818469#1818469 Comment by RCIX on Using Flyweight Pattern in database-driven application RCIX 2009-11-30T08:21:30Z 2009-11-30T08:21:30Z Not really sure this is a good example, it feels too &quot;generic&quot; to be helpful to the OP. http://stackoverflow.com/questions/1818425/using-flyweight-pattern-in-database-driven-application/1818460#1818460 Comment by RCIX on Using Flyweight Pattern in database-driven application RCIX 2009-11-30T08:20:44Z 2009-11-30T08:20:44Z @mark: you have a good point, i removed that example. http://stackoverflow.com/questions/1818425/using-flyweight-pattern-in-database-driven-application/1818460#1818460 Comment by RCIX on Using Flyweight Pattern in database-driven application RCIX 2009-11-30T08:20:00Z 2009-11-30T08:20:00Z I added another simpler example. The key is your objects are merely pointing to data instead of actually holding data, so you can have duplicate values point to the same spot and conserve memory. http://stackoverflow.com/questions/1818131/convert-an-enum-to-another-type-of-enum/1818152#1818152 Comment by RCIX on convert an enum to another type of enum RCIX 2009-11-30T06:48:41Z 2009-11-30T06:48:41Z Good point, didn't catch that somehow http://stackoverflow.com/questions/1777582/turing-machine-code-golf/1794838#1794838 Comment by RCIX on Turing Machine Code Golf RCIX 2009-11-30T06:21:58Z 2009-11-30T06:21:58Z If i'm correct, can't you format your code so that it takes the state table as an argument? Then it would blow away everyone elses answer. http://stackoverflow.com/questions/1777582/turing-machine-code-golf/1801073#1801073 Comment by RCIX on Turing Machine Code Golf RCIX 2009-11-30T06:20:13Z 2009-11-30T06:20:13Z Cool! you're winning right now by one character :) http://stackoverflow.com/questions/1817562/execute-a-shell-command-from-a-net-application/1817573#1817573 Comment by RCIX on Execute a shell command from a .net application RCIX 2009-11-30T02:17:03Z 2009-11-30T02:17:03Z i.e. putting <code>blah.lua somearg anotherarg thirdarg</code> in a console command. http://stackoverflow.com/questions/1817562/execute-a-shell-command-from-a-net-application/1817573#1817573 Comment by RCIX on Execute a shell command from a .net application RCIX 2009-11-30T02:15:54Z 2009-11-30T02:15:54Z I need to execut a lua script... http://stackoverflow.com/questions/1817473/align-controls-to-center-of-form-in-windows-forms-designer/1817547#1817547 Comment by RCIX on Align controls to center of form in Windows Forms Designer RCIX 2009-11-30T02:09:07Z 2009-11-30T02:09:07Z Thanks! :) ()() http://stackoverflow.com/questions/1559162/windows-forms-designer-destroys-form-layout Comment by RCIX on Windows Forms Designer destroys form layout RCIX 2009-11-30T01:47:24Z 2009-11-30T01:47:24Z that text looks a little like arabic to me ;) http://stackoverflow.com/questions/1805796/code-golf-ulam-spiral/1808817#1808817 Comment by RCIX on Code Golf: Ulam Spiral RCIX 2009-11-29T08:00:51Z 2009-11-29T08:00:51Z It's pedantic, but its 176 <i>chars</i> not 176 <i>bytes</i>