User P Daddy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T10:33:56Z http://stackoverflow.com/feeds/user/36388 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1910912/net-interop-intptr-vs-ref/1911035#1911035 5 Answer by P Daddy for .NET Interop IntPtr vs. ref P Daddy 2009-12-15T22:53:42Z 2009-12-21T15:40:57Z <p>If the struct is marshalable without custom processing, I greatly prefer the latter approach, where you declare the p/invoke function as taking a <code>ref</code> (pointer to) your type. Alternatively, you can declare your types as classes instead of structs, and then you can pass <code>null</code>, as well.</p> <pre><code>[StructLayout(LayoutKind.Sequential)] struct NativeType{ ... } [DllImport("...")] static extern bool NativeFunction(ref NativeType foo); // can't pass null to NativeFunction // unless you also include an overload that takes IntPtr [DllImport("...")] static extern bool NativeFunction(IntPtr foo); // but declaring NativeType as a class works, too [StructLayout(LayoutKind.Sequential)] class NativeType2{ ... } [DllImport("...")] static extern bool NativeFunction(NativeType2 foo); // and now you can pass null </code></pre> <blockquote> <p><code>&lt;pedantry&gt;</code></p> <p>By the way, in your example passing a pointer as an <code>IntPtr</code>, you've used the wrong <code>Alloc</code>. <code>SendMessage</code> is not a COM function, so you shouldn't be using the COM allocator. Use <code>Marshal.AllocHGlobal</code> and <code>Marshal.FreeHGlobal</code>. They're poorly named; the names only make sense if you've done Windows API programming, and maybe not even then. <code>AllocHGlobal</code> calls <code>GlobalAlloc</code> in kernel32.dll, which returns an <code>HGLOBAL</code>. This <em>used</em> to be different from an <code>HLOCAL</code>, returned by <code>LocalAlloc</code> back in the 16-bit days, but in 32-bit Windows they are the same.</p> <p>The use of the term <code>HGLOBAL</code> to refer to a block of (native) user-space memory just kind of stuck, I guess, and the people designing the <code>Marshal</code> class must not have taken the time to think about how unintuitive that would be for most .NET developers. On the other hand, most .NET developers don't need to allocate unmanaged memory, so....</p> <p><code>&lt;/pedantry&gt;</code></p> </blockquote> <p><hr></p> <p><strong>Edit</strong></p> <p>You mention you're getting a TypeLoadException when using a class instead of a struct, and ask for a sample. I did up a quick test using <code>CHARFORMAT2</code>, since it looks like that's what you're trying to use.</p> <p>First the ABC<sup>1</sup>:</p> <pre><code>[StructLayout(LayoutKind.Sequential)] abstract class NativeStruct{} // simple enough </code></pre> <p>The <code>StructLayout</code> attribute is required, or you <em>will</em> get a TypeLoadException.</p> <p>Now the <code>CHARFORMAT2</code> class:</p> <pre><code>[StructLayout(LayoutKind.Sequential, Pack=4, CharSet=CharSet.Auto)] class CHARFORMAT2 : NativeStruct{ public DWORD cbSize = (DWORD)Marshal.SizeOf(typeof(CHARFORMAT2)); public CFM dwMask; public CFE dwEffects; public int yHeight; public int yOffset; public COLORREF crTextColor; public byte bCharSet; public byte bPitchAndFamily; [MarshalAs(UnmanagedType.ByValTStr, SizeConst=32)] public string szFaceName; public WORD wWeight; public short sSpacing; public COLORREF crBackColor; public LCID lcid; public DWORD dwReserved; public short sStyle; public WORD wKerning; public byte bUnderlineType; public byte bAnimation; public byte bRevAuthor; public byte bReserved1; } </code></pre> <p>I've used <code>using</code> statements to alias <code>System.UInt32</code> as <code>DWORD</code>, <code>LCID</code>, and <code>COLORREF</code>, and alias <code>System.UInt16</code> as <code>WORD</code>. I try to keep my P/Invoke definitions as true to SDK spec as I can. <code>CFM</code> and <code>CFE</code> are <code>enums</code> that contain the flag values for these fields. I've left their definitions out for brevity, but can add them in if needed.</p> <p>I've declared <code>SendMessage</code> as:</p> <pre><code>[DllImport("user32.dll", CharSet=CharSet.Auto)] static extern IntPtr SendMessage( HWND hWnd, MSG msg, WPARAM wParam, [In, Out] NativeStruct lParam); </code></pre> <p><code>HWND</code> is an alias for <code>System.IntPtr</code>, <code>MSG</code> is <code>System.UInt32</code>, and <code>WPARAM</code> is <code>System.UIntPtr</code>.</p> <p><code>[In, Out]</code> attribute on <code>lParam</code> is required for this to work, otherwise, it doesn't seem to get marshaled both directions (before and after call to native code).</p> <p>I call it with:</p> <pre><code>CHARFORMAT2 cf = new CHARFORMAT2(); SendMessage(rtfControl.Handle, (MSG)EM.GETCHARFORMAT, (WPARAM)SCF.DEFAULT, cf); </code></pre> <p><code>EM</code> and <code>SCF</code> are <code>enum</code>s I've, again, left out for (relative) brevity.</p> <p>I check success with:</p> <pre><code>Console.WriteLine(cf.szFaceName); </code></pre> <p>and I get:</p> <pre>Microsoft Sans Serif</pre> <p>Works like a charm!</p> <p><hr></p> <p>Um, or not, depending on how much sleep you've had and how many things you're trying to do at once, I suppose.</p> <p>This <em>would</em> work if <code>CHARFORMAT2</code> were a <a href="http://en.wikipedia.org/wiki/Blittable%5Ftypes" rel="nofollow">blittable</a> type. (A blittable type is a type that has the same representation in managed memory as in unmanaged memory.) For instance, the <code>MINMAXINFO</code> type <strong>does</strong> work as described.</p> <pre><code>[StructLayout(LayoutKind.Sequential)] class MINMAXINFO : NativeStruct{ public Point ptReserved; public Point ptMaxSize; public Point ptMaxPosition; public Point ptMinTrackSize; public Point ptMaxTrackSize; } </code></pre> <p>This is because blittable types are not really marshaled. They're just pinned in memory—this keeps the GC from moving them—and the address of their location in managed memory is passed to the native function.</p> <p>Non-blittable types have to be marshaled. The CLR allocates unmanaged memory and copies the data between the managed object and its unmanaged representation, making the necessary conversions between formats as it goes.</p> <p>The <code>CHARFORMAT2</code> structure is non-blittable because of the <code>string</code> member. The CLR can't just pass a pointer to a .NET <code>string</code> object where a fixed-length character array is expected to be. So the <code>CHARFORMAT2</code> structure must be marshaled.</p> <p>As it would appear, for correct marshaling to occur, the interop function must be declared with the type to be marshaled. In other words, given the above definition, the CLR must be making some sort of determination based on the static type of <code>NativeStruct</code>. I would guess that it's correctly detecting that the object needs to be marshaled, but then only "marshaling" a zero-byte object, the size of <code>NativeStruct</code> itself.</p> <p>So in order to get your code working for <code>CHARFORMAT2</code> (and any other non-blittable types you might use), you'll have to go back to declaring <code>SendMessage</code> as taking a <code>CHARFORMAT2</code> object. Sorry I led you astray on this one.</p> <p><hr></p> <p>Captcha for the previous edit:</p> <blockquote> <p>the whippet</p> </blockquote> <p>Yeah, whip it good!</p> <p><hr></p> <p>Cory,</p> <p>This is off topic, but I notice a potential problem for you in the app it looks like you're making.</p> <p>The rich textbox control uses standard GDI text-measuring and text-drawing functions. Why is this a problem? Because, despite claims that a TrueType font looks the same on screen as on paper, GDI does not accurately place characters. The problem is rounding.</p> <p>GDI uses all-integer routines to measure text and place characters. The width of each character (and height of each line, for that matter) is rounded to the nearest whole number of pixels, with no error correction.</p> <p>The error can easily be seen in your test app. Set the font to Courier New at 12 points. This fixed-width font should space characters exactly 10 per inch, or 0.1 inches per character. This should mean that, given your starting line width of 5.5 inches, you should be able to fit 55 characters on the first line before wrap occurs.</p> <pre>ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz123</pre> <p>But if you try, you'll see that wrap occurs after only 54 characters. What's more the 54<sup>th</sup> character and part of the 53<sup>rd</sup> overhang the apparent margin shown on the ruler bar.</p> <p>This assumes you have your settings at standard 96 DPI (normal fonts). If you use 120 DPI (large fonts), you won't see this problem, although it appears that you size your control incorrectly in this case. You also won't likely see this on the printed page.</p> <p>What's going on here? The problem is that 0.1 inches (the width of one character) is 9.6 pixels (again, using 96 DPI). GDI doesn't space characters using floating point numbers, so it rounds this up to 10 pixels. So 55 characters takes up 55 * 10 = 550 pixels / 96 DPI = 5.7291666... inches, whereas what we were expecting was 5.5 inches.</p> <p>While this will probably be less noticeable in the normal use case for a word processor program, there is a likelihood of instances where word wrap occurs at different places on screen versus on page, or that things don't line up the same once printed as they did on screen. This could turn out to be a problem for you if this is a commercial application you're working on.</p> <p>Unfortunately, the fix for this problem is not easy. It means you'll have to dispense with the rich textbox control, which means a huge hassle of implementing yourself everything it does for you, which is quite a lot. It also means that the text drawing code you'll have to implement becomes fairly complicated. I've got code that does it, but it's too complex to post here. You might, however, find <a href="http://www.codeguru.com/cpp/w-p/printing/article.php/c5897/" rel="nofollow">this example</a> or <a href="http://aimm02.cse.ttu.edu.tw/class%5F2006%5F1/wp/Justify.pdf" rel="nofollow">this one</a> helpful.</p> <p>Good luck!</p> <p><hr></p> <p><sup><sup>1</sup> Abstract Base Class</sup></p> http://stackoverflow.com/questions/1930454/what-is-a-good-solution-for-calculating-an-average-where-the-sum-of-all-values-ex/1933470#1933470 1 Answer by P Daddy for What is a good solution for calculating an average where the sum of all values exceeds a double's limits? P Daddy 2009-12-19T17:02:54Z 2009-12-19T17:02:54Z <p>I posted <a href="http://stackoverflow.com/questions/1931359/how-to-reduce-calculation-of-average-to-sub-sets-in-a-general-way/1931759#1931759">an answer</a> to <a href="http://stackoverflow.com/questions/1931359/how-to-reduce-calculation-of-average-to-sub-sets-in-a-general-way/">a question</a> spawned from this one, realizing afterwards that my answer is better suited to this question than to that one. I've reproduced it below. I notice though, that my answer is similar to a combination of <a href="http://stackoverflow.com/questions/1930454/what-is-a-good-solution-for-calculating-an-average-where-the-sum-of-all-values-ex/1930492#1930492">Bozho's</a> and <a href="http://stackoverflow.com/questions/1930454/what-is-a-good-solution-for-calculating-an-average-where-the-sum-of-all-values-ex/1930478#1930478">Anon<sub><sup>.</sup></sub>'s</a>.</p> <p>As the other question was tagged language-agnostic, I chose C# for the code sample I've included. Its relative ease of use and easy-to-follow syntax, along with its inclusion of a couple of features facilitating this routine (a DivRem function in the BCL, and support for iterator functions), as well as my own familiarity with it, made it a good choice for this problem. Since the OP here is interested in a Java solution, but I'm not Java-fluent enough to write it effectively, it might be nice if someone could add a translation of this code to Java.</p> <p><hr></p> <p>Some of the mathematical solutions here are very good. Here's a simple technical solution.</p> <p>Use a larger data type. This breaks down into two possibilities:</p> <ol> <li><p>Use a high-precision floating point library. One who encounters a need to average a billion numbers probably has the resources to purchase, or the brain power to write, a 128-bit (or longer) floating point library.</p> <p>I understand the drawbacks here. It would certainly be slower than using intrinsic types. You still might over/underflow if the number of values grows too high. Yada yada.</p></li> <li><p>If your values are integers or can be easily scaled to integers, keep your sum in a list of integers. When you overflow, simply add another integer. This is essentially a simplified implementation of the first option. A simple <s>(untested)</s> example in C# follows</p></li> </ol> <p><b></b></p> <pre><code>class BigMeanSet{ List&lt;uint&gt; list = new List&lt;uint&gt;(); public double GetAverage(IEnumerable&lt;uint&gt; values){ list.Clear(); list.Add(0); uint count = 0; foreach(uint value in values){ Add(0, value); count++; } return DivideBy(count); } void Add(int listIndex, uint value){ if((list[listIndex] += value) &lt; value){ // then overflow has ocurred if(list.Count == listIndex + 1) list.Add(0); Add(listIndex + 1, 1); } } double DivideBy(uint count){ const double shift = 4.0 * 1024 * 1024 * 1024; double rtn = 0; long remainder = 0; for(int i = list.Count - 1; i &gt;= 0; i--){ rtn *= shift; remainder &lt;&lt;= 32; rtn += Math.DivRem(remainder + list[i], count, out remainder); } rtn += remainder / (double)count; return rtn; } } </code></pre> <p><s>Like I said, this is untested—I don't have a billion values I really want to average—so I've probably made a mistake or two, especially in the <code>DivideBy</code> function, but it should demonstrate the general idea.</s></p> <p>This should provide as much accuracy as a double can represent and should work for any number of 32-bit elements, up to 2<sup>32</sup> - 1. If more elements are needed, then the <code>count</code> variable will need be expanded and the <code>DivideBy</code> function will increase in complexity, but I'll leave that as an exercise for the reader.</p> <p>In terms of efficiency, it should be as fast or faster than any other technique here, as it only requires iterating through the list once, only performs one division operation (well, one set of them), and does most of its work with integers. I didn't optimize it, though, and I'm pretty certain it could be made slightly faster still if necessary. Ditching the recursive function call and list indexing would be a good start. Again, an exercise for the reader. The code is intended to be easy to understand.</p> <p><s>If anybody more motivated than I am at the moment feels like verifying the correctness of the code, and fixing whatever problems there might be, please be my guest.</s></p> <p><hr></p> <p>I've now tested this code, and made a couple of small corrections (a missing pair of parentheses in the <code>List&lt;uint&gt;</code> constructor call, and an incorrect divisor in the final division of the <code>DivideBy</code> function).</p> <p>I tested it by first running it through 1000 sets of random length (ranging between 1 and 1000) filled with random integers (ranging between 0 and 2<sup>32</sup> - 1). These were sets for which I could easily and quickly verify accuracy by also running a canonical mean on them.</p> <p>I then tested with 100<sup>*</sup> large series, with random length between 10<sup>5</sup> and 10<sup>9</sup>. The lower and upper bounds of these series were also chosen at random, constrained so that the series would fit within the range of a 32-bit integer. For any series, the results are easily verifiable as <code>(lowerbound + upperbound) / 2</code>.</p> <p><sup><sub><sup>*</sup>Okay, that's a little white lie. I aborted the large-series test after about 20 or 30 successful runs. A series of length 10<sup>9</sup> takes just under a minute and a half to run on my machine, so half an hour or so of testing this routine was enough for my tastes.</sub></sup></p> <p>For those interested, my test code is below:</p> <pre><code>static IEnumerable&lt;uint&gt; GetSeries(uint lowerbound, uint upperbound){ for(uint i = lowerbound; i &lt;= upperbound; i++) yield return i; } static void Test(){ Console.BufferHeight = 1200; Random rnd = new Random(); for(int i = 0; i &lt; 1000; i++){ uint[] numbers = new uint[rnd.Next(1, 1000)]; for(int j = 0; j &lt; numbers.Length; j++) numbers[j] = (uint)rnd.Next(); double sum = 0; foreach(uint n in numbers) sum += n; double avg = sum / numbers.Length; double ans = new BigMeanSet().GetAverage(numbers); Console.WriteLine("{0}: {1} - {2} = {3}", numbers.Length, avg, ans, avg - ans); if(avg != ans) Debugger.Break(); } for(int i = 0; i &lt; 100; i++){ uint length = (uint)rnd.Next(100000, 1000000001); uint lowerbound = (uint)rnd.Next(int.MaxValue - (int)length); uint upperbound = lowerbound + length; double avg = ((double)lowerbound + upperbound) / 2; double ans = new BigMeanSet().GetAverage(GetSeries(lowerbound, upperbound)); Console.WriteLine("{0}: {1} - {2} = {3}", length, avg, ans, avg - ans); if(avg != ans) Debugger.Break(); } } </code></pre> http://stackoverflow.com/questions/1931359/how-to-reduce-calculation-of-average-to-sub-sets-in-a-general-way/1931759#1931759 0 Answer by P Daddy for How to reduce calculation of average to sub-sets in a general way? P Daddy 2009-12-19T02:41:08Z 2009-12-19T16:55:14Z <p>Some of the mathematical solutions here are very good. Here's a simple technical solution.</p> <p>Use a larger data type. This breaks down into two possibilities:</p> <ol> <li><p>Use a high-precision floating point library. One who encounters a need to average a billion numbers probably has the resources to purchase, or the brain power to write, a 128-bit (or longer) floating point library.</p> <p>I understand the drawbacks here. It would certainly be slower than using intrinsic types. You still might over/underflow if the number of values grows too high. Yada yada.</p></li> <li><p>If your values are integers or can be easily scaled to integers, keep your sum in a list of integers. When you overflow, simply add another integer. This is essentially a simplified implementation of the first option. A simple <s>(untested)</s> example in C# follows</p></li> </ol> <p><b></b></p> <pre><code>class BigMeanSet{ List&lt;uint&gt; list = new List&lt;uint&gt;(); public double GetAverage(IEnumerable&lt;uint&gt; values){ list.Clear(); list.Add(0); uint count = 0; foreach(uint value in values){ Add(0, value); count++; } return DivideBy(count); } void Add(int listIndex, uint value){ if((list[listIndex] += value) &lt; value){ // then overflow has ocurred if(list.Count == listIndex + 1) list.Add(0); Add(listIndex + 1, 1); } } double DivideBy(uint count){ const double shift = 4.0 * 1024 * 1024 * 1024; double rtn = 0; long remainder = 0; for(int i = list.Count - 1; i &gt;= 0; i--){ rtn *= shift; remainder &lt;&lt;= 32; rtn += Math.DivRem(remainder + list[i], count, out remainder); } rtn += remainder / (double)count; return rtn; } } </code></pre> <p><s>Like I said, this is untested—I don't have a billion values I really want to average—so I've probably made a mistake or two, especially in the <code>DivideBy</code> function, but it should demonstrate the general idea.</s></p> <p>This should provide as much accuracy as a double can represent and should work for any number of 32-bit elements, up to 2<sup>32</sup> - 1. If more elements are needed, then the <code>count</code> variable will need be expanded and the <code>DivideBy</code> function will increase in complexity, but I'll leave that as an exercise for the reader.</p> <p>In terms of efficiency, it should be as fast or faster than any other technique here, as it only requires iterating through the list once, only performs one division operation (well, one set of them), and does most of its work with integers. I didn't optimize it, though, and I'm pretty certain it could be made slightly faster still if necessary. Ditching the recursive function call and list indexing would be a good start. Again, an exercise for the reader. The code is intended to be easy to understand.</p> <p><s>If anybody more motivated than I am at the moment feels like verifying the correctness of the code, and fixing whatever problems there might be, please be my guest.</s></p> <p><hr></p> <p>I've now tested this code, and made a couple of small corrections (a missing pair of parentheses in the <code>List&lt;uint&gt;</code> constructor call, and an incorrect divisor in the final division of the <code>DivideBy</code> function).</p> <p>I tested it by first running it through 1000 sets of random length (ranging between 1 and 1000) filled with random integers (ranging between 0 and 2<sup>32</sup> - 1). These were sets for which I could easily and quickly verify accuracy by also running a canonical mean on them.</p> <p>I then tested with 100<sup>*</sup> large series, with random length between 10<sup>5</sup> and 10<sup>9</sup>. The lower and upper bounds of these series were also chosen at random, constrained so that the series would fit within the range of a 32-bit integer. For any series, the results are easily verifiable as <code>(lowerbound + upperbound) / 2</code>.</p> <p><sup><sub><sup>*</sup>Okay, that's a little white lie. I aborted the large-series test after about 20 or 30 successful runs. A series of length 10<sup>9</sup> takes just under a minute and a half to run on my machine, so half an hour or so of testing this routine was enough for my tastes.</sub></sup></p> <p>For those interested, my test code is below:</p> <pre><code>static IEnumerable&lt;uint&gt; GetSeries(uint lowerbound, uint upperbound){ for(uint i = lowerbound; i &lt;= upperbound; i++) yield return i; } static void Test(){ Console.BufferHeight = 1200; Random rnd = new Random(); for(int i = 0; i &lt; 1000; i++){ uint[] numbers = new uint[rnd.Next(1, 1000)]; for(int j = 0; j &lt; numbers.Length; j++) numbers[j] = (uint)rnd.Next(); double sum = 0; foreach(uint n in numbers) sum += n; double avg = sum / numbers.Length; double ans = new BigMeanSet().GetAverage(numbers); Console.WriteLine("{0}: {1} - {2} = {3}", numbers.Length, avg, ans, avg - ans); if(avg != ans) Debugger.Break(); } for(int i = 0; i &lt; 100; i++){ uint length = (uint)rnd.Next(100000, 1000000001); uint lowerbound = (uint)rnd.Next(int.MaxValue - (int)length); uint upperbound = lowerbound + length; double avg = ((double)lowerbound + upperbound) / 2; double ans = new BigMeanSet().GetAverage(GetSeries(lowerbound, upperbound)); Console.WriteLine("{0}: {1} - {2} = {3}", length, avg, ans, avg - ans); if(avg != ans) Debugger.Break(); } } </code></pre> http://stackoverflow.com/questions/1903702/associate-file-type-and-icon/1910717#1910717 0 Answer by P Daddy for Associate File Type and Icon P Daddy 2009-12-15T22:02:44Z 2009-12-17T04:40:28Z <p>I <a href="http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/msg/05abaf8460c61859?" rel="nofollow">wrote this up</a> in the newsgroups a few years ago. Skimming through it, I find that it's not the clearest I've ever written, but it's fairly complete. For what it's worth, I've reprinted it below:</p> <p><hr></p> <p>First you need to create a subkey under <code>HKEY_CLASSES_ROOT</code> that will hold the commands that start your application. You should name this key something semi-descriptive. Your file extension[s] will be mapped to this key. For example, TXT files are mapped to a key named <code>txtfile</code>, by default. The benefit of using this setup is that if you have multiple extensions that your app can handle, you can map them all to this key. For example, many image editting apps create a subkey called something like "imagefile", and map .bmp, .jpg, .gif, etc. to that key. We'll call your key "JoeBlowFile". Next, you need to set the "default" value for your new JoeBlowFile key to a text string describing to the user just what type of file they have. This is what shows up in Windows Explorer under "Type". Again, to use the TXT file example, a good string here would be "Text File" or "Text Document". (It is the latter by default.) Your string might be "Joe Blow Data".</p> <p>Now, under your new key, you can create another subkey, called "DefaultIcon". This, as its name suggests, sets the icon that is used with files of this type. You should create a custom icon that pictorially represents documents handled by your program. You can save this icon as an ICO file in your app's directory, but even better, you can include it as a resource in either your EXE or DLL. Either way, you'll then need to set the subkey's default value to a string representing the full path and filename of the ICO, EXE, or DLL. If there is more than one icon in the file (particularly likely if you include it as a resource in your EXE or DLL), you'll also need to add a comma, and either a zero-based positive index number representing which icon you'd like to use, or a negative resource ID, using the negative of whatever ID you've assigned your icon in your resource script. So yours could be, for example "C:\Program Files\JoeBlow\JoeBlow.exe, 2".</p> <blockquote> <p>A note for C# developers on the above paragraph. Unfortunately, C# projects can't have resource scripts. Resources added to .NET applications by adding them to the project and designating them an "Embedded Resource" are included in a new .NET-specific format that's not compatible with previous methods. The only icon you can correctly embed in your application using C# on VS.NET is the application icon, accessible from the project properties. If you need additional icons—e.g. an icon to represent a document file handled by your app rather than to represent the app itself—you'll need to either include the ICO files themselves, compile a DLL with C++ with your icons embedded, or create and compile a resource script and include it in your project from the project properties.</p> </blockquote> <p>Whether or not you choose to use the <code>DefaultIcon</code> key, you now need to create a subkey named "shell" under your <code>JoeBlowFile</code> key. Under the <code>shell</code> key, you'll create individual keys for each of the commands you'd like the user to be able to perform on your file type from the context menu (right-click menu). These items are called "verbs". For consistency, one of them should be "open"—this key, if it exists, will be the default (i.e. when a user double clicks on a file of your type, the open command will be performed). Instead, you can set the default value for the "shell" key equal to the verb you'd like to perform by default. You can optionally set the default value for each verb key to the text that you would like to appear in the context menu when a user right-clicks on a file of your type. An ampersand (&amp;) can be used within this text to designate that the following character will be underlined, which means that the user can press the key corresponding to that character to select that command from the context menu. For instance, for the "open" key, you could put "Open with &amp;Joe Blow's app" as the default value. That text then, with an underlined J, will appear in the context menu for files of that type, and a user can press the letter J to start Joe Blow's app.</p> <p>The only thing you <em>have</em> to do, though, with the "open" (and subsequent) keys, is create another key as a subkey of that one called "command". The default value for the command key must be set to a string representing just that—the command required to perform that action. For instance, the default string in the command key under the "open" key might be ""C:\Program Files\JoeBlow\JoeBlow.exe" "%1"". Note the quotation marks around the path\filename for your app and around the <code>%1</code>. They are only neccessary around the path\filename of your app if there are any spaces in the path or filename, but they are absolutely a requirement around the <code>%1</code> for 32-bit apps. The <code>%1</code> is just like <code>%1</code> in old MS-DOS batch (.bat) files. <code>%1</code> is replaced with the first parameter on the command line, which in this case becomes the file name of the file your app is supposed to open. Because you do not know in advance if the path or filename containing the file you're supposed to open will contain spaces, you must put the quotes around <code>%1</code>. </p> <p>Other required parameters for your app should also be included. For instance, the default value in the "command" key, under the "print" key might be ""C:\Program Files\JoeBlow\JoeBlow.exe" "%1" /print", or ""C:\Program Files\JoeBlow\JoeBlow.exe" /print "%1"". It's up to you how you want to process command line parameters in your app.</p> <blockquote> <p>A note on replaceable parameters like "%1", mentioned above. Apparently, the "%1" parameter /may/ be replaced with the <em>short</em> filename to be opened. This isn't always the case, and I haven't figured out what criteria Windows uses to determine which it will pass—short or long. It may be that if the executable path listed in the registry is a long filename, Windows will replace %1 with the long filename to start, but if the executable path is a short filename, or can be interpreted as one, Windows will replace <code>%1</code> with the short filename. If you want to be sure that you always get the <em>long</em> filename, use "%L" instead. You can use an uppercase L (as I've done) or a lowercase one, but I prefer to use uppercase because lowercase "l" looks way too much like the number "1".</p> <p>What's more, if your program knows how to deal with Shell Item IDs, you can get <em>that</em> instead of the long filename with the "%i" parameter. Again, upper- or lowercase "i" are equally suitable, but I find uppercase "I" harder to distiguish from lowercase "l" and the number "1". If you don't know what a Shell Item ID is, it's okay. You'll probably never need to use one.</p> </blockquote> <p>You're finally done with the <code>JoeBlowFile</code> key. The rest is relatively simple. You simply need to create (if it doesn't already exist) another subkey under HKEY_CLASSES_ROOT, and name it the same as the extension of your document type. To use the txtfile example, the name would be ".txt" (with the dot, but without the quotes). Yours (Joe Blow's) might be ".jbf" (for Joe Blow File). The default value for this key must now be set to the name of the first key your created, which in the example we've using is "JoeBlowFile".</p> <p>That's it. You're done in the registry. Do remember that you'll have to make sure your app proccesses the command line in a manner consistent with the commands you set under the "shell" key. Window's won't open that file for you automatically when your app starts... you have to do it.</p> <p>Graphically, it looks like this:</p> <pre> HKEY_CLASSES_ROOT | +--.jbf = JoeBlowFile | +--JoeBlowFile = Joe Blow Data | +--DefaultIcon = C:\Program Files\JoeBlow\JoeBlow.exe, 2 | +--Shell | +--open = Open with &Joe Blow's App | | | +--command = "C:\Program Files\JoeBlow\JoeBlow.exe" "%1" | +--print | +--command = "C:\Program Files\JoeBlow\JoeBlow.exe" "%1" /print </pre> <p>If you don't already know how to modify the registry, look in MSDN for all the functions beginning with "Reg", including RegOpenKeyEx, RegCreateKeyEx, and RegSetValueEx. You can also do it the wimpy way by creating a ".reg" file and simply use ShellExecuteEx() to call "regedit.exe /s" on it. (The <code>/s</code> keeps Regedit from popping up a message box asking "Are you sure you want to add the information in [name of file.reg] to the registry?") The format of the a REG file is simple and straight forward. Here is an example REG file to add the "JoeBlow" example from above: </p> <pre> REGEDIT4 [HKEY_CLASSES_ROOT\.jbf] @="JoeBlowFile" [HKEY_CLASSES_ROOT\JoeBlowFile] @="Joe Blow Data" [HKEY_CLASSES_ROOT\JoeBlowFile\DefaultIcon] @="C:\\Program Files\\JoeBlow\\JoeBlow.exe, 2" [HKEY_CLASSES_ROOT\JoeBlowFile\Shell] [HKEY_CLASSES_ROOT\JoeBlowFile\Shell\open] @="Open with &Joe Blow's app" [HKEY_CLASSES_ROOT\JoeBlowFile\Shell\open\command] @="\"C:\\Program Files\\JoeBlow\\JoeBlow.exe\" \"%1\"" [HKEY_CLASSES_ROOT\JoeBlowFile\Shell\print] @="&Print" [HKEY_CLASSES_ROOT\JoeBlowFile\Shell\print\command] @="\"C:\\Program Files\\JoeBlow\\JoeBlow.exe \"%1\" /print" </pre> <p>Make sure that you include "REGEDIT4" as the first line of the file, or it won't work. Also make sure to press enter on the last line, or that line won't be read in. Altogether, adding your program to the registry this way is not as convenient as it sounds, because you'll have to modify your REG file if your app is installed anywhere <em>except</em> to C:\Program Files\JoeBlow.</p> <blockquote> <p>The above instructions were aimed at a user programming directly to the Win32 API using C or C++. For C# on .NET, it's rather a bit easier. See the Registry class, or you can even do much of it graphically using a deployment project in VS.NET. </p> </blockquote> <p><hr></p> <p>To add native-accessible resources to a .NET assembly, you will need a resource script. A resource script is a plain text file, like a code file. In fact, it is code; declarative code that is compiled by the resource compiler, rc.exe. A sample resource script follows:</p> <pre><code>#include &lt;windows.h&gt; #define IDI_APP 100 #define IDI_FILE 200 #define ID_VERSION 1 IDI_APP ICON "Resources\\Application.ico" IDI_FILE ICON "Resources\\JowBlowFile.ico" ID_VERSION VERSIONINFO FILEVERSION 1, 0, 19, 186 // change this to your version PRODUCTVERSION 1, 0, 19, 186 // change this to your version FILEOS VOS__WINDOWS32 FILETYPE VFT_APP { BLOCK "StringFileInfo" { BLOCK "040904B0" { // 0x409 = U.S. English, 0x04B0 = dec 1200 = Unicode VALUE "CompanyName", "Joe Blow, Inc.\0" VALUE "FileDescription", "Joe Blow's App\0" VALUE "FileVersion", "1.0.19.186\0" // change this to your version VALUE "InternalName", "JoeBlow\0" VALUE "LegalCopyright", "Copyright © 2008-2009 Joe Blow Incorporated\0" VALUE "OriginalFilename", "JoeBlow.exe\0" VALUE "ProductName", "Joe Blow\0" VALUE "ProductVersion", "1.0.19.189\0" // change this to your version } } BLOCK "VarFileInfo" { VALUE "Translation", 0x409 /*U.S. English*/, 1200 /*Unicode*/ } } </code></pre> <p>The biggest drawback to doing this is that you have to add the version information manually to your resource script (unless you want to just forgo the version information altogether). In my applications, I add a custom build step that runs a program I wrote that updates the version information directly in the executable so that I don't have to manually update the version number in the resource script, but that program is not suitable for public release and is otherwise beyond the scope of this post.</p> <p>Now you need to invoke the resource compiler to build this resource script into a binary resource file. Save this script as JoeBlow.rc, then start a Visual Studio Command Prompt. It's under Tools in the Visual Studio start menu folder. If you don't have Visual Studio installed, I believe you get rc.exe as part of the SDK. Microsoft also seems to be offering the latest version <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=53f9cbb4-b4af-4cf2-bfe5-260cfb90f7c3&amp;DisplayLang=en" rel="nofollow">here</a>.</p> <p>Once at a VS cmd prompt (or otherwise have rc.exe in your path), just type:</p> <p><code> rc JoeBlow.rc </code></p> <p>Simple as that. The above resource script should compile without errors, given that the icons I've include exist. This will create a new file in the same directory called JoeBlow.res. Now, assuming you <em>are</em> using Visual Studio, all you have to do is edit the project properties to include this resource file.</p> <p>These directions are for Visual Studio 2005 or 2008. I don't remember how to do this, or even if you can, in older versions, and I haven't tried out 2010, yet, but it's probably similar. Right-click on the project in Solution Explorer and select Properties (or select Properties from the Project menu on the main menu bar). On the Application tab, which is the first tab you should see, at the bottom is a Resources group box. Here, you have two options: "Icon and manifest", or "Resource File". Select the latter option. This will enable the text box where you can type (or browse to) your new resource file, JoeBlow.res.</p> <p>Lastly, just build your project, and presto, you have embedded icons in native PE format accessible to the shell when browsing files associated to your app. Now if you set the value of <code>HKEY_CLASSES_ROOT\JoeBlowFile\DefaultIcon</code> to either <code>C:\Program Files\JoeBlow\JoeBlow.exe,1</code> (using the zero-based index number), or <code>C:\Program Files\JoeBlow\JoeBlow.exe,-200</code> (using the negative of the resource identifier, #defined above as <code>IDI_FILE</code>), your icon will show up in Explorer for .jbf files.</p> <p>To get your new icons to show up immediately upon installation, you may need to refresh the shell's icon cache. I've found instructions on how to do that <a href="http://vbnet.mvps.org/index.html?code/reg/screenrefresh.htm" rel="nofollow">here</a>. The basic gist is to change the shell icon size (at <code>HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics</code>) from its current value to a different one and back again, broadcasting a <code>WM_SETTINGCHANGE</code> message after each change.</p> <p>Good luck. Let me know if you need anything else.</p> http://stackoverflow.com/questions/1910733/how-can-i-map-an-int-to-a-corresponding-string-in-c-c/1910751#1910751 0 Answer by P Daddy for how can I map an int to a corresponding string in C/C++ P Daddy 2009-12-15T22:07:59Z 2009-12-15T22:29:27Z <p><a href="http://en.wikipedia.org/wiki/Map%5F%28C%2B%2B%29" rel="nofollow"><code>std::map</code></a></p> <p><hr></p> <p>Reading through your question again, I think you're saying that you have only 20 numbers to map (you said 20 digits, which made me think of very large numbers). If these are all in a fairly small range, you might be better off just using an array. You need an array of string pointers as large as <code>largestIndex - smallestIndex + 1</code>. Then to get the string associated with a certain number, you'd do something like:</p> <pre><code>std::string GetStatus(int statusID){ return statusArray[statusID - smallestIndex]; } </code></pre> <p>The <code>statusArray</code> variable is initialized with something like:</p> <pre><code>void SetStatus(int statusID, std::string description){ statusArray[statusID - smallestIndex] = description; } void InitStatuses(){ statusArray = new std::string[largestIndex - smallestIndex + 1]; SetStatus(1, "Request System Info"); SetStatus(2, "Change System Info"); SetStatus(10, "Unknown Error"); } </code></pre> <p>This would be faster than a <code>map</code>, and pretty easy to use. It's just not appropriate if your IDs vary widely.</p> http://stackoverflow.com/questions/1774508/persist-a-pidl-itemidlist 0 Persist a pidl (ITEMIDLIST) P Daddy 2009-11-21T04:20:07Z 2009-11-23T18:51:20Z <p>I'd like to persist <a href="http://msdn.microsoft.com/en-us/library/bb773321%28VS.85%29.aspx" rel="nofollow">pidl</a>s between sessions, so that my application can remember the users' folder selections, wherever they may be in the namespace, even if they're not file-system folders.</p> <p>I have a feeling that the way to do this is to write out the binary contents of the <code>ITEMIDLIST</code> itself, but I can't confirm this for sure, since these contents are supposed to be opaque, and are up to the provider. I don't know if after a reboot, or even in another process, if this data is valid. It could contain pointers, for all I know.</p> <p>What is the proper way to persist and later reconstruct a pidl?</p> <h3>Update:</h3> <p>Jerry Coffin <a href="http://stackoverflow.com/questions/1774508/persist-a-pidl-itemidlist/1774567#1774567">has suggested</a> a pair of functions that seem to do exactly what I asked. One question remains, however.</p> <p>As Joel Spolsky <a href="http://stackoverflow.com/questions/1774508/persist-a-pidl-itemidlist/1774564#1774564">points out</a>, Raymond Chen <a href="http://blogs.msdn.com/oldnewthing/archive/2006/07/12/663365.aspx" rel="nofollow">seems to imply</a> that saving the binary contents of the <code>ITEMIDLIST</code> is indeed the proper way to persist a pidl, from which one can infer that <code>ILSaveToStream</code> and <code>ILLoadFromStream</code> are helper functions that do just that.</p> <p>I can't find documentation that proves this, however. Since this project is in C#, I'd prefer to avoid having to interop up an <code>IStream</code> for the <code>IL...</code> functions and just persist the binary data myself if possible. Can anybody confirm that this is correct?</p> <h3>Solution notes:</h3> <p>Looking at the docs for <a href="http://msdn.microsoft.com/en-us/library/bb776457%28VS.85%29.aspx" rel="nofollow">ILSaveToStream</a> and <a href="http://msdn.microsoft.com/en-us/library/bb776450%28VS.85%29.aspx" rel="nofollow">ILLoadFromStream</a>, I see that these functions didn't even exist until version 5.0 of the shell (Windows 2000). So how was this done prior to Win2K? After some testing, I conclude that, as I suspected and Joel Spolsky postulated, writing out the raw <code>ITEMIDLIST</code> is the way to go.</p> <p>A simple implementation in C# follows:</p> <pre><code>unsafe{ byte* start = (byte*)pidl.ToPointer(); byte* ptr = start; ushort* length; do{ length = (ushort*)ptr; ptr += *length; }while(*length != 0); byte[] rtn = new byte[ptr + 2 - start]; Marshal.Copy(pidl, rtn, 0, rtn.Length); return rtn; } </code></pre> <p>Of course, this could be done without pointers using <code>Marshal.ReadInt16</code>:</p> <pre><code>int offset = 0; int length; do{ length = Marshal.ReadInt16(pidl, offset); offset += length; }while(length != 0); byte[] rtn = new byte[offset + 2]; Marshal.Copy(pidl, rtn, 0, rtn.Length); return rtn; </code></pre> <p>It only costs a few more clock cycles, but it still requires full trust, so it doesn't really buy much besides staying away from <em>scaaaary</em>-looking pointers.</p> <p>Reconstructing the pidl is even easier, since the total length of the data is already known, and it doesn't even need any pointers:</p> <pre><code>byte[] itemidlist = ReadPidl(); IntPtr pidl = Marshal.AllocCoTaskMem(itemidlist.Length); Marshal.Copy(itemidlist, 0, pidl, itemidlist.Length); </code></pre> <p>Persisting and reconstructing pidls in this way worked in all of my tests across processes, and, in limited scenarios, even across <em>machines</em>. I haven't yet tested across reboots, as I'm loath to close everything and restart my machine, but given the apparent cross-machine compatibility, I'm confident in this solution.</p> <p>I'm accepting Joel Spolsky's answer as the solution, but do want to give a caveat for future passersby: Joel talks about writing out a <code>SHITEMID</code> structure, but this is not the whole story. An <code>ITEMIDLIST</code> (which is what a pidl points to) is actually a null-terminated list of these variable-length <code>SHITEMID</code> structures, and the whole list must be persisted. This is why the code above executes a loop to determine the total length. It jumps from element to element in this list, reading the length of each element to find out the offset to the next one. Only after an element length of zero is read is the length of the entire list known.</p> http://stackoverflow.com/questions/51150/why-does-clicking-a-child-window-not-always-bring-the-application-to-the-foregrou/1777881#1777881 0 Answer by P Daddy for Why does clicking a child window not always bring the application to the foreground? P Daddy 2009-11-22T05:14:03Z 2009-11-22T05:14:03Z <p>I know this is very old now, but I just stumbled across it, and I know the answer.</p> <p>In the applications you've seen (and written) where bringing the dialog box to the foreground did <strong>not</strong> bring the main window up along with it, the developer has simply neglected to specify the owner of the dialog box.</p> <p>This applies to both modal windows, like dialog boxes and message boxes, as well as to modeless windows. Setting the owner of a modeless popup also keeps the popup above its owner at all times.</p> <p>In the Win32 API, the functions to bring up a dialog box or a message box take the owner window as a parameter:</p> <pre><code>INT_PTR DialogBox( HINSTANCE hInstance, LPCTSTR lpTemplate, HWND hWndParent, /* this is the owner */ DLGPROC lpDialogFunc ); int MessageBox( HWND hWnd, /* this is the owner */ LPCTSTR lpText, LPCTSTR lpCaption, UINT uType ); </code></pre> <p>Similary, in .NET WinForms, the owner can be specified:</p> <pre><code>public DialogResult ShowDialog( IWin32Window owner ) public static DialogResult Show( IWin32Window owner, string text ) /* ...and other overloads that include this first parameter */ </code></pre> <p>Additionally, in WinForms, it's easy to set the owner of a modeless window:</p> <pre><code>public void Show( IWin32Window owner, ) </code></pre> <p>or, equivalently:</p> <pre><code>form.Owner = this; form.Show(); </code></pre> <p>In straight WinAPI code, the owner of a modeless window can be set when the window is created:</p> <pre><code>HWND CreateWindow( LPCTSTR lpClassName, LPCTSTR lpWindowName, DWORD dwStyle, int x, int y, int nWidth, int nHeight, HWND hWndParent, /* this is the owner if dwStyle does not contain WS_CHILD */ HMENU hMenu, HINSTANCE hInstance, LPVOID lpParam ); </code></pre> <p>or afterwards:</p> <pre><code>SetWindowLong(hWndPopup, GWL_HWNDPARENT, (LONG)hWndOwner); </code></pre> <p>or (64-bit compatible)</p> <pre><code>SetWindowLongPtr(hWndPopup, GWLP_HWNDPARENT, (LONG_PTR)hWndOwner); </code></pre> <p>Note that MSDN has the following to say about <a href="http://msdn.microsoft.com/en-us/library/ms644898%28VS.85%29.aspx" rel="nofollow">SetWindowLong[Ptr]</a>:</p> <blockquote> <p>Do not call <strong>SetWindowLongPtr</strong> with the GWLP_HWNDPARENT index to change the parent of a child window. Instead, use the <a href="http://msdn.microsoft.com/en-us/library/ms633541%28VS.85%29.aspx" rel="nofollow">SetParent</a> function. </p> </blockquote> <p>This is somewhat misleading, as it seems to imply that the last two snippets above are wrong. This isn't so. Calling <code>SetParent</code> will turn the intended popup into a <em>child</em> of the parent window (setting its <code>WS_CHILD</code> bit), rather than making it an owned window. The code above is the correct way to make an existing popup an owned window.</p> http://stackoverflow.com/questions/1662931/access-windows-server-2008-r2-over-the-internet/1662959#1662959 -1 Answer by P Daddy for Access Windows Server 2008 R2 over the internet P Daddy 2009-11-02T18:49:22Z 2009-11-02T18:49:22Z <p>Well, you know, you can't just put a bunch of data on a truck. The internet is more like a series of <em>tubes</em>.</p> http://stackoverflow.com/questions/1657298/is-there-a-way-to-get-text-as-soon-as-possible-without-waiting-for-a-newline/1657312#1657312 1 Answer by P Daddy for Is there a way to get text as soon as possible without waiting for a newline? P Daddy 2009-11-01T14:33:14Z 2009-11-01T14:33:14Z <p>If you're using Visual Studio, you can use <code>getch()</code>.</p> http://stackoverflow.com/questions/1654820/is-this-a-good-efficient-idiom-for-implementing-equals-and-equality-inequality-op/1654867#1654867 0 Answer by P Daddy for Is this a good/efficient idiom for implementing Equals and equality/inequality operators? P Daddy 2009-10-31T16:32:55Z 2009-10-31T16:32:55Z <p>If you're looking for efficiency, I recommend using this instead of <code>object.ReferenceEquals(foo, null)</code>:</p> <pre><code>(object)foo == null </code></pre> <p>This is effectively equivalent but avoids a function call.</p> <p>I also like to implement <code>IEquatable&lt;T&gt;</code> in all my types that override <code>Equals</code>. For reference types, I then forward <code>Equals(object)</code> to <code>Equals(Foo)</code>.</p> <pre><code>public override bool Equals(object other){return Equals(other as Foo);} </code></pre> <p>The operator overloads can be simplified as so:</p> <pre><code>public static bool operator==(Foo a, Foo b){ if((object)a == null) return (object)b == null; return a.Equals(b); } public static bool operator!=(Foo a, Foo b){ return !(a == b); } </code></pre> <p>If <em>absolute</em> efficiency is needed, though, it may be worth a little duplication of code in these functions to avoid the extra function calls, but unlike using <code>(object)foo == null</code> instead of <code>object.ReferenceEquals(foo, null)</code>, avoiding the function call requires extra code to maintain, so the small gain may not be worth it.</p> http://stackoverflow.com/questions/1639003/class-vs-pure-array-representation/1640699#1640699 1 Answer by P Daddy for Class Vs Pure Array Representation P Daddy 2009-10-28T23:05:35Z 2009-10-28T23:05:35Z <p>Rather than reinventing (and debugging and perfecting) the wheel, you might be better served using an existing big integer implementation, so you can get on with the rest of your project.</p> <p><a href="http://stackoverflow.com/questions/176775/big-integers-in-c">This SO topic</a> is a good start.<br /> You might also check out <a href="http://www.codeproject.com/KB/cs/biginteger.aspx" rel="nofollow">this CodeProject article</a>.</p> http://stackoverflow.com/questions/1640524/why-cant-i-find-the-var-keyword-in-my-visual-c-2008-studio/1640546#1640546 6 Answer by P Daddy for Why can't I find the Var keyword in my Visual C# 2008 Studio? P Daddy 2009-10-28T22:28:39Z 2009-10-28T22:28:39Z <p>Are you trying to use it for a class member? <code>var</code> is only valid for local variables within a function.</p> http://stackoverflow.com/questions/1627260/c-interfacet-t-functt-t-generic-interfaces-with-parameterized-method/1627318#1627318 4 Answer by P Daddy for C# Interface<T> { T Func<T>(T t);} : Generic Interfaces with Parameterized Methods with Generic Return Types P Daddy 2009-10-26T21:01:29Z 2009-10-26T22:01:52Z <p>You've overspecified the interface. You declare <code>T</code> in the interface definition, but then you <em>redeclare</em> it in the method's definition:</p> <pre><code>public interface IReadable &lt;T&gt; /* T is declared here */ { T Read&lt;T&gt;(string ID); /* here, you've declare a NEW generic type parameter */ /* that makes this T not the same as the T in IReadable */ } </code></pre> <p>Due to this confusion, you end up with an error when you try to implement the interface.</p> <pre><code>public class NoteAdapter : IReadable&lt;Note&gt; /* IReadable defines T to be Note */ { public Note Read&lt;Note&gt;(string ID) { /* Here, you're declaring a generic parameter */ /* named Note. This name then conflicts with */ /* the existing type name Note */ return new Note(); } } </code></pre> <p>To fix this, you simply need to remove the generic parameter from the <code>Read</code> function, both in the interface, and in the <code>NoteAdapter</code> class:</p> <pre><code>public interface IReadable &lt;T&gt; { T Read(string ID); } public class NoteAdapter : IReadable&lt;Note&gt; { public Note Read(string ID) { return new Note(); } } </code></pre> <p><strong>EDIT:</strong></p> <p>Okay, I read the rest of your post, and it seems that you've already discovered that this "works", but you seem to think it's incorrect. Why? What requirements does this not meet?</p> http://stackoverflow.com/questions/1407422/code-golf-seven-segments/1411128#1411128 4 Answer by P Daddy for Code Golf: Seven Segments P Daddy 2009-09-11T14:14:35Z 2009-09-14T14:13:14Z <h3>C (170 characters)</h3> <pre><code>i,j;main(c,s){char**r=s,*p=*++r;for(;i&lt;3;)j--?putchar(!p[-1]?p=*r,++i,j=0,10: "##3#3133X=W.&lt;X/`^_G0?:0@"[i*8+c/2]-33&gt;&gt;c%2*3+j&amp;1?"|_"[j&amp;1]:32):(j=3,c=*p++&amp;31, c-=c&gt;6?10:1);} </code></pre> <p>This takes the input string as a command-line argument. Conversion to use stdin would be one more character:</p> <pre><code>i,j;main(c){char s[99],*p=s;for(gets(s+1);i&lt;3;)j--?putchar(!*p?p=s,++i,j=0,10: "##3#3133X=W.&lt;X/`^_G0?:0@"[i*8+c/2]-33&gt;&gt;c%2*3+j&amp;1?"|_"[j&amp;1]:32):(j=3,c=*++p&amp;31, c-=c&gt;6?10:1);} </code></pre> <p>The stdin version can accept up to 98 input characters. Of course, any more than <code>floor(terminalWidth / 3)</code> will cause confusing line wrap.</p> <p>The output for each character is treated like a 3x3 grid, where the cells in each row are the segments. A segment is either "on" or "off". If a segment is "on", either a <code>'|'</code> or a <code>'_'</code> is output, depending on position. If it's off, a space is output. The character array is an array of bits that determine whether each segment is on or off. More about that after the code:</p> <pre><code>i,j; /* Loop variables. As globals, they'll be initialized to zero. */ main(c,s){ /* The signature for main is * * main(int argc, char **argv) * * Rather than add more characters for properly declaring the parameters, * I'm leaving them without type specifiers, allowing them to default to * int. On almost all modern platforms, a pointer is the same size as * an int, so we can get away with the next line, which assigns the int * value s to the char** variable r. */ char**r=s,*p=*++r; /* After coercing the int s to a char** r, offset it by 1 to get the * value of argv[1], which is the command-line argument. (argv[0] would * be the name of the executable.) */ for(;i&lt;3;) /* loop until we're done with 3 lines */ j--? /* j is our horizontal loop variable. If we haven't finished a * character, then ... */ putchar( /* ...we will output something */ !p[-1]? /* if the previous char was a terminating null ... */ p=*r,++i,j=0,10 /* ... reset for the next row. We need to: * * - reinitialize p to the start of the input * - increment our vertical loop variable, i * - set j to zero, since we're finished with this * "character" (real characters take 3 iterations of * the j loop to finish, but we need to short-circuit * for end-of-string, since we need to output only one * character, the newline) * - finally, send 10 to putchar to output the newline. */ :"##3#3133X=W.&lt;X/`^_G0?:0@"[i*8+c/2]-33&gt;&gt;c%2*3+j&amp;1? /* If we haven't reached the terminating null, then * check whether the current segment should be "on" or * "off". This bit of voodoo is explained after the * code. */ "|_"[j&amp;1]:32 /* if the segment is on, output either '|' or '_', * depending on position (value of j), otherwise, * output a space (ASCII 32) */ )/* end of putchar call */ :(j=3,c=*p++&amp;31,c-=c&gt;6?10:1); /* this is the else condition for j--? above. If j was zero, * then we need to reset for the next character: * * - set j to 3, since there are three cells across in the grid * - increment p to the next input character with p++ * - convert the next character to a value in the range 0–15. * The characters we're interested in, 0–9, A–F, and a–f, are * unique in the bottom four bits, except the upper- and * lowercase letters, which is what we want. So after anding * with 15, the digits will be in the range 16–25, and the * letters will be in the range 1–6. So we subtract 10 if * it's above 6, or 1 otherwise. Therefore, input letters * 'A'–'F', or 'a'–'f' map to values of c between 0 and 5, * and input numbers '0'–'9' map to values of c between * 6 and 15. The fact that this is not the same as the * characters' actual hex values is not important, and I've * simply rearranged the data array to match this order. */ } </code></pre> <p>The character array describes the character grids. Each character in the array describes one horizontal row of the output grid for two input characters. Each cell in the grid is represented by one bit, where <code>1</code> means that segment is "on" (so output a <code>'|'</code> or a <code>'_'</code>, depending on position), and <code>0</code> means that segment is "off".</p> <p>It takes three characters in the array to describe the entire grid for two input characters. The lowest three bits of each character in the array, bits 0-2, describe one row for the even input character of the two. The next three bits, bits 3-5, describe one row for the odd input character of the two. Bits 6 and 7 are unused. This arrangement, with an offset of +33, allows every character in the array to be printable, without escape codes or non-ASCII characters.</p> <p>I toyed with several different encodings, including putting the bits for all 7 segments of an input character into one character in the array, but found this one to be the overall shortest. While this scheme requires 24 characters in the array to represent the segments of only 16 input characters, other encodings either required using non-ASCII characters (which unsurprisingly caused problems when I used this in my <a href="http://stackoverflow.com/questions/1352587/code-golf-morse-code/1355594#1355594">Morse Code golf answer</a>), a lot of escape codes, and/or complex decoding code. The decoding code for this scheme is surprisingly simple, although it does take full advantage of C's operator precedence to avoid having to add any parentheses.</p> <p>Let's break it into tiny steps to understand it.</p> <pre><code>"##3#3133X=W.&lt;X/`^_G0?:0@" </code></pre> <p>This is the encoded array. Let's grab the appropriate character to decode.</p> <pre><code>[i*8 </code></pre> <p>The first 8 characters describe the top row of segments, the next 8 describe the middle row of segments, and the last 8 describe the bottom row of segments.</p> <pre><code> +c/2] </code></pre> <p>Remember that, by this point, c contains a value from 0 to 15, which corresponds to an input of ABCDEF0123456789, and that the array encodes two input characters per encoded character. So the first character in the array, <code>'#'</code>, holds the bits for the top row of 'A' and of 'B', the second character, also <code>'#'</code>, encodes the top row of 'C' and 'D', and so on.</p> <pre><code>-33 </code></pre> <p>The encoding results in several values that are under 32, which would require escape codes. This offset brings every encoded character into the range of printable, unescaped characters.</p> <pre><code>&gt;&gt; </code></pre> <p>The right shift operator has lower precedence than arithmetic operators, so this shift is done to the character after subtracting the offset.</p> <pre><code>c%2*3 </code></pre> <p><code>c%2</code> evaluates to zero for even numbers, and to one for odd numbers, so we'll shift right by three for odd characters, to get at bits 3–5, and not shift at all for even characters, providing access to bits 0–2. While I'd prefer to use <code>c&amp;1</code> for even/odd check, and that is what I use everywhere else, the <code>&amp;</code> operator has too low precedence to use here without adding parentheses. The <code>%</code> operator has just the right precedence.</p> <pre><code>+j </code></pre> <p>Shift by an additional <code>j</code> bits to get at the correct bit for the current output position.</p> <pre><code>&amp;1 </code></pre> <p>The bitwise and operator has lower precedence than both the arithmetic operators and the shift operators, so this will test whether bit zero is set <em>after</em> shifting has brought the relevant bit into bit zero.</p> <pre><code>? </code></pre> <p>If bit zero is set ...</p> <pre><code>"|_" </code></pre> <p>... output one of these characters, chosen by ...</p> <pre><code>[j&amp;1] </code></pre> <p>... whether our horizontal loop variable is even or odd.</p> <pre><code>:32 </code></pre> <p>Otherwise (bit zero is not set), output 32 (space character).</p> <p><hr /></p> <p>I don't think I can trim this down much more, if any, and certainly not enough to beat <a href="http://stackoverflow.com/questions/1407422/code-golf-seven-segments/1408430#1408430">hobbs's perl entry</a>.</p> http://stackoverflow.com/questions/1384811/code-golf-mathematical-expression-evaluator-full-pemdas/1405144#1405144 0 Answer by P Daddy for Code Golf: Mathematical expression evaluator (full PEMDAS) P Daddy 2009-09-10T12:59:35Z 2009-09-11T13:53:30Z <h2>C (277 characters)</h2> <pre><code>#define V(c)D o;for(**s-40?*r=strtod(*s,s):(++*s,M(s,r)),o=**s?strchr(t,*(*s)++)-t:0;c;)L(r,&amp;o,s); typedef char*S;typedef double D;D strtod(),pow();S*t=")+-*/^",strchr(); L(D*v,D*p,S*s){D u,*r=&amp;u;V(*p&lt;o)*v=*p-1?*p-2?*p-3?*p-4?pow(*v,u):*v/u: *v*u:*v-u:*v+u;*p=o;}M(S*s,D*r){V(o)} </code></pre> <p>The first newline is required, and I've counted it as one character.</p> <p>This is a completely different approach from <a href="http://stackoverflow.com/questions/1384811/code-golf-mathematical-expression-evaluator-full-pemdas/1387189#1387189">my other answer</a>. It's more of a functional approach. Instead of tokenizing and looping through several times, this one evaluates the expression in one pass, using recursive calls for higher-precedence operators, effectively using the call stack to store state.</p> <p>To satisfy strager <sup>;)</sup>, this time I've included forward declarations of <code>strtod()</code>, <code>pow()</code>, and <code>strchr()</code>. Taking them out would save 26 characters.</p> <p>The entry point is <strong><code>M()</code></strong>. The input string is the first parameter, and the output double is the second parameter. The entry point used to be <code>E()</code>, which returned a string, as the OP asked. But since mine was the only C implementation doing so, I decided to yank it out (peer pressure, and all). Adding it back in would add 43 characters:</p> <pre><code>E(S s,S r){D v;M(&amp;s,&amp;v);sprintf(r,"%g",v);} </code></pre> <p>Below is the code before I compressed it:</p> <pre><code>double strtod(),pow(),Solve(); int OpOrder(char op){ int i=-1; while("\0)+-*/^"[++i] != op); return i/2; } double GetValue(char **s){ if(**s == '('){ ++*s; return Solve(s); } return strtod(*s, s); } double Calculate(double left, char *op, char **s){ double right; char rightOp; if(*op == 0 || *op == ')') return left; right = GetValue(s); rightOp = *(*s)++; while(OpOrder(*op) &lt; OpOrder(rightOp)) right = Calculate(right, &amp;rightOp, s); switch(*op){ case '+': left += right; break; case '-': left -= right; break; case '*': left *= right; break; case '/': left /= right; break; case '^': left = pow(left, right); break; } *op = rightOp; return left; } double Solve(char **s){ double value = GetValue(s); char op = *(*s)++; while(op != 0 &amp;&amp; op != ')') value = Calculate(value, &amp;op, s); return value; } void Evaluate(char *expression, char *result){ sprintf(result, "%g", Solve(&amp;expression)); } </code></pre> <p>Since the OP's "<a href="http://stackoverflow.com/questions/1384811/code-golf-mathematical-expression-evaluator-full-pemdas/1384993#1384993">reference implementation</a>" is in C#, I wrote a semi-compressed C# version as well:</p> <pre><code>D P(D o){ return o!=6?o!=7&amp;&amp;o!=2?o&lt;2?0:1:2:3; } D T(ref S s){ int i; if(s[i=0]&lt;48) i++; while(i&lt;s.Length&amp;&amp;s[i]&gt;47&amp;s[i]&lt;58|s[i]==46) i++; S t=s; s=s.Substring(i); return D.Parse(t.Substring(0,i)); } D V(ref S s,out D o){ D r; if(s[0]!=40) r=T(ref s); else{s=s.Substring(1);r=M(ref s);} if(s=="") o=0; else{o=s[0]&amp;7;s=s.Substring(1);} return r; } void L(ref D v,ref D o,ref S s){ D p,r=V(ref s,out p),u=v; for(;P(o)&lt;P(p);) L(ref r,ref p,ref s); v = new Func&lt;D&gt;[]{()=&gt;u*r,()=&gt;u+r,()=&gt;0,()=&gt;u-r,()=&gt;Math.Pow(u,r),()=&gt;u/r}[(int)o-2](); o=p; } D M(ref S s){ for(D o,r=V(ref s,out o);o&gt;1) L(ref r,ref o,ref s); return r; } </code></pre> http://stackoverflow.com/questions/1384811/code-golf-mathematical-expression-evaluator-full-pemdas/1387189#1387189 17 Answer by P Daddy for Code Golf: Mathematical expression evaluator (full PEMDAS) P Daddy 2009-09-07T01:06:57Z 2009-09-09T11:35:47Z <h2>C (465 characters)</h2> <pre><code>#define F for(i=0;P-8;i+=2) #define V t[i #define P V+1] #define S V+2]),K(&amp;L,4),i-=2) #define L V-2] K(double*t,int i){for(*++t=4;*t-8;*++t=V])*++t=V];}M(double*t){int i,p,b; F if(!P)for(p=1,b=i;i+=2,p;)P?P-1||--p||(P=8,M(t+b+2),K(t+b,i-b),i=b):++p; F P-6||(L=pow(L,S;F P-2&amp;&amp;P-7||(L*=(P-7?V+2]:1/S;F P-4&amp;&amp;(L+=(P-5?V+2]:-S; F L=V];}E(char*s,char*r){double t[99];char*e,i=2,z=0;for(;*s;i+=2)V]= strtod(s,&amp;e),P=z=e-s&amp;&amp;z-4&amp;&amp;z-1?s=e,4:*s++&amp;7;P=8;M(t+2);sprintf(r,"%g",*t);} </code></pre> <p>The first five newlines are required, the rest are there just for readability. I've counted the first five newlines as one character each. If you want to measure it in lines, it was 28 lines before I removed all the whitespace, but that's a pretty meaningless number. It could have been anything from 6 lines to a million, depending on how I formatted it.</p> <p>The entry point is <strong><code>E()</code></strong> (for "evaluate"). The first parameter is the input string, and the second parameter points to the output string, and must be allocated by the caller (as per usual C standards). It can handle up to 47 tokens, where a token is either an operator (one of "<code>+-*/^()</code>"), or a floating point number. Unary sign operators do not count as a separate token.</p> <p>This code is loosely based on a project I did many years ago as an exercise. I took out all the error handling and whitespace skipping and retooled it using golf techniques. Below are the 28 lines, with enough formatting that I was able to <em>write</em> it, but probably not enough to <em>read</em> it. You'll want to <code>#include</code> <code>&lt;stdlib.h&gt;</code>, <code>&lt;stdio.h&gt;</code>, and <code>&lt;math.h&gt;</code> (or see note at the bottom).</p> <p>See after the code for an explanation of how it works.</p> <pre><code>#define F for(i=0;P-8;i+=2) #define V t[i #define P V+1] #define S V+2]),K(&amp;L,4),i-=2) #define L V-2] K(double*t,int i){ for(*++t=4;*t-8;*++t=V]) *++t=V]; } M(double*t){ int i,p,b; F if(!P) for(p=1,b=i;i+=2,p;) P?P-1||--p||(P=8,M(t+b+2),K(t+b,i-b),i=b):++p; F P-6||(L=pow(L,S; F P-2&amp;&amp;P-7||(L*=(P-7?V+2]:1/S; F P-4&amp;&amp;(L+=(P-5?V+2]:-S; F L=V]; } E(char*s,char*r){ double t[99]; char*e,i=2,z=0; for(;*s;i+=2) V]=strtod(s,&amp;e),P=z=e-s&amp;&amp;z-4&amp;&amp;z-1?s=e,4:*s++&amp;7; P=8; M(t+2); sprintf(r,"%g",*t); } </code></pre> <p>The first step is to tokenize. The array of doubles contains two values for each token, an operator (<code>P</code>, because <code>O</code> looks too much like zero), and a value (<code>V</code>). This tokenizing is what is done in the <code>for</code> loop in <strong><code>E()</code></strong>. It also deals with any unary <code>+</code> and <code>-</code> operators, incorporating them into the constant.</p> <p>The "operator" field of the token array can have one of the following values:</p> <blockquote> <p><strong>0</strong>: <code>(</code><br /> <strong>1</strong>: <code>)</code><br /> <strong>2</strong>: <code>*</code><br /> <strong>3</strong>: <code>+</code><br /> <strong>4</strong>: <em>a floating-point constant value</em><br /> <strong>5</strong>: <code>-</code><br /> <strong>6</strong>: <code>^</code><br /> <strong>7</strong>: <code>/</code><br /> <strong>8</strong>: <em>end of token string</em> </p> </blockquote> <p>This scheme was largely derived by <a href="http://stackoverflow.com/questions/928563/code-golf-evaluating-mathematical-expressions/931815#931815">Daniel Martin</a>, who noticed that the last 3 bits were unique in the ASCII representation of each of the operators in this challenge.</p> <p>An uncompressed version of <code>E()</code> would look something like this:</p> <pre><code>void Evaluate(char *expression, char *result){ double tokenList[99]; char *parseEnd; int i = 2, prevOperator = 0; /* i must start at 2, because the EvalTokens will write before the * beginning of the array. This is to allow overwriting an opening * parenthesis with the value of the subexpression. */ for(; *expression != 0; i += 2){ /* try to parse a constant floating-point value */ tokenList[i] = strtod(expression, &amp;parseEnd); /* explanation below code */ if(parseEnd != expression &amp;&amp; prevOperator != 4/*constant*/ &amp;&amp; prevOperator != 1/*close paren*/){ expression = parseEnd; prevOperator = tokenList[i + 1] = 4/*constant*/; }else{ /* it's an operator */ prevOperator = tokenList[i + 1] = *expression &amp; 7; expression++; } } /* done parsing, add end-of-token-string operator */ tokenList[i + 1] = 8/*end*/ /* Evaluate the expression in the token list */ EvalTokens(tokenList + 2); /* remember the offset by 2 above? */ sprintf(result, "%g", tokenList[0]/* result ends up in first value */); } </code></pre> <p>Since we're guaranteed valid input, the only reason the parsing would fail would be because the next token is an operator. If this happens, the <code>parseEnd</code> pointer will be the same as, <code>tokenStart</code>. We must also handle the case where parsing <em>succeeded</em>, but what we really wanted was an operator. This would occur for the addition and subtraction operators, unless a sign operator directly followed. In other words, given the expression "<code>4-6</code>", we want to parse it as <code>{4, -, 6}</code>, and not as <code>{4, -6}</code>. On the other hand, given "<code>4+-6</code>", we should parse it as <code>{4, +, -6}</code>. The solution is quite simple. If parsing fails <em>OR</em> the preceding token was a constant or a closing parenthesis (effectively a subexpression which will evaluate to a constant), then the current token is an operator, otherwise it's a constant.</p> <p>After tokenizing is done, calculating and folding are done by calling <strong><code>M()</code></strong>, which first looks for any matched pairs of parentheses and processes the subexpressions contained within by calling itself recursively. Then it processes operators, first exponentiation, then multiplication and division together, and finally addition and subtraction together. Because well-formed input is expected (as specified in the challenge), it doesn't check for the addition operator explicitly, since it's the last legal operator after all the others are processed.</p> <p>The calculation function, lacking golf compression, would look something like this:</p> <pre><code>void EvalTokens(double *tokenList){ int i, parenLevel, parenStart; for(i = 0; tokenList[i + 1] != 8/*end*/; i+= 2) if(tokenList[i + 1] == 0/*open paren*/) for(parenLevel = 1, parenStart = i; i += 2, parenLevel &gt; 0){ if(tokenList[i + 1] == 0/*another open paren*/) parenLevel++; else if(tokenList[i + 1] == 1/*close paren*/) if(--parenLevel == 0){ /* make this a temporary end of list */ tokenList[i + 1] = 8; /* recursively handle the subexpression */ EvalTokens(tokenList + parenStart + 2); /* fold the subexpression out */ FoldTokens(tokenList + parenStart, i - parenStart); /* bring i back to where the folded value of the * subexpression is now */ i = parenStart; } } for(i = 0; tokenList[i + 1] != 8/*end*/; i+= 2) if(tokenList[i + 1] == 6/*exponentiation operator (^)*/){ tokenList[i - 2] = pow(tokenList[i - 2], tokenList[i + 2]); FoldTokens(tokenList + i - 2, 4); i -= 2; } for(i = 0; tokenList[i + 1] != 8/*end*/; i+= 2) if(tokenList[i + 1] == 2/*multiplication operator (*)*/ || tokenList[i + 1] == 7/*division operator (/)*/){ tokenList[i - 2] *= (tokenList[i + 1] == 2 ? tokenList[i + 2] : 1 / tokenList[i + 2]); FoldTokens(tokenList + i - 2, 4); i -= 2; } for(i = 0; tokenList[i + 1] != 8/*end*/; i+= 2) if(tokenList[i + 1] != 4/*constant*/){ tokenList[i - 2] += (tokenList[i + 1] == 3 ? tokenList[i + 2] : -tokenList[i + 2]); FoldTokens(tokenList + i - 2, 4); i -= 2; } tokenList[-2] = tokenList[0]; /* the compressed code does the above in a loop, equivalent to: * * for(i = 0; tokenList[i + 1] != 8; i+= 2) * tokenList[i - 2] = tokenList[i]; * * This loop will actually only iterate once, and thanks to the * liberal use of macros, is shorter. */ } </code></pre> <p><sup><em>Some</em> amount of compression would probably make this function <em>easier</em> to read.</sup></p> <p>Once an operation is performed, the operands and operator are folded out of the token list by <strong><code>K()</code></strong> (called through the macro <strong>S</strong>). The result of the operation is left as a constant in place of the folded expression. Consequently, the final result is left at the beginning of the token array, so when control returns to <strong><code>E()</code></strong>, it simply prints that to a string, taking advantage of the fact that the first value in the array is the value field of the token.</p> <p>This call to <code>FoldTokens()</code> takes place either after an operation (<code>^</code>, <code>*</code>, <code>/</code>, <code>+</code>, or <code>-</code>) has been performed, or after a subexpression (surrounded by parentheses) has been processed. The <code>FoldTokens()</code> routine ensures that the result value has the correct operator type (4), and then copies the rest of the larger expression of the subexpression. For instance, when the expression "<code>2+6*4+1</code>" is processed, <code>EvalTokens()</code> first calculates <code>6*4</code>, leaving the result in place of the <code>6</code> (<code>2+24*4+1</code>). <code>FoldTokens()</code> then removes the rest of the sub expression "<code>24*4</code>", leaving <code>2+24+1</code>.</p> <pre><code>void FoldTokens(double *tokenList, int offset){ tokenList++; tokenList[0] = 4; // force value to constant while(tokenList[0] != 8/*end of token string*/){ tokenList[0] = tokenList[offset]; tokenList[1] = tokenList[offset + 1]; tokenList += 2; } } </code></pre> <p>That's it. The macros are just there to replace common operations, and everything else is just golf-compression of the above.</p> <p><hr /></p> <p><a href="http://stackoverflow.com/questions/1384811/code-golf-mathematical-expression-evaluator-full-pemdas/1386221#1386221">strager</a> insists that the code should include <code>#include</code> statements, as it will not function correctly without a proper forward declation of the <code>strtod</code> and <code>pow</code> and functions. Since the challenge asks for just a function, and not a complete program, I hold that this should not be required. However, forward declarations could be added at minimal cost by adding the following code:</p> <pre><code>#define D double D strtod(),pow(); </code></pre> <p>I would then replace all instances of "<code>double</code>" in the code with "<code>D</code>". This would add 19 characters to the code, bringing the total up to 484. On the other hand, I could also convert my function to return a double instead of a string, as did he, which would trim 15 characters, changing the <strong><code>E()</code></strong> function to this:</p> <pre><code>D E(char*s){ D t[99]; char*e,i=2,z=0; for(;*s;i+=2) V]=strtod(s,&amp;e),P=z=e-s&amp;&amp;z-4&amp;&amp;z-1?s=e,4:*s++&amp;7; P=8; M(t+2); return*t; } </code></pre> <p>This would make the total code size 469 characters (or 452 without the forward declarations of <code>strtod</code> and <code>pow</code>, but with the <code>D</code> macro). It would even be possible to trim 1 more characters by requiring the caller to pass in a pointer to a double for the return value:</p> <pre><code>E(char*s,D*r){ D t[99]; char*e,i=2,z=0; for(;*s;i+=2) V=strtod(s,&amp;e),P=z=e-s&amp;&amp;z-4&amp;&amp;z-1?s=e,4:*s++&amp;7; P=8; M(t+2); *r=*t; } </code></pre> <p>I'll leave it to the reader to decide which version is appropriate.</p> http://stackoverflow.com/questions/1390296/code-golf-email-address-validation-without-regular-expressions/1391637#1391637 5 Answer by P Daddy for Code Golf: Email Address Validation without Regular Expressions P Daddy 2009-09-08T02:16:39Z 2009-09-08T02:16:39Z <h2>C (166 characters)</h2> <pre><code>#define F(t,u)for(r=s;t=(*s-64?*s-46?isalpha(*s)?3:isdigit(*s)|*s==95?4:0:2:1);++s);if(s-r-1 u)return 0; V(char*s){char*r;F(2&lt;,&lt;0)F(1=)F(3=,&lt;0)F(2=)F(3=,&lt;1)return 1;} </code></pre> <p>The single newline is required, and I've counted it as one character.</p> http://stackoverflow.com/questions/1390296/code-golf-email-address-validation-without-regular-expressions/1390899#1390899 12 Answer by P Daddy for Code Golf: Email Address Validation without Regular Expressions P Daddy 2009-09-07T20:46:06Z 2009-09-07T20:46:06Z <h1><a href="http://stackoverflow.com/questions/1384811/code-golf-mathematical-expression-evaluator-full-pemdas/1387240#1387240">J</a></h1> <pre><code>:[[/%^(:[[+-/^,&amp;i|:[$[' ']^j+0__:k&lt;3:]] </code></pre> http://stackoverflow.com/questions/1376077/code-golf-the-wave/1381290#1381290 2 Answer by P Daddy for Code Golf: The wave P Daddy 2009-09-04T20:02:28Z 2009-09-05T17:15:46Z <h3>C (157 characters)</h3> <p>I'm stuck there for the time being. I don't think C will beat J on this one. Thanks to strager for helping trim 8 characters, though.</p> <pre><code>char*p,a[999][80];w,x,y=500;main(c){for(gets(memset(p=*a,32,79920));*p; a[y][x++]=c=*p++)y+=*p&lt;c,y-=*p&gt;c;for(;++w&lt;998;strspn(p," ")-79&amp;&amp;puts(p)) 79[p=a[w]]=0;} </code></pre> <p>Formatted:</p> <pre><code>char *p, /* pointer to current character (1st) or line (2nd) */ a[999][80]; /* up to 998 lines of up to 79 characters */ w, x, y = 500; /* three int variables. y initialized to middle of array */ main(c){ for(gets(memset(p=*a, 32, 79920)); /* 999 * 80 = 79920, so the entire array is filled with space characters. * memset() returns the value of its first parameter, so the above is * a shortcut for: * * p = *a; * memset(p, 32, 79920); * gets(p); * * Incidentally, this is why I say "up to 998 lines", since the first * row in the array is used for the input string. * * **** WARNING: Input string must not be more than 79 characters! **** */ *p;a[y][x++] = c = *p++) /* read from input string until end; * put this char in line buffer and in prev */ y += *p &lt; c, /* if this char &lt; prev char, y++ */ y -= *p &gt; c; /* the use of commas saves from using { } */ for(;++w &lt; 998; /* will iterate from 1 to 998 */ strspn(p, " ") - 79 &amp;&amp; /* strspn returns the index of the first char in its first parameter * that's NOT in its second parameter, so this gets the first non- * space character in the string. If this is the NULL at the end of * the string (index 79), then we won't print this line (since it's blank). */ puts(p)) /* write the line out to the screen (followed by '\n') */ 79[p = a[w]] = 0; /* same as "(p = a[y])[79] = 0", * or "p = a[y], p[79] = 0", but shorter. * Puts terminating null at the end of each line */ } </code></pre> <p>I didn't bother supporting input of more than 79 characters, since that would cause confusing wrap on most terminals.</p> http://stackoverflow.com/questions/1376077/code-golf-the-wave/1381473#1381473 11 Answer by P Daddy for Code Golf: The wave P Daddy 2009-09-04T20:47:20Z 2009-09-05T16:04:13Z <h3>C on a VT100 terminal (76 characters)</h3> <p>This works in my test on FreeSBIE:</p> <pre><code>o;main(c){for(;(c=getchar())-10;o=c)printf("\33[1%c%c",c&lt;o?66:c&gt;o?65:71,c);} </code></pre> <p>But in order to see the output clearly, you have to run it with something like this:</p> <blockquote> <p><code>clear ; printf "\n\n\n\n\n" ; echo the quick brown fox jumps over the lazy dog | ./a.out ; printf "\n\n\n\n\n"</code></p> </blockquote> <p>Does this count?</p> http://stackoverflow.com/questions/1352587/code-golf-morse-code/1355594#1355594 45 Answer by P Daddy for Code Golf: Morse code P Daddy 2009-08-31T02:41:22Z 2009-09-05T15:56:56Z <h1>C (131 characters)</h1> <p>Yes, <i>13<b>1</b>!</i></p> <pre><code>main(c){for(;c=c?c:(c=toupper(getch())-32)? "•ƒŒKa`^ZRBCEIQiw#S#nx(37+$6-2&amp;@/4)'18=,*%.:0;?5" [c-12]-34:-3;c/=2)putch(c/2?46-c%2:0);} </code></pre> <p>I eeked out a few more characters by combining the logic from the <code>while</code> and <code>for</code> loops into a single <code>for</code> loop, and by moving the declaration of the <code>c</code> variable into the <code>main</code> definition as an input parameter. This latter technique I borrowed from <a href="http://stackoverflow.com/questions/1376077/code-golf-the-wave/1376254#1376254">strager's answer to another challenge</a>.</p> <p><hr /></p> <p>For those trying to verify the program with GCC or with ASCII-only editors, you may need the following, slightly longer version:</p> <pre><code>main(c){for(;c=c?c:(c=toupper(getchar())-32)?c&lt;0?1: "\x95#\x8CKa`^ZRBCEIQiw#S#nx(37+$6-2&amp;@/4)'18=,*%.:0;?5" [c-12]-34:-3;c/=2)putchar(c/2?46-c%2:32);} </code></pre> <p>This version is 17 characters longer (weighing in at a comparatively huge 148), due to the following changes:</p> <ul> <li>+4: <code>getchar()</code> and <code>putchar()</code> instead of the non-portable <code>getch()</code> and <code>putch()</code> </li> <li>+6: escape codes for two of the characters instead of non-ASCII characters</li> <li>+1: 32 instead of 0 for space character</li> <li>+6: added "<code>c&lt;0?1:</code>" to suppress garbage from characters less than ASCII 32 (namely, from <code>'\n'</code>). You'll still get garbage from any of <code>!"#$%&amp;'()*+[\]^_</code>&#96;<code>{|}~</code>, or anything above ASCII 126.</li> </ul> <p>This should make the code <em>completely</em> portable. Compile with:</p> <pre>gcc -std=c89 -funsigned-char morse.c</pre> <p>The <code>-std=c89</code> is optional. The <code>-funsigned-char</code> is necessary, though, or you will get garbage for comma and full stop.</p> <p><hr /></p> <h3>135 characters</h3> <pre><code>c;main(){while(c=toupper(getch()))for(c=c-32? "•ƒŒKa`^ZRBCEIQiw#S#nx(37+$6-2&amp;@/4)'18=,*%.:0;?5" [c-44]-34:-3;c;c/=2)putch(c/2?46-c%2:0);} </code></pre> <p>In my opinion, this latest version is much more visually appealing, too. And no, it's not portable, and it's no longer protected against out-of-bounds input. It also has a pretty bad UI, taking character-by-character input and converting it to Morse Code and having <em>no</em> exit condition (you have to hit <kbd>Ctrl</kbd>+<kbd>Break</kbd>). But portable, robust code with a nice UI wasn't a requirement.</p> <p>A brief-as-possible explanation of the code follows:</p> <pre><code>main(c){ while(c = toupper(getch())) /* well, *sort of* an exit condition */ for(c = c - 32 ? // effectively: "if not space character" "•ƒŒKa`^ZRBCEIQiw#S#nx(37+$6-2&amp;@/4)'18=,*%.:0;?5"[c - 44] - 34 /* This array contains a binary representation of the Morse Code * for all characters between comma (ASCII 44) and capital Z. * The values are offset by 34 to make them all representable * without escape codes (as long as chars &gt; 127 are allowed). * See explanation after code for encoding format. */ : -3; /* if input char is space, c = -3 * this is chosen because -3 % 2 = -1 (and 46 - -1 = 47) * and -3 / 2 / 2 = 0 (with integer truncation) */ c; /* continue loop while c != 0 */ c /= 2) /* shift down to the next bit */ putch(c / 2 ? /* this will be 0 if we're down to our guard bit */ 46 - c % 2 /* We'll end up with 45 (-), 46 (.), or 47 (/). * It's very convenient that the three characters * we need for this exercise are all consecutive. */ : 0 /* we're at the guard bit, output blank space */ ); } </code></pre> <p>Each character in the long string in the code contains the encoded Morse Code for one text character. Each bit of the encoded character represents either a dash or a dot. A one represents a dash, and a zero represents a dot. The least significant bit represents the first dash or dot in the Morse Code. A final "guard" bit determines the length of the code. That is, the highest one bit in each encoded character represents end-of-code and is not printed. Without this guard bit, characters with trailing dots couldn't be printed correctly.</p> <p>For instance, the letter 'L' is "<code>.-..</code>" in Morse Code. To represent this in binary, we need a 0, a 1, and two more 0s, starting with the least significant bit: 0010. Tack one more 1 on for a guard bit, and we have our encoded Morse Code: 10010, or decimal 18. Add the +34 offset to get 52, which is the ASCII value of the character '4'. So the encoded character array has a '4' as the 33rd character (index 32).</p> <p>This technique is similar to that used to encode characters in <a href="http://stackoverflow.com/questions/1352587/code-golf-morse-code/1352635#1352635">ACoolie's</a>, <a href="http://stackoverflow.com/questions/1352587/code-golf-morse-code/1352700#1352700">strager's</a><sup><a href="http://stackoverflow.com/questions/1352587/code-golf-morse-code/1352851#1352851">(2)</a></sup>, <a href="http://stackoverflow.com/questions/1352587/code-golf-morse-code/1352976#1352976">Miles's</a>, <a href="http://stackoverflow.com/questions/1352587/code-golf-morse-code/1352978#1352978">pingw33n's</a>, <a href="http://stackoverflow.com/questions/1352587/code-golf-morse-code/1352739#1352739">Alec's</a>, and <a href="http://stackoverflow.com/questions/1352587/code-golf-morse-code/1353898#1353898">Andrea's</a> solutions, but is slightly simpler, requiring only one operation per bit (shifting/dividing), rather than two (shifting/dividing and decrementing).</p> <blockquote> <p><strong>EDIT:</strong><br /> Reading through the rest of the implementations, I see that <a href="http://stackoverflow.com/questions/1352587/code-golf-morse-code/1354576#1354576">Alec</a> and <a href="http://stackoverflow.com/questions/1352587/code-golf-morse-code/1355476#1355476">Anon</a> came up with this encoding scheme—using the guard bit—before I did. Anon's solution is particularly interesting, using Python's <code>bin</code> function and stripping off the <code>"0b"</code> prefix and the guard bit with <code>[3:]</code>, rather than looping, anding, and shifting, as Alec and I did.</p> </blockquote> <p>As a bonus, this version also handles hyphen (<code>-....-</code>), slash (<code>-..-.</code>), colon (<code>---...</code>), semicolon (<code>-.-.-.</code>), equals (<code>-...-</code>), and at sign (<code>.--.-.</code>). As long as 8-bit characters are allowed, these characters require no extra code bytes to support. No more characters can be supported with this version without adding length to the code (unless there's Morse Codes for greater/less than signs).</p> <p>Because I find the old implementations still interesting, and the text has some caveats applicable to this version, I've left the previous content of this post below.</p> <p><hr /></p> <p>Okay, presumably, the user interface can suck, right? So, borrowing from <a href="http://stackoverflow.com/questions/1352587/code-golf-morse-code/1352851#1352851">strager</a>, I've replaced <code>gets()</code>, which provides buffered, echoed line input, with <code>getch()</code>, which provides unbuffered, unechoed character input. This means that every character you type gets translated immediately into Morse Code on the screen. Maybe that's cool. It no longer works with either stdin or a command-line argument, but it's pretty damn small.</p> <p>I've kept the old code below, though, for reference. Here's the new.</p> <h3>New code, with bounds checking, 171 characters:</h3> <pre><code>W(i){i?W(--i/2),putch(46-i%2):0;}c;main(){while(c=toupper(getch())-13) c=c-19?c&gt;77|c&lt;31?0:W("œ*~*hXPLJIYaeg*****u*.AC5+;79-@6=0/8?F31,2:4BDE" [c-31]-42):putch(47),putch(0);} </code></pre> <p><kbd>Enter</kbd> breaks the loop and exits the program.</p> <h3>New code, without bounds checking, 159 characters:</h3> <pre><code>W(i){i?W(--i/2),putch(46-i%2):0;}c;main(){while(c=toupper(getch())-13) c=c-19?W("œ*~*hXPLJIYaeg*****u*.AC5+;79-@6=0/8?F31,2:4BDE"[c-31]-42): putch(47),putch(0);} </code></pre> <h3>Below follows the old 196/177 code, with some explanation:</h3> <pre><code>W(i){i?W(--i/2),putch(46-i%2):0;}main(){char*p,c,s[99];gets(s); for(p=s;*p;)c=*p++,c=toupper(c),c=c-32?c&gt;90|c&lt;44?0:W( "œ*~*hXPLJIYaeg*****u*.AC5+;79-@6=0/8?F31,2:4BDE"[c-44]-42): putch(47),putch(0);} </code></pre> <p>This is based on <a href="http://stackoverflow.com/questions/1352587/code-golf-morse-code/1353898#1353898">Andrea's Python answer</a>, using the same technique for generating the morse code as in that answer. But instead of storing the encodable characters one after another and finding their indexes, I stored the indexes one after another and look them up by character (similarly to <a href="http://stackoverflow.com/questions/1352587/code-golf-morse-code/1354977#1354977">my earlier answer</a>). This prevents the long gaps near the end that caused problems for earlier implementors.</p> <p>As <a href="http://stackoverflow.com/questions/1352587/code-golf-morse-code/1354977#1354977">before</a>, I've used a character that's greater than 127. Converting it to ASCII-only adds 3 characters. The first character of the long string must be replaced with <code>\x9C</code>. The offset is necessary this time, otherwise a large number of characters are under 32, and <em>must</em> be represented with escape codes.</p> <p>Also as before, processing a command-line argument instead of stdin adds 2 characters, and using a real space character between codes adds 1 character.</p> <p>On the other hand, some of the other routines here don't deal with input outside the accepted range of [ ,.0-9\?A-Za-z]. If such handling were removed from this routine, then 19 characters could be removed, bringing the total down as low as 177 characters. But if this is done, and invalid input is fed to this program, it may crash and burn.</p> <p>The code in this case could be:</p> <pre><code>W(i){i?W(--i/2),putch(46-i%2):0;}main(){char*p,s[99];gets(s); for(p=s;*p;p++)*p=*p-32?W( "œ*~*hXPLJIYaeg*****u*.AC5+;79-@6=0/8?F31,2:4BDE" [toupper(*p)-44]-42):putch(47),putch(0);} </code></pre> http://stackoverflow.com/questions/1367700/whats-the-difference-between-keydown-and-keypress-in-net/1367865#1367865 4 Answer by P Daddy for What's the difference between KeyDown and KeyPress in .NET? P Daddy 2009-09-02T13:58:31Z 2009-09-02T14:30:37Z <p>There is apparently <em>a lot</em> of misunderstanding about this!</p> <p>The only practical difference between <code>KeyDown</code> and <code>KeyPress</code> is that <code>KeyPress</code> relays the character resulting from a keypress, and is only called if there is one.</p> <p>In other words, if you press <kbd>A</kbd> on your keyboard, you'll get this sequence of events:</p> <ol> <li>KeyDown: KeyCode=Keys.A, KeyData=Keys.A, Modifiers=Keys.None</li> <li>KeyPress: KeyChar='a'</li> <li>KeyUp: KeyCode=Keys.A</li> </ol> <p>But if you press <kbd>Shift</kbd>+<kbd>A</kbd>, you'll get:</p> <ol> <li>KeyDown: KeyCode=Keys.ShiftKey, KeyData=Keys.ShiftKey, Shift, Modifiers=Keys.Shift</li> <li>KeyDown: KeyCode=Keys.A, KeyData=Keys.A | Keys.Shift, Modifiers=Keys.Shift</li> <li>KeyPress: KeyChar='A'</li> <li>KeyUp: KeyCode=Keys.A</li> <li>KeyUp: KeyCode=Keys.ShiftKey</li> </ol> <p>If you hold down the keys for a while, you'll get something like:</p> <ol> <li>KeyDown: KeyCode=Keys.ShiftKey, KeyData=Keys.ShiftKey, Shift, Modifiers=Keys.Shift</li> <li>KeyDown: KeyCode=Keys.ShiftKey, KeyData=Keys.ShiftKey, Shift, Modifiers=Keys.Shift</li> <li>KeyDown: KeyCode=Keys.ShiftKey, KeyData=Keys.ShiftKey, Shift, Modifiers=Keys.Shift</li> <li>KeyDown: KeyCode=Keys.ShiftKey, KeyData=Keys.ShiftKey, Shift, Modifiers=Keys.Shift</li> <li>KeyDown: KeyCode=Keys.ShiftKey, KeyData=Keys.ShiftKey, Shift, Modifiers=Keys.Shift</li> <li>KeyDown: KeyCode=Keys.A, KeyData=Keys.A | Keys.Shift, Modifiers=Keys.Shift</li> <li>KeyPress: KeyChar='A'</li> <li>KeyDown: KeyCode=Keys.A, KeyData=Keys.A | Keys.Shift, Modifiers=Keys.Shift</li> <li>KeyPress: KeyChar='A'</li> <li>KeyDown: KeyCode=Keys.A, KeyData=Keys.A | Keys.Shift, Modifiers=Keys.Shift</li> <li>KeyPress: KeyChar='A'</li> <li>KeyDown: KeyCode=Keys.A, KeyData=Keys.A | Keys.Shift, Modifiers=Keys.Shift</li> <li>KeyPress: KeyChar='A'</li> <li>KeyDown: KeyCode=Keys.A, KeyData=Keys.A | Keys.Shift, Modifiers=Keys.Shift</li> <li>KeyPress: KeyChar='A'</li> <li>KeyUp: KeyCode=Keys.A</li> <li>KeyUp: KeyCode=Keys.ShiftKey</li> </ol> <p>Notice that <code>KeyPress</code> occurs <em>in between</em> <code>KeyDown</code> and <code>KeyUp</code>, <strong>not</strong> after <code>KeyUp</code>, as many of the other answers have stated, that <code>KeyPress</code> is not called when a character isn't generated, and that <code>KeyDown</code> is repeated while the key is held down, also contrary to many of the other answers.</p> <p>Examples of keys that do <strong>not</strong> directly result in calls to <code>KeyPress</code>:</p> <ul> <li><kbd>Shift</kbd>, <kbd>Ctrl</kbd>, <kbd>Alt</kbd></li> <li><kbd>F1</kbd> through <kbd>F12</kbd></li> <li>Arrow keys</li> </ul> <p>Examples of keys that <strong>do</strong> result in calls to <code>KeyPress</code>:</p> <ul> <li><kbd>A</kbd> through <kbd>Z</kbd>, <kbd>0</kbd> through <kbd>9</kbd>, etc.</li> <li><kbd>Spacebar</kbd></li> <li><kbd>Tab</kbd> (KeyChar='\t', ASCII 9)</li> <li><kbd>Enter</kbd> (KeyChar='\r', ASCII 13)</li> <li><kbd>Esc</kbd> (KeyChar='\x1b', ASCII 27)</li> <li><kbd>Backspace</kbd> (KeyChar='\b', ASCII 8)</li> </ul> <p>For the curious, <code>KeyDown</code> roughly correlates to <code>WM_KEYDOWN</code>, <code>KeyPress</code> to <code>WM_CHAR</code>, and <code>KeyUp</code> to <code>WM_KEYUP</code>. <code>WM_KEYDOWN</code> <em>can</em> be called fewer than the the number of key repeats, but it sends a repeat count, which, IIRC, WinForms uses to generate exactly one KeyDown per repeat.</p> http://stackoverflow.com/questions/1363055/correct-comment-code-for-apostrophe-s-situation/1363932#1363932 1 Answer by P Daddy for correct comment code for apostrophe s situation P Daddy 2009-09-01T18:31:20Z 2009-09-01T18:31:20Z <p>Not the question you're asking, but it looks like your code violates <a href="http://www.uhv.edu/ac/grammar/pdf/apostrophes.pdf" rel="nofollow">grammar rules</a>.</p> <p>A name should not be treated like a plural noun just because it ends in 's'. For instance, if James has a dog, it's James's dog, not James' dog. However, if two life partners named Mike have a dog, it's both Mikes' dog.</p> <p>Exception: if a multisyllabic name ends in as "ess" or "ezz" sound, than it can be treated like a plural ending in 's'. If Linus has a dog, it can be Linus' dog, although I believe Linus's is also acceptable.</p> http://stackoverflow.com/questions/1363626/reload-environment-variables-in-c-after-launch/1363701#1363701 0 Answer by P Daddy for Reload Environment Variables in C# after launch P Daddy 2009-09-01T17:39:54Z 2009-09-01T17:39:54Z <p>It's not a matter of <em>refreshing</em> the environment variables. Each process has its own environment, which, on process creation, is a copy of its parent's environment.</p> <p>The only way to change a running process's environment is for the process itself to change it. Any information that must be communicated between two running processes must be done through some form of <a href="http://en.wikipedia.org/wiki/Inter-process%5Fcommunication" rel="nofollow">IPC</a>.</p> <p>For instance, it may be better to read the relevant variables from a file or a database instead of from the environment. A database is certainly easier, as it makes transactioning and synchronization easier.</p> http://stackoverflow.com/questions/1352587/code-golf-morse-code/1354977#1354977 2 Answer by P Daddy for Code Golf: Morse code P Daddy 2009-08-30T21:42:08Z 2009-08-30T22:07:55Z <h2>C (233 characters)</h2> <pre><code>W(n,p){while(n--)putch(".-.-.--.--..--..-.....-----..../"[p++]);}main(){ char*p,c,s[99];gets(s);for(p=s;*p;){c=*p++;c=toupper(c);c=c&gt;90?35:c-32? "È#À#¶µ´³²±°¹¸·#####Ê#@i Že‘J•aEAv„…`q!j“d‰ƒˆ"[c-44]:63;c-35? W(c&gt;&gt;5,c&amp;31):0;putch(0);}} </code></pre> <p>This takes input from stdin. Taking input from the command line adds 2 characters. Instead of:</p> <pre><code>...main(){char*p,c,s[99];gets(s);for(p=s;... </code></pre> <p>you get:</p> <pre><code>...main(int i,char**s){char*p,c;for(p=s[1];... </code></pre> <p>I'm using Windows-1252 code page for characters above 127, and I'm not sure how they'll turn up in other people's browsers. I notice that, in my browser at least (Google Chrome), two of the characters (between "@" and "i") aren't showing up. If you copy out of the browser and paste into a text editor, though, they do show up, albeit as little boxes.</p> <p>It can be converted to ASCII-only, but this adds 24 characters, increasing the character count to 257. To do this, I first offset each character in the string by -64, minimizing the number of characters that are greater than 127. Then I substitute <code>\x</code><em>XX</em> character escapes where necessary. It changes this:</p> <pre><code>...c&gt;90?35:c-32?"È#À#¶µ´³²±°¹¸·#####Ê#@i Že‘J•aEAv„…`q!j“d‰ƒˆ"[c-44]:63; c-35?W(... </code></pre> <p>to this:</p> <pre><code>...c&gt;90?99:c-32?"\x88#\x80#vutsrqpyxw#####\x8A#\0PA)\xE0N%Q\nU!O\5\1\66DE 1 \xE1*S$ICH"[c-44]+64:63;c-99?W(... </code></pre> <p>Here's a more nicely formatted and commented version of the code:</p> <pre><code>/* writes `n` characters from internal string to stdout, starting with * index `p` */ W(n,p){ while(n--) /* warning for using putch without declaring it */ putch(".-.-.--.--..--..-.....-----..../"[p++]); /* dmckee noticed (http://tinyurl.com/n4eart) the overlap of the * various morse codes and created a 37-character-length string that * contained the morse code for every required character (except for * space). You just have to know the start index and length of each * one. With the same idea, I came up with this 32-character-length * string. This not only saves 5 characters here, but means that I * can encode the start indexes with only 5 bits below. * * The start and length of each character are as follows: * * A: 0,2 K: 1,3 U: 10,3 4: 18,5 * B: 16,4 L: 15,4 V: 19,4 5: 17,5 * C: 1,4 M: 5,2 W: 4,3 6: 16,5 * D: 9,3 N: 1,2 X: 9,4 7: 25,5 * E: 0,1 O: 22,3 Y: 3,4 8: 24,5 * F: 14,4 P: 4,4 Z: 8,4 9: 23,5 * G: 5,3 Q: 5,4 0: 22,5 .: 0,6 * H: 17,4 R: 0,3 1: 21,5 ,: 8,6 * I: 20,2 S: 17,3 2: 20,5 ?: 10,6 * J: 21,4 T: 1,1 3: 19,5 */ } main(){ /* yuck, but it compiles and runs */ char *p, c, s[99]; /* p is a pointer within the input string */ /* c saves from having to do `*p` all the time */ /* s is the buffer for the input string */ gets(s); /* warning for use without declaring */ for(p=s; *p;){ /* begin with start of input, go till null character */ c = *p++; /* grab *p into c, increment p. * incrementing p here instead of in the for loop saves * one character */ c=toupper(c); /* warning for use without declaring */ c = c &gt; 90 ? 35 : c - 32 ? "È#À#¶µ´³²±°¹¸·#####Ê#@i Že‘J•aEAv„…`q!j“d‰ƒˆ"[c - 44] : 63; /**** OR, for the ASCII version ****/ c = c &gt; 90 ? 99 : c - 32 ? "\x88#\x80#vutsrqpyxw#####\x8A#\0PA)\xE0N%Q\nU!O\5\1\66DE 1\xE1" "*S$ICH"[c - 44] + 64 : 63; /* Here's where it gets hairy. * * What I've done is encode the (start,length) values listed in the * comment in the W function into one byte per character. The start * index is encoded in the low 5 bits, and the length is encoded in * the high 3 bits, so encoded_char = (char)(length &lt;&lt; 5 | position). * For the longer, ASCII-only version, 64 is subtracted from the * encoded byte to reduce the necessity of costly \xXX representations. * * The character array includes encoded bytes covering the entire range * of characters covered by the challenge, except for the space * character, which is checked for separately. The covered range * starts with comma, and ends with capital Z (the call to `toupper` * above handles lowercase letters). Any characters not supported are * represented by the "#" character, which is otherwise unused and is * explicitly checked for later. Additionally, an explicit check is * done here for any character above 'Z', which is changed to the * equivalent of a "#" character. * * The encoded byte is retrieved from this array using the value of * the current character minus 44 (since the first supported character * is ASCII 44 and index 0 in the array). Finally, for the ASCII-only * version, the offset of 64 is added back in. */ c - 35 ? W(c &gt;&gt; 5, c &amp; 31) : 0; /**** OR, for the ASCII version ****/ c - 99 ? W(c &gt;&gt; 5, c &amp; 31) : 0; /* Here's that explicit check for the "#" character, which, as * mentioned above, is for characters which will be ignored, because * they aren't supported. If c is 35 (or 99 for the ASCII version), * then the expression before the ? evaluates to 0, or false, so the * expression after the : is evaluated. Otherwise, the expression * before the ? is non-zero, thus true, so the expression before * the : is evaluated. * * This is equivalent to: * * if(c != 35) // or 99, for the ASCII version * W(c &gt;&gt; 5, c &amp; 31); * * but is shorter by 2 characters. */ putch(0); /* This will output to the screen a blank space. Technically, it's not * the same as a space character, but it looks like one, so I think I * can get away with it. If a real space character is desired, this * must be changed to `putch(32);`, which adds one character to the * overall length. } /* end for loop, continue with the rest of the input string */ } /* end main */ </code></pre> <p>This beats everything here except for a couple of the Python implementations. I keep thinking that it can't get any shorter, but then I find some way to shave off a few more characters. If anybody can find any more room for improvement, let me know.</p> <p><strong>EDIT:</strong></p> <p>I noticed that, although this routine rejects any invalid characters above ASCII 44 (outputting just a blank space for each one), it doesn't check for invalid characters below this value. To check for these adds 5 characters to the overall length, changing this:</p> <pre><code>...c&gt;90?35:c-32?"... </code></pre> <p>to this:</p> <pre><code>...c-32?c&gt;90|c&lt;44?35:"... </code></pre> http://stackoverflow.com/questions/1352046/tricking-programs-in-c/1352076#1352076 2 Answer by P Daddy for Tricking programs in C P Daddy 2009-08-29T18:35:47Z 2009-08-29T18:35:47Z <p>If it uses the <code>%windir%</code> or <code>%systemroot%</code> environment variables to determine the Windows directory, it would certainly be easy to change these. But if it uses an API call, you'll have to hook that call, as <a href="http://stackoverflow.com/questions/1352046/tricking-programs-in-c/1352059#1352059">ChrisW suggests</a>. You might take a look at <a href="http://research.microsoft.com/en-us/projects/detours/" rel="nofollow">Detours</a>.</p> http://stackoverflow.com/questions/1346568/override-method-to-call-overriden-implementation-super-or-not-to-call/1346768#1346768 3 Answer by P Daddy for Override method - to call overriden implementation (super) or not to call? P Daddy 2009-08-28T12:39:28Z 2009-08-28T12:39:28Z <p>There are two main reasons to call your base class's implementation in an override of one of its methods:</p> <h3>You want to extend the behavior of the base class.</h3> <p>In this case, it's often easier to rely on the base class to perform the brunt of the work, and to just add the additional work on top. This decision is usually pretty easy to make.</p> <h3>The base implementation has some side effect that is either desired or required.</h3> <p>This is sometimes a little harder to determine. External side effects will hopefully be documented, and you should be able to determine whether or not they should occur.</p> <p>What's sometimes difficult to determine, which you allude to, is if a function has internal side effects. That is, if it modifies some private state. A simple example:</p> <pre><code>class Car{ bool engineRunning; public virtual void StartEngine(){ TurnIgnitionKey(); engineRunning = true; // this is the internal side effect } public void DriveAround(){ if(!engineRunning) throw new InvalidOperationException("You have to start the engine first."); // implement driving around } } class S2000 : Car{ public override void StartEngine(){ PushStartButton(); } } </code></pre> <p>In this example, because <code>S2000</code>'s implementation of <code>StartEngine()</code> doesn't call <code>Car</code>'s implementation, then <code>DriveAround()</code> will fail. Without having the source code to <code>Car</code>, or very good documentation, the author of <code>S2000</code> would likely not know that the base's <code>StartEngine</code> routine should be called.</p> <p>For this reason, <code>Car</code> is not an ideal implementation. Better would be something like:</p> <pre><code>class Car{ bool engineRunning; public void StartEngine(){ // not virtual StartEngineInternal(); engineRunning = true; } protected virtual void StartEngineInternal(){ TurnIgnitionKey(); } } </code></pre> <p>In this example, the internal side effect is protected by being contained within a non-overridable wrapper function that calls the protected virtual core implementation. This way, the state of the object is not dependent on inheritors calling the base method, leaving the decision on whether or not to do so in the hands of the inheritor, where it belongs.</p> http://stackoverflow.com/questions/1338421/class-vs-interface/1338462#1338462 3 Answer by P Daddy for Class vs Interface P Daddy 2009-08-27T01:48:43Z 2009-08-27T01:48:43Z <p>From a logical perspective, they are very similar. As noted by others, an ABC<sup>1</sup> with only public abstract members would serve almost the same purpose as an interface.</p> <p>When you get down to the nuts and bolts of it, the two have a number of important differences.</p> <ul> <li>A class can only <em>inherit</em> from one base classes, but can <em>implement</em> many interfaces.</li> <li>A value type, already deriving from ValueType, cannot inherit from an ABC, but can implement an interface.</li> <li>A class can contain fields and static members. An interface cannot.</li> <li>A class can contain implementation, an interface cannot.</li> <li>A class can have private and protected members, an interface cannot.</li> <li>Abstract members of an ABC are always virtual. A class can implement an interface with non-virtual members.</li> </ul> <p><sup><sub>1: Abstract Base Class</sub></sup></p> http://stackoverflow.com/questions/1337470/type-limitation-in-loop-variables-in-java-c-and-c/1338416#1338416 1 Answer by P Daddy for Type limitation in loop variables in Java, C and C++ P Daddy 2009-08-27T01:30:16Z 2009-08-27T01:30:16Z <p>Your example:</p> <pre><code>for (int i = 0, long variable = obj.operation(); i &lt; 15; i++) { ... } </code></pre> <p>is illegal for the same reason that:</p> <pre><code>int i = 0, long variable = obj.operation(); </code></pre> <p>would be illegal by itself. The comma doesn't start a new statement. Both parts, before and after the comma, are part of one statement. This statement is declaring and initializing a list of <code>int</code> variables. Well, that's what the <code>int</code> identifier at the start of the line tells the compiler, anyway. The <code>long</code> identifier after the comma is an error, as to declare variable(s) of a different type, you must start a new statement.</p> <p>Since you cannot declare variables of two different types in one statement, you must declare one of them outside of the <code>for</code> initializer.</p> http://stackoverflow.com/questions/1338210/new-word-in-interfaces-in-c/1338306#1338306 0 Answer by P Daddy for new word in interfaces in c# P Daddy 2009-08-27T00:33:52Z 2009-08-27T00:33:52Z <p>It's not really overriding it, it's <strong>shadowing</strong> it. Given a reference to a <code>Derived</code> object, <code>Base</code>'s <code>HelpMeNow</code> function will not be accessible<sup>1</sup>, and <code>derivedObject.HelpMeNow()</code> will call <code>Derived</code>'s implementation.</p> <p>This is not the same as overriding a virtual function, which <code>HelpMeNow</code> is not. If a <code>Derived</code> object is stored in a reference to a <code>Base</code>, or to an <code>IHelper</code>, then <code>Base</code>'s <code>HelpMeNow()</code> will be called, and <code>Derived</code>'s implementation will be inaccessible.</p> <pre><code>Derived derivedReference = new Derived(); Base baseReference = derivedReference; IHelper helperReference = derivedReference; derivedReference.HelpMeNow(); // outputs "Derived.HelpMeNow()" baseReference.HelpMeNow(); // outputs "Base.HelpMeNow()" helperReference.HelpMeNow(); // outputs "Base.HelpMeNow()" </code></pre> <p>Of course, if the above is not the desired behavior, and it's usually not, there are two possibilities. If you control <code>Base</code>, simply change <code>HelpMeNow()</code> to virtual, and override it in <code>Derived</code> instead of shadowing it. If you don't control <code>Base</code>, then you can at least fix it halfway, by reimplementing <code>IHelper</code>, like so:</p> <pre><code>class Derived : Base, IHelper{ public new void HelpMeNow(){Console.WriteLine("Derived.HelpMeNow()");} void IHelper.HelpMeNow(){HelpMeNow();} } </code></pre> <p>This version of <code>Derived</code> uses what's called <strong>explicit interface implementation</strong>, which allows you to satisfy the contract of implementing an interface without adding the implementation to your class's public interface. In this example, we already have an implementation in <code>Derived</code>'s public interface that's inherited from <code>Base</code>, so we have to explicitly implement <code>IHelper</code> to change it<sup>2</sup>. In this example, we just forward the implementation of <code>IHelper.HelpMeNow</code> to our public interface, which is the shadow of <code>Base</code>'s.</p> <p>So with this change, a call to <code>baseReference.HelpMeNow()</code> still outputs "Base.HelpMeNow()", but a call to <code>helperReference.HelpMeNow()</code> will now output "Derived.HelpMeNow()". Not as good as changing <code>Base</code>'s implementation to virtual, but as good as we're gonna get if we don't control <code>Base</code>.</p> <p><sup>1</sup><sup><sub>Exception: it <em>is</em> accessible from within methods of <code>Derived</code>, but only when qualified with <code>base.</code>, as in <code>base.HelpMeNow()</code>.</sub></sup><br /> <sup>2</sup><sup><sub>Notice that we also have to declare <code>IHelper</code> as an interface the class implements, even though we inherit this declaration from <code>Base</code>.</sub></sup></p> http://stackoverflow.com/questions/646086/implementation-for-product-keys/646536#646536 Comment by P Daddy on implementation for product keys P Daddy 2009-12-20T15:09:06Z 2009-12-20T15:09:06Z @erickson: I agree that a determined cracker will create a patch if they can't create a keygen, and that no copy protection is secure. However, there are varying degrees of risk. Cracks come in three basic flavors: serials, keygens, and patches/patched binaries. Users far prefer the first, because they don't have to download code. Keygens are fairly easy to virus scan, and patches are the scariest. Patches are also least likely to work after a minor update to the software. If your app requires a patch, that's the best technical security you're going to get. http://stackoverflow.com/questions/1931359/how-to-reduce-calculation-of-average-to-sub-sets-in-a-general-way/1931391#1931391 Comment by P Daddy on How to reduce calculation of average to sub-sets in a general way? P Daddy 2009-12-19T02:44:55Z 2009-12-19T02:44:55Z @Lasse: In what time zone is it Sunday morning when it's Saturday morning UTC? http://stackoverflow.com/questions/1903702/associate-file-type-and-icon/1910717#1910717 Comment by P Daddy on Associate File Type and Icon P Daddy 2009-12-17T04:42:01Z 2009-12-17T04:42:01Z No, that adds CLI resources (.NET) not PE resources (native). See my updated answer for in-depth details. http://stackoverflow.com/questions/1910912/net-interop-intptr-vs-ref/1911035#1911035 Comment by P Daddy on .NET Interop IntPtr vs. ref P Daddy 2009-12-16T21:06:16Z 2009-12-16T21:06:16Z I made a mistake. I was tired and trying to do too many things last night. See edited post. http://stackoverflow.com/questions/1903702/associate-file-type-and-icon/1910717#1910717 Comment by P Daddy on Associate File Type and Icon P Daddy 2009-12-16T20:26:45Z 2009-12-16T20:26:45Z You &quot;have it in included in the resource in the project&quot; ... in the way I described, or in the normal .NET way? http://stackoverflow.com/questions/1903702/associate-file-type-and-icon/1910717#1910717 Comment by P Daddy on Associate File Type and Icon P Daddy 2009-12-16T19:29:28Z 2009-12-16T19:29:28Z What problems are you having with the icon? How are you supplying the icon? Do you have it in a separate file (.ico), or are you trying to compile it in to your .exe or .dll? See my note in this answer about including native resources in a C# assembly. You have to create a resource script (.rc) and compile it with the resource compiler (start VS cmd prompt, and use rc.exe), then set the resultant .res file as your application's resource file in the Application tab of the project properties. I'll try to update my answer in a little bit with better details. http://stackoverflow.com/questions/1910912/net-interop-intptr-vs-ref Comment by P Daddy on .NET Interop IntPtr vs. ref P Daddy 2009-12-16T04:54:23Z 2009-12-16T04:54:23Z The NativeStruct class needs the <code>StructLayout</code> attribute, too. I'll post my working sample code. http://stackoverflow.com/questions/1910912/net-interop-intptr-vs-ref/1911035#1911035 Comment by P Daddy on .NET Interop IntPtr vs. ref P Daddy 2009-12-15T23:27:43Z 2009-12-15T23:27:43Z It can also save you from having many overloads to <code>SendMessage</code>. You can derive all your native type definitions from a single abstract class and declare <code>SendMessage</code> to take that class. http://stackoverflow.com/questions/1910756/cr-character-in-gets-function/1910773#1910773 Comment by P Daddy on CR character in gets() function P Daddy 2009-12-15T22:16:44Z 2009-12-15T22:16:44Z Calling things evil is unhelpful. DONT EVER DO IT. It would be more helpful if you explained the shortcomings of <code>gets()</code> (buffer overflows, stripping of newlines) so that the OP could take knowledge to her superiors to push for an alternative. http://stackoverflow.com/questions/51150/why-does-clicking-a-child-window-not-always-bring-the-application-to-the-foregrou/1777881#1777881 Comment by P Daddy on Why does clicking a child window not always bring the application to the foreground? P Daddy 2009-12-09T17:31:58Z 2009-12-09T17:31:58Z Do you have a reproducible sample, by chance? http://stackoverflow.com/questions/374316/round-a-double-to-x-significant-figures-after-decimal-point/374470#374470 Comment by P Daddy on Round a double to x significant figures after decimal point P Daddy 2009-12-01T18:03:07Z 2009-12-01T18:03:07Z @leftbrainlogic: Yes, it really does: <a href="http://msdn.microsoft.com/en-us/library/75ks3aby.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/1767920#1767920 Comment by P Daddy on What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow) P Daddy 2009-11-24T01:00:40Z 2009-11-24T01:00:40Z Accepting <code>IComparer&lt;T&gt;</code> also allows your users (or you) to use <code>Comparer&lt;T&gt;.Default</code> instead of implementing the comparison by hand. The best interface when a comparison is involved usually has three overloads, one taking <code>IComparer&lt;T&gt;</code>, one taking <code>Comparison&lt;T&gt;</code>, and one taking no comparer and assuming <code>Comparer&lt;T&gt;.Default</code>. http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/1767920#1767920 Comment by P Daddy on What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow) P Daddy 2009-11-24T00:56:56Z 2009-11-24T00:56:56Z Yes, <code>Comparison&lt;T&gt;</code> is equivalent to <code>Func&lt;T, T, int&gt;</code>, which is the same interface as <code>IComparer&lt;T&gt;.Compare</code>. This is the standard comparer interface that .NET developers are used to. Most sorting functions only need to compare less than or greater than. You've chosen less than. If you look in Reflector at <code>Array.SorterGenericArray.QuickSort()</code> (or <code>Array.SorterObjectArray.QuickSort()</code>), you'll see that <code>Array.Sort</code> also only uses less than, but it does it with <code>comparer.Compare(a, b) &lt; 0</code>, keeping with the established interface for the platform. http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/1766663#1766663 Comment by P Daddy on What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow) P Daddy 2009-11-23T20:12:51Z 2009-11-23T20:12:51Z +1 because no one else seems to get it http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/1767920#1767920 Comment by P Daddy on What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow) P Daddy 2009-11-23T20:09:44Z 2009-11-23T20:09:44Z It would be more .NETy if you used <code>IComparer&lt;T&gt;</code> or <code>Comparison&lt;T&gt;</code> (or an overload for each), instead of a &quot;less&quot; function, which smacks of STL.