User RCIX - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T18:15:50Zhttp://stackoverflow.com/feeds/user/117069http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1777582/turing-machine-code-golf10Turing Machine Code GolfRCIX2009-11-22T02:11:55Z2009-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#18184601Answer by RCIX for Using Flyweight Pattern in database-driven applicationRCIX2009-11-30T08:12:59Z2009-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-terminate0Getting a Process to terminateRCIX2009-11-30T08:04:48Z2009-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#18181522Answer by RCIX for convert an enum to another type of enumRCIX2009-11-30T06:28:16Z2009-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-application0Execute a shell command from a .net applicationRCIX2009-11-30T02:11:30Z2009-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-designer0Align controls to center of form in Windows Forms DesignerRCIX2009-11-30T01:35:47Z2009-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-user1Lua - get command line input from user?RCIX2009-11-29T10:14:49Z2009-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-2Rolling my own "Version Control"RCIX2009-11-28T04:31:41Z2009-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-music0Finding free individual note sounds for procedural musicRCIX2009-11-28T10:41:31Z2009-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#18118926Answer by RCIX for How to get the second highest number in an array in Visual C#?RCIX2009-11-28T07:36:11Z2009-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-options1Lua string.format optionsRCIX2009-11-28T07:31:34Z2009-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#18117633Answer by RCIX for How to get the maximum of more than 2 numbers in Visual C#?RCIX2009-11-28T06:18:39Z2009-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<int>(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#17679200Answer by RCIX for What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)RCIX2009-11-20T02:18:53Z2009-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
{
/// <summary>
/// Performs an insertion sort on this list.
/// </summary>
/// <typeparam name="T">The type of the list supplied.</typeparam>
/// <param name="list">the list to sort.</param>
/// <param name="comparison">the method for comparison of two elements.</param>
/// <returns></returns>
public static void InsertionSort<T>(this IList<T> list, Comparison<T> comparison)
{
for (int i = 2; i < list.Count; i++)
{
for (int j = i; j > 1 && comparison(list[j], list[j - 1]) < 0; j--)
{
T tempItem = list[j];
list.RemoveAt(j);
list.Insert(j - 1, tempItem);
}
}
}
}
</code></pre>
<p>An example:</p>
<pre><code>List<int> list1 = { 3, 5, 1, 2, 9, 4, 6 };
list1.InsertionSort((a,b) => 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#18067683Answer by RCIX for How do I find the drive to learn?RCIX2009-11-27T04:42:09Z2009-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-code0Free Code-to-Flowchart/UML tool for C# codeRCIX2009-11-23T11:05:58Z2009-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#18013310Answer by RCIX for UPnP Library for .NetRCIX2009-11-26T03:07:18Z2009-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#17779241Answer by RCIX for Turing Machine Code GolfRCIX2009-11-22T05:38:54Z2009-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<1 then
t=z..t
i=1
elseif i>#t then
t=t..z
end
c=b(t,i,i)
if i>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<1 then t=z..t i=1 elseif i>#t then t=t..z end c=b(t,i,i) if i>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#17950700Answer by RCIX for What is direct 2D rendering in Browser..RCIX2009-11-25T06:43:14Z2009-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#17945590Answer by RCIX for How do I install Visual Studio dll files?RCIX2009-11-25T04:10:20Z2009-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#17540114Answer by RCIX for Code Golf: FractranRCIX2009-11-18T06:18:10Z2009-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 > 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<=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#17820340Answer by RCIX for .NET application very slow to start - cryptnet.dll trying to access IP in BermudaRCIX2009-11-23T09:31:23Z2009-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#17815930Answer by RCIX for How do you code the "Hello World!" program in your favourite language?RCIX2009-11-23T07:27:35Z2009-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#17746543Answer by RCIX for Code-Golf: What is the shortest program that compiles and crashes?RCIX2009-11-21T05:55:02Z2009-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#17809050Answer by RCIX for How do you like your naming conventions?RCIX2009-11-23T03:04:35Z2009-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#17779910Answer by RCIX for Analogy? A programming language without namespaces is like (...)RCIX2009-11-22T06:17:27Z2009-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#17777286Answer by RCIX for What is the definition of an implementation detail?RCIX2009-11-22T03:40:19Z2009-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#17538842Answer by RCIX for Code Golf: FractranRCIX2009-11-18T05:42:07Z2009-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>fractran.lua 108 3 2
243
C:\Users\--------\Desktop>fractran.lua 1296 3 2
6561
C:\Users\--------\Desktop>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-net1IL Compiler for .NET?RCIX2009-11-21T01:41:17Z2009-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-ai2Programming a chess AIRCIX2009-11-20T09:07:02Z2009-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#17690613Answer by RCIX for When would you use a List<KeyValuePair<T1, T2>> instead of a Dictionary<T1, T2>?RCIX2009-11-20T08:35:23Z2009-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#1801073Comment by RCIX on Turing Machine Code GolfRCIX2009-12-01T04:00:03Z2009-12-01T04:00:03ZCongratulations! you are officially the winner of my code golf :)http://stackoverflow.com/questions/32315/what-is-web-3-0/32431#32431Comment by RCIX on What is Web 3.0?RCIX2009-11-30T11:30:47Z2009-11-30T11:30:47Z+1 you got my last vote today :)http://stackoverflow.com/questions/1818427/getting-a-process-to-terminate/1818458#1818458Comment by RCIX on Getting a Process to terminateRCIX2009-11-30T08:47:00Z2009-11-30T08:47:00ZBoy 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#1818458Comment by RCIX on Getting a Process to terminateRCIX2009-11-30T08:46:06Z2009-11-30T08:46:06ZDidn't know about this, thanks! i'll try it!http://stackoverflow.com/questions/1818425/using-flyweight-pattern-in-database-driven-application/1818469#1818469Comment by RCIX on Using Flyweight Pattern in database-driven applicationRCIX2009-11-30T08:21:30Z2009-11-30T08:21:30ZNot really sure this is a good example, it feels too "generic" to be helpful to the OP.http://stackoverflow.com/questions/1818425/using-flyweight-pattern-in-database-driven-application/1818460#1818460Comment by RCIX on Using Flyweight Pattern in database-driven applicationRCIX2009-11-30T08:20:44Z2009-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#1818460Comment by RCIX on Using Flyweight Pattern in database-driven applicationRCIX2009-11-30T08:20:00Z2009-11-30T08:20:00ZI 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#1818152Comment by RCIX on convert an enum to another type of enumRCIX2009-11-30T06:48:41Z2009-11-30T06:48:41ZGood point, didn't catch that somehowhttp://stackoverflow.com/questions/1777582/turing-machine-code-golf/1794838#1794838Comment by RCIX on Turing Machine Code GolfRCIX2009-11-30T06:21:58Z2009-11-30T06:21:58ZIf 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#1801073Comment by RCIX on Turing Machine Code GolfRCIX2009-11-30T06:20:13Z2009-11-30T06:20:13ZCool! you're winning right now by one character :)http://stackoverflow.com/questions/1817562/execute-a-shell-command-from-a-net-application/1817573#1817573Comment by RCIX on Execute a shell command from a .net applicationRCIX2009-11-30T02:17:03Z2009-11-30T02:17:03Zi.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#1817573Comment by RCIX on Execute a shell command from a .net applicationRCIX2009-11-30T02:15:54Z2009-11-30T02:15:54ZI need to execut a lua script...http://stackoverflow.com/questions/1817473/align-controls-to-center-of-form-in-windows-forms-designer/1817547#1817547Comment by RCIX on Align controls to center of form in Windows Forms DesignerRCIX2009-11-30T02:09:07Z2009-11-30T02:09:07ZThanks! :) ()()http://stackoverflow.com/questions/1559162/windows-forms-designer-destroys-form-layoutComment by RCIX on Windows Forms Designer destroys form layoutRCIX2009-11-30T01:47:24Z2009-11-30T01:47:24Zthat text looks a little like arabic to me ;)http://stackoverflow.com/questions/1805796/code-golf-ulam-spiral/1808817#1808817Comment by RCIX on Code Golf: Ulam SpiralRCIX2009-11-29T08:00:51Z2009-11-29T08:00:51ZIt's pedantic, but its 176 <i>chars</i> not 176 <i>bytes</i>