User plinth - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T19:03:57Z http://stackoverflow.com/feeds/user/20481 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1840968/storing-two-shorts-in-one-short/1840983#1840983 11 Answer by plinth for storing two shorts in one short plinth 2009-12-03T16:13:56Z 2009-12-03T16:19:37Z <p><a href="http://en.wikipedia.org/wiki/Bit%5Ffield" rel="nofollow">Bitfields</a> (but only if you really need to be tight on space - ie embedded systems)?</p> <pre><code>typedef struct id_result { unsigned int id : 15; unsigned int result : 1; } id_result; </code></pre> <p>otherwise, yes, use a struct with more complete and meaningful definitions:</p> <pre><code>typedef uint16 IDTYPE; /* assuming uint16 exists elsewhere */ typedef struct id_result { IDTYPE id; bool result; } id_result; </code></pre> http://stackoverflow.com/questions/1840192/p-invoke-problem-marshalling-parameter/1840916#1840916 1 Answer by plinth for P/Invoke problem marshalling parameter plinth 2009-12-03T16:04:42Z 2009-12-03T16:04:42Z <p>What you really want is a way to debug this. The easiest way is to write your own dll that consumes this data type and see what happens to the struct on the other side.</p> <p>I suspect that your real problem is structure alignment and how that's working out. What I see in your code is a bunch of elements with odd sizes (15, 28, 10). Chances are the target system has gone and aligned the structure elements on at least 2 byte, if not 4 byte boundaries. Nonethless you should check.</p> <p>You can also save yourself some time by writing the C that consumes the actual struct and outputs the results of a bunch of <a href="http://en.wikipedia.org/wiki/Offsetof" rel="nofollow">offsetof()</a> invocations on the struct elements.</p> <p>You should be methodical in your approach instead of shotgun, and part of the methodology is to have measurements and feedback. This will give you both.</p> http://stackoverflow.com/questions/1839965/dynamically-creating-functions-in-c/1840006#1840006 2 Answer by plinth for Dynamically creating functions in c plinth 2009-12-03T13:57:47Z 2009-12-03T13:57:47Z <p>If you want to write code on the fly for execution, <a href="https://developer.mozilla.org/En/Nanojit" rel="nofollow">nanojit</a> might be a good way to go.</p> <p>In your code above, you're trying to create a closure. C doesn't support that. There are some heinous ways to fake it, but out of the box you're not going to be able to runtime bind a variable into your function.</p> http://stackoverflow.com/questions/1816534/random-playlist-algorithm/1835911#1835911 1 Answer by plinth for Random playlist algorithm plinth 2009-12-02T21:22:11Z 2009-12-03T13:13:47Z <p>If you use a maximal linear feedback shift register, you will use O(1) of memory and roughly O(1) time. <a href="http://www.ece.cmu.edu/~koopman/lfsr/index.html" rel="nofollow">See here</a> for a handy C implementation (two lines! woo-hoo!) and tables of feedback terms to use.</p> <p>And here is a solution:</p> <pre><code>public class MaximalLFSR { private int GetFeedbackSize(uint v) { uint r = 0; while ((v &gt;&gt;= 1) != 0) { r++; } if (r &lt; 4) r = 4; return (int)r; } static uint[] _feedback = new uint[] { 0x9, 0x17, 0x30, 0x44, 0x8e, 0x108, 0x20d, 0x402, 0x829, 0x1013, 0x203d, 0x4001, 0x801f, 0x1002a, 0x2018b, 0x400e3, 0x801e1, 0x10011e, 0x2002cc, 0x400079, 0x80035e, 0x1000160, 0x20001e4, 0x4000203, 0x8000100, 0x10000235, 0x2000027d, 0x4000016f, 0x80000478 }; private uint GetFeedbackTerm(int bits) { if (bits &lt; 4 || bits &gt;= 28) throw new ArgumentOutOfRangeException("bits"); return _feedback[bits]; } public IEnumerable&lt;int&gt; RandomIndexes(int count) { if (count &lt; 0) throw new ArgumentOutOfRangeException("count"); int bitsForFeedback = GetFeedbackSize((uint)count); Random r = new Random(); uint i = (uint)(r.Next(1, count - 1)); uint feedback = GetFeedbackTerm(bitsForFeedback); int valuesReturned = 0; while (valuesReturned &lt; count) { if ((i &amp; 1) != 0) { i = (i &gt;&gt; 1) ^ feedback; } else { i = (i &gt;&gt; 1); } if (i &lt;= count) { valuesReturned++; yield return (int)(i-1); } } } } </code></pre> <p>Now, I selected the feedback terms (badly) at random from the link above. You could also implement a version that had multiple maximal terms and you select one of those at random, but you know what? This is pretty dang good for what you want.</p> <p>Here is test code:</p> <pre><code> static void Main(string[] args) { while (true) { Console.Write("Enter a count: "); string s = Console.ReadLine(); int count; if (Int32.TryParse(s, out count)) { MaximalLFSR lfsr = new MaximalLFSR(); foreach (int i in lfsr.RandomIndexes(count)) { Console.Write(i + ", "); } } Console.WriteLine("Done."); } } </code></pre> <p>Be aware that maximal LFSR's never generate 0. I've hacked around this by returning the i term - 1. This works well enough. Also, since you want to guarantee uniqueness, I ignore anything out of range - the LFSR only generates sequences up to powers of two, so in high ranges, it will generate wost case 2x-1 too many values. These will get skipped - that will still be faster than FYK.</p> http://stackoverflow.com/questions/116195/before-xml-became-a-standard-and-given-all-its-shortcomings-what-made-xml-so-pop/116450#116450 2 Answer by plinth for Before XML became a standard and given all its shortcomings, what made XML so popular? plinth 2008-09-22T18:04:16Z 2009-12-02T17:20:41Z <p>XML provides a very straightforward way to represent data. Parsing is fairly easy - it's a very regular grammar and lends itself to straight forward recursive descent parsing. This makes it easy for data consumers and producers to exchange information without really having to know too much about their respective applications and internals.</p> <p>It is, however, an extremely inefficient way to represent data and lends itself to being abused horribly. An example of this is an object interface I worked with that, instead of exporting constructors and properties for particular objects, required me to author XML programmatically and pass in the resulting XML to the single constructor. Similarly, XML does not lend itself well to large data sets that may require random access without creating an added cataloging system (ie, if I have a thousand page document in XML, I will need to parse nearly the entire file to get to page 999, assuming the page data is ordered), whereas I'd be better off putting the actual page data in a separate file or files and use the XML to point to the correct file or position within a file.</p> http://stackoverflow.com/questions/1834263/how-should-i-inherit-idisposable/1834316#1834316 2 Answer by plinth for How should I inherit IDisposable? plinth 2009-12-02T17:00:29Z 2009-12-02T17:00:29Z <p>If you want all your code to deal with ISomeInterfaces generically, then yes they should all be disposable.</p> <p>If not, then the code that creates FirstClass should dispose it:</p> <pre><code>using (FirstClass foo = new FirstClass()) { someObjectThatWantsISomeInterface.Act(foo); } </code></pre> <p>otherwise, you could always use something like this extension method:</p> <pre><code>public static void DisposeIfPossible(this object o) { IDisposable disp = o as IDisposable; if (disp != null) disp.Dispose(); } // ... someObject.DisposeIfPossible(); // extension method on object </code></pre> <p>I should also mention that I would prefer a template base class approach to this. I stubbed this out in <a href="http://www.atalasoft.com/cs/blogs/stevehawley/archive/2006/09/21/10887.aspx" rel="nofollow">this blog</a> on building disposable things properly.</p> http://stackoverflow.com/questions/1833484/c-frontend-only-compiler-convert-c-to-c/1833545#1833545 1 Answer by plinth for C++ frontend only compiler (convert C++ to C). plinth 2009-12-02T15:16:27Z 2009-12-02T15:16:27Z <p>Out of date, but maybe you want to try <a href="http://www.softwarepreservation.org/projects/c%5Fplus%5Fplus/cfront" rel="nofollow">cfront</a>?</p> <p>I'll leave this for information - cfront doesn't have exception support.</p> http://stackoverflow.com/questions/1828575/why-writing-cls-compliance-code/1828606#1828606 0 Answer by plinth for Why writing CLS compliance code? plinth 2009-12-01T20:16:28Z 2009-12-01T20:16:28Z <p>The answer is to allow maximum compatibility across .NET languages. CLS is the <em>lingua franca</em> that allows C# assemblies to work with F#, Iron Python, C++/CLI, VB.NET, Boo and all the other .NET languages. Step outside that boundary and your assembly may work correctly, but not necessarily.</p> http://stackoverflow.com/questions/1826426/unicode-string-literals-in-c-vs-c-cli/1826785#1826785 3 Answer by plinth for Unicode string literals in C# vs C++/CLI plinth 2009-12-01T15:05:32Z 2009-12-01T15:05:32Z <p>You want:</p> <pre><code>wchar_t z = L'\x201D'; </code></pre> <p>from <a href="http://msdn.microsoft.com/en-us/library/6aw8xdf2.aspx" rel="nofollow">here</a>. \u is undefined.</p> http://stackoverflow.com/questions/1820452/how-can-i-generate-this-pattern-of-numbers/1820821#1820821 0 Answer by plinth for How can I generate this pattern of numbers? plinth 2009-11-30T16:24:16Z 2009-11-30T16:24:16Z <pre><code>char codify(char input) { return (((input-1) &amp; 0x04)&gt;&gt;2) + 1; } </code></pre> http://stackoverflow.com/questions/1820607/how-to-spot-empty-parking-spaces/1820798#1820798 4 Answer by plinth for How to spot empty parking spaces? plinth 2009-11-30T16:19:44Z 2009-11-30T16:19:44Z <p>Oddly enough, my first work mentor was given a very similar problem when he started out. He was asked to do a cost/benefit analysis of a system to scan the parking lot for cars with their lights on, read the license plate and send email to the owner to let them know they need to turn the lights off.</p> <p>The result of his analysis (at the time) was that it would be cheaper to hire someone to walk the parking lot with a hammer and break all the headlights that were on and then buy replacements for the employees.</p> <p>You could use a similar system.</p> http://stackoverflow.com/questions/1797914/creating-a-form-in-c/1799860#1799860 1 Answer by plinth for Creating a Form In C++ plinth 2009-11-25T20:50:38Z 2009-11-25T20:50:38Z <p>There are a couple ways to do it. If your version of CodeWarrior has it, you would be best off using the PowerPlant framework. This is an application framework that makes it relatively easy to build applications that follow the Mac UI standards. It's been more than 10 years, so I have fully purged the PowerPlant class hierarchy from my memory. Sorry.</p> <p>Another way to do this is to create a DLOG resource in ResEdit which includes a TextEdit field that more or less fits the window. Then you write your main app, which is going to include the typical toolbox initializations (I'm doing this TOTALLY from memory):</p> <pre><code>DialogPtr myDlog; short itemHit; InitGraf( &amp;qd.thePort ); InitFonts(); InitWindows(); InitMenus(); TEInit(); InitDialogs( 0L ); InitCursor(); myDlog = GetNewDialog(myDlogResID, 0L, -1L); ShowWindow(myDlog); while (true) { ModalDialog(myDlog, &amp;itemHit); } </code></pre> <p>Which will probably work and is the most wrong way to do UI on the Mac, but if all you want is a box with a simple, simple UI, you'll be OK.</p> <p>The problem with this code is that it doesn't handle the events well, the loop is infinite, there is no handling of cut/copy/paste, there is no honoring of menu events, and so on.</p> <p>The Mac toolbox of that era requires you to do a hell of a lot more work than you might think. This is why there were libraries like MacApp, Think Class Library and PowerPlant - they provided OOP methods to handle a lot of the housekeeping crap for you. At the time that I did most of my Mac programming, I build a non-class library that was raw C code that made it easier to write layered windows (with floating palettes) and fluid UI without the overhead of OOP. Basically, I had to write a window manager, a menu manager, a dialog manager, an event manager, a command dispatcher and so on. When all was said and done, there was something like 18K of overhead to build a typical application. FYI, Acrobat Search on the Macintosh up until version 4 was built on this, as was Acrobat Catalog.</p> <p>You can find canonical examples in MacTech, <a href="http://www.mactech.com/articles/mactech/Vol.08/08.03/TextBoxer/index.html" rel="nofollow">like this</a> which is similar code to the above.</p> <p>Before you start building your entire UI out of Dialog Boxes, all the old Macintosh tech notes said DON'T DO THIS. The DialogManager is one of the most abused chunks of Macintosh code there ever was. It was built for the purpose of making it easy to put of a box that says, "Are you sure you want to close 'Untitled'?" with an OK button and a cancel button. It's surprising how much it can be abused.</p> <p>The real way to do things is to write a main that initializes the toolbox items, builds a basic menu bar then allocates an object that you design, say NathanWindow. NathanWindow might look like this:</p> <pre><code>class NathanWindow { public: NathanWindow(); virtual ~NathanWindow(); void Initialize(); void Click(short part, EventRecord *evt); void Show(); void Hide(); void Drag(); void Move(); // etc; protected: virtual WindowPtr MakeWindow() = 0; virtual void OnInit() = 0; private: WindowPtr _win; }; </code></pre> <p>then you will subclass this with code to call NewWindow() in the appropriate style.</p> <p>Initialize will look something like this:</p> <pre><code>void NathanWindow::Initialize() { _win = MakeWindow(); _win-&gt;refCon = this; OnInit(); } </code></pre> <p>now, this last little bit is the tricky part - I've put a pointer to the NathanWindow into the Macintosh WindowPtr refCon field. Then you'll build an event loop in your main code that will look like this:</p> <pre><code>void HandleMouseDown(EventRecord *evt) { WindowPtr win; short thePart; thePart = FindWindow( eventPtr-&gt;where, &amp;win ); if (win) { NathanWindow *nw = (NathanWindow *)win-&gt;refCon; nw-&gt;Click(thePart, evt); } } void EventLoop( void ) { EventRecord evt; while ( true ) { if ( WaitNextEvent( everyEvent, &amp;evt, kSleep, nil ) ) { switch (evt.what) { case mouseDown: HandleMouseDown(&amp;evt); break; } } } </code></pre> <p>and then Click will look like this:</p> <pre><code>NathanWindow::Click(short thePart, EventRecord *evt) { switch(thePart) { case inGoAway: Close(); break; case inDrag: Drag(); break; case inGrow: Grow(); break; } } </code></pre> <p>and so on.</p> <p>And even still, this is (potentially) wrong in that you really want to have every NathanWindow to be hooked into an application parent that manages layers and groupings of windows.</p> <p>A NathanWindow should contain a list of NathanControls. A NathanControl is something that can draw, responds to events, and so on.</p> <p>All of this is in case you don't have PowerPlant, which does all of this for you. There was a reason why Apple liked to tout the line "it's hard to be easy", because the API that you had at your fingertips was so damn primitive.</p> http://stackoverflow.com/questions/1441488/efficient-ways-to-determine-tilt-of-an-image/1785409#1785409 0 Answer by plinth for Efficient ways to determine tilt of an image plinth 2009-11-23T19:28:27Z 2009-11-23T19:28:27Z <p>What are your constraints in terms of time?</p> <p>The Hough transform is a very effective mechanism for determining the skew angle of an image. It can be costly in time, but if you're going to use Gaussian blur, you're already burning a pile of CPU time. There are also other ways to accelerate the Hough transform that involve creative image sampling.</p> http://stackoverflow.com/questions/1772380/equivalent-of-the-php-fmod-in-c/1772444#1772444 2 Answer by plinth for Equivalent of the php fmod in C# plinth 2009-11-20T18:37:03Z 2009-11-20T18:37:03Z <p>Use a P/Invoked call into the standard library (from <a href="http://msdn.microsoft.com/en-us/library/20dckbeh%28VS.71%29.aspx" rel="nofollow">here</a>):</p> <pre><code>[DllImport("msvcrt.dll")] static extern double fmod(double x, double y); </code></pre> http://stackoverflow.com/questions/1767991/assembly-code-as-an-argument-to-inline-assembler-in-visual-studio/1771545#1771545 0 Answer by plinth for Assembly code as an argument to inline assembler in Visual Studio plinth 2009-11-20T16:13:23Z 2009-11-20T16:13:23Z <p>Do you really need to use assembler? You might be better off with <a href="https://developer.mozilla.org/En/Nanojit" rel="nofollow">nanojit</a>.</p> <p>Otherwise, you can certainly do this - but it won't be pretty. You can call the VisualStudio assembler, <a href="http://msdn.microsoft.com/en-us/library/s0ksfwcf%28VS.71%29.aspx" rel="nofollow">ml.exe</a>, from your code. You would take the instructions, write them to a file with an appropriate header/trailer defining a unique proc name and assemble them into a dll, then call LoadLibrary() and GetProcAddress() to get the address of the code to call, which you can then call like any other function pointer. If you want to get the byte values of particular instructions, use offsets from your header/trailer to figure that out.</p> <p><a href="http://www.cs.virginia.edu/~evans/cs216/guides/vsasm.html" rel="nofollow">See here</a> for how to configure a project with asm files in it. Everything in it you can do dynamically by calling ml yourself.</p> http://stackoverflow.com/questions/1750901/dynamically-loading-a-dll-in-c/1750938#1750938 1 Answer by plinth for Dynamically loading a dll in C# plinth 2009-11-17T18:45:51Z 2009-11-17T18:59:21Z <p>If you are using raw dll's and not .NET assemblies then here are some handy P/Invokes for you:</p> <pre><code>[DllImport("kernel32.dll", CharSet=CharSet.Auto)] private static extern IntPtr LoadLibrary(string lpFileName); [DllImport("kernel32.dll", CharSet=CharSet.Auto)] private static extern void SetDllDirectory(string lpPathName); [DllImport("kernel32.dll", CharSet=CharSet.Auto)] privatestatic extern int GetModuleFileName(IntPtr module, [Out] StringBuilder fileName, int size); [DllImport("kernel32.dll", CharSet=CharSet.Auto)] private static bool FreeLibrary(IntPtr module); [DllImport("kernel32.dll", CharSet=CharSet.Auto)] private IntPtr GetProcAddress(IntPtr hModule, string lpProcName); </code></pre> <p>Note that SetDllDirectory may need some protection as it is not available on all versions of windows (Windows 2000, in particular doesn't have it).</p> <p>And in use:</p> <pre><code>SetDllDirectory(candidateFolder); IntPtr dllHandle = LoadLibrary(dllName); if (dllHandle != IntPtr.Zero) { _dllHandle = dllHandle; _location = candidateFolder; _fullPath = Path.Combine(candidateFolder, dllName); IntPtr p = GetProcAddress(_dllHandle, procName); if (p == IntPtr.Zero) throw new ArgumentException("procName"); SomeDelegateType d = (SomeDelegateType)Marshal.GetDelegateForFunctionPointer(p, typeof(SomeDelegateType)); d(/* args */); } </code></pre> <p>otherwise, you will be using Assembly methods. Looking at assembly level attributes or object level attributes is a good way to get extra information, although if what you want is a plug-in system, you should <em>use</em> a plug-in system, like the <a href="http://www.codeplex.com/clraddins" rel="nofollow">Managed Add-In Framework</a> at CodePlex. See also <a href="http://stackoverflow.com/questions/515925/system-with-plugins-in-c">this SO question and answer</a>.</p> http://stackoverflow.com/questions/1749217/rapid-switch-to-java-for-an-experienced-c-developer/1749438#1749438 0 Answer by plinth for Rapid switch to Java for an experienced C++ developer plinth 2009-11-17T14:59:09Z 2009-11-17T14:59:09Z <p>I made this transition in 1996 or so when Java was newish. A book will definitely help. I used <a href="http://rads.stackoverflow.com/amzn/click/0672329433" rel="nofollow">Laura Lemay's 21 day book</a>, which is now up to rev 6. It took me 3 days to get through the original book and another week before I felt I was fully conversant.</p> <p>Things to get used to:</p> <ol> <li>The language is not huge, but the support libraries are. There probably is already something that does what you want</li> <li>Garbage collection and sane memory management is awesome. My bug count plummeted in working with Java compared with C++</li> <li>Garbage collection and sane memory management sucks. I was writing performance critical applications and (at the time), I would've killed someone to get something similar to placement new or operator new overload.</li> <li>Garbage collection is not general resource collection (ie, open files etc). You still need to worry about that.</li> <li>I really missed having an integrated macro preprocessor. You can still use one, of course, but then your build has just gotten more complicated.</li> </ol> http://stackoverflow.com/questions/1742183/how-to-name-a-method-that-has-an-out-parameter/1742275#1742275 1 Answer by plinth for How to name a method that has an out parameter? plinth 2009-11-16T13:43:00Z 2009-11-16T13:43:00Z <p>There is no standard in nomenclature. However, if your method is going to be acting on compound types, consider adopting a convention of using Get...And...() to indicate that there are two things going on. For example:</p> <pre><code>int GetPopulationAndMeanAge(out double meanAge) { // ... meanAge = CalculateMeanAge(); return totalPopulation; } </code></pre> <p>I think the better approach is to return a compound type instead. In a garbage collected language, there is really no excuse <strong>NOT</strong> to do this, except in cases where such a method is called, say, millions of times and instrumentation reveals that the GC isn't properly handling the load. In non-GC languages, it presents a minor issue in terms of making sure that it's clear who is responsible for cleaning up the memory when you're done.</p> <p>Refactoring the previous into a compound type (C#):</p> <pre><code>public class PopulationStatistics { int Population { get; set; } double MeanAge { get; set; } } PopulationStatistics GetPopulationStatistics() { // ... return new PopulationStatistics { Population = totalPopulation, MeanAge = CalculateMeanAge }; } </code></pre> http://stackoverflow.com/questions/1741368/a-language-that-doesnt-use-c/1742207#1742207 3 Answer by plinth for A language that doesn't use 'C' ? plinth 2009-11-16T13:31:04Z 2009-11-16T13:31:04Z <p>The process of getting a language up and running is very interesting. FORTH is particularly interesting in that the core of the language can be implemented in a decidedly small amount of space, then everything else can come along for the ride. From my own memory, you can get away with implementing @, !, +, and - in assembly - maybe one or two stack juggling operators and you're done. See <a href="http://stackoverflow.com/questions/407987/what-are-the-primitive-forth-operators/408072#408072">here</a> for more information.</p> <p>What's particularly interesting is when things start to go wrong in the bootstrapping process. Many years ago I read about a Pascal compiler that was created at a university as a research project. It was written in Pascal, using the existing Pascal compiler and eventually supplanted it. The problem was that there was a bug in the code generation in a particular case and the fix in the compiler source induced bug in the existing compiler, making it impossible to apply using conventional means. Back ups to a non-bugged version were out-of-date. Eventually, the author ended up to very careful binary surgery on the existing compiler.</p> <p>While C is a dominant systems language, it is certainly not the base-level language for creating other languages. The early Macintosh machines were created with Pascal in mind and most of the first tools and languages were Pascal (or assembly) based.</p> http://stackoverflow.com/questions/1725363/prime-factorization/1725605#1725605 2 Answer by plinth for Prime Factorization plinth 2009-11-12T21:39:11Z 2009-11-12T21:39:11Z <p>As a side note, if you enter into the realm of quantum computing, you can factor in polynomial time. <a href="http://herpolhode.com/rob/qcintro.pdf" rel="nofollow">See Rob Pike's notes from his talk on quantum computing, page 25</a>, also known as <a href="http://en.wikipedia.org/wiki/Shor%27s%5Falgorithm" rel="nofollow">Shor's algorithm</a>.</p> http://stackoverflow.com/questions/1725505/finding-similar-colors-programatically/1725546#1725546 2 Answer by plinth for finding similar colors programatically plinth 2009-11-12T21:29:25Z 2009-11-12T21:29:25Z <p>You're probably calling getRGB() on each pixel which is returning the color as 4 8 bits bytes, the high byte alpha, the next byte red, the next byte green, the next byte blue. You need to separate out the channels. Even then, color similarity in RGB space is not so great - you might get much better results using HSL or HSV space. See <a href="http://www.f4.fhtw-berlin.de/~barthel/ImageJ/ColorInspector//HTMLHelp/farbraumJava.htm" rel="nofollow">here</a> for conversion code.</p> <p>In other words:</p> <pre><code>int a = (argb &gt;&gt; 24) &amp; 0xff; int r = (argb &gt;&gt; 16) &amp; 0xff; int g = (argb &gt;&gt; 8) &amp; 0xff; int b = argb &amp; 0xff; </code></pre> <p>I don't know the specific byte ordering in java buffered images, but I think that's right.</p> http://stackoverflow.com/questions/1717288/in-place-rotation-c-practice/1717419#1717419 0 Answer by plinth for In Place rotation C++ Practice plinth 2009-11-11T19:13:34Z 2009-11-11T19:13:34Z <p>Really the way to do it is to use indexes instead of pointers.</p> <pre><code>int to = 0; int from = (to + nRotations) % count; if (to == from) return; for (int i=0; i &lt; count; i++) { swap(from, to); from = advance(from); to = advance(to); } // ... static inline int advance(int n, int count) { return (n + 1) % count; } </code></pre> http://stackoverflow.com/questions/1715535/complicated-c-cast-explanation/1715553#1715553 1 Answer by plinth for Complicated C cast explanation plinth 2009-11-11T14:36:38Z 2009-11-11T14:36:38Z <p>I would guess that in many circumstances, it crashes the machine. Otherwise, it treats the array as a pointer to a function that returns void and invokes it.</p> http://stackoverflow.com/questions/1689578/how-do-i-do-a-floating-point-modulo-operation-in-scheme/1689703#1689703 -1 Answer by plinth for How do I do a floating-point modulo operation in Scheme? plinth 2009-11-06T19:16:47Z 2009-11-06T19:16:47Z <p>It looks like remainder is the word you want. From <a href="http://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Numerical-operations.html" rel="nofollow">here</a>:</p> <pre><code>(remainder -13 -4.0) -1.0 </code></pre> http://stackoverflow.com/questions/1689530/how-useful-is-cs-operator/1689666#1689666 1 Answer by plinth for How useful is C#'s ?? operator? plinth 2009-11-06T19:11:32Z 2009-11-06T19:11:32Z <p>I use it in working with methods that can return null under normal operation.</p> <p>for example, lets say that I have a container class that has a Get method that returns null if the container doesn't contain a key (or maybe null is a valid association). Then I might do something like this:</p> <pre><code>string GetStringRep(object key) { object o = container.Get(key) ?? "null"; return o.ToString(); } </code></pre> <p>clearly, these two sequences are equivalent:</p> <pre><code>foo = bar != null ? bar : baz; foo = bar ?? baz; </code></pre> <p>The second is merely more terse.</p> http://stackoverflow.com/questions/1668098/runge-kutta-rk4-integration-for-game-physics/1668272#1668272 2 Answer by plinth for Runge-Kutta (RK4) integration for game physics plinth 2009-11-03T16:03:08Z 2009-11-03T16:03:08Z <p>The weighted average is a Taylor series expansion. There is a pretty good explanation <a href="http://pathfinder.scar.utoronto.ca/~dyer/csca57/book%5FP/node50.html" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1662681/how-to-code-via-mental-models-in-the-absence-of-a-keyboard/1663051#1663051 1 Answer by plinth for How to code via mental-models, in the absence of a keyboard. plinth 2009-11-02T19:08:04Z 2009-11-02T19:08:04Z <ol> <li>Don't try and code through it. Seek help. <a href="http://www.rsihelp.com/" rel="nofollow">Start with some of Deborah Quilter's books</a>. Next talk to a doctor and consider a specialist (perhaps even sports or music injury specialist). I offer these in this order because Quilter will help educate you so you know what to do with an ignorant doctor (first round ignorance is usually NSAIDs, splints and no education).</li> <li>I used Dragon Dictate/Naturally speaking. It's slow. I got really good at the international codes for letters (alpha, bravo, charlie, delta...)</li> <li>I swear by split keyboards and a properly adjusted chair, keyboard, mouse and monitor</li> <li>Hire a secretary. This was the most efficient way of getting code in place. I would fill 64 square feet of white board with code, call in my secretary and have him/her type in the code. I would then debug it with a voice system.</li> <li>Ignore points 2-4. Take the time to heal.</li> </ol> http://stackoverflow.com/questions/43289/comparing-two-byte-arrays-in-net/1445405#1445405 2 Answer by plinth for Comparing two byte arrays in .NET plinth 2009-09-18T15:49:04Z 2009-10-31T23:45:01Z <p>P/Invoke Powers activate!</p> <pre><code>[DllImport("msvcrt.dll")] static extern int memcmp(byte[] b1, byte[] b2, long count); static bool ByteArrayCompare(byte[] b1, byte[] b2) { return memcmp(b1, b2) == 0; } </code></pre> http://stackoverflow.com/questions/1632429/c-alternative-to-ifdef/1632647#1632647 2 Answer by plinth for C - alternative to #ifdef plinth 2009-10-27T18:08:33Z 2009-10-27T18:08:33Z <p>I've seen build systems in which most of the source files started something off like this:</p> <pre><code>#include PLATFORM_CONFIG #include BUILD_CONFIG </code></pre> <p>and the compiler was kicked off with:</p> <pre><code>cc -DPLATFORM_CONFIG="linuxconfig.h" -DBUILD_CONFIG="importonlyconfig.h" </code></pre> <p>(this may need backslash escapes)</p> <p>this had the effect of letting you separate out the platform settings in one set of files and the configuration settings in another. Platform settings manages handling library calls that may not exist on one platform or not in the right format as well as defining important size dependent types--things that are platform specific. Build settings handles what features are being enabled in the output.</p> http://stackoverflow.com/questions/1607681/how-to-monitor-memory-usage-for-managed-unmanaged-code/1607699#1607699 1 Answer by plinth for How to monitor memory usage for managed/unmanaged code plinth 2009-10-22T14:37:50Z 2009-10-22T14:37:50Z <p><a href="http://www.automatedqa.com" rel="nofollow">AQTime</a> will instrument both managed and unmanaged code. I have used it successfully to find memory leaks in managed/unmanaged project.</p> http://stackoverflow.com/questions/1840968/storing-two-shorts-in-one-short/1840983#1840983 Comment by plinth on storing two shorts in one short plinth 2009-12-03T16:19:57Z 2009-12-03T16:19:57Z @dtrosset - noted and changed. http://stackoverflow.com/questions/268538/tab-versus-space-indentation-in-c/268708#268708 Comment by plinth on Tab versus space indentation in C# plinth 2009-12-03T11:01:41Z 2009-12-03T11:01:41Z If you have false diffs from different tabbing, your diff tool sucks. http://stackoverflow.com/questions/1833062/how-to-measure-the-pixel-width-of-a-digit-in-a-given-font-size-c/1833126#1833126 Comment by plinth on How to measure the pixel width of a digit in a given font / size (C#) plinth 2009-12-02T14:21:10Z 2009-12-02T14:21:10Z Careful with MeasureString - it also pads: &quot;The MeasureString method is designed for use with individual strings and includes a small amount of extra space before and after the string to allow for overhanging glyphs.&quot; Also, be aware that measuring an individual glyph may not give accurate results out of context. The sum of widths of characters of a string is not always the width of the string, due to kerning. http://stackoverflow.com/questions/1777582/turing-machine-code-golf/1791935#1791935 Comment by plinth on Turing Machine Code Golf plinth 2009-11-24T18:21:56Z 2009-11-24T18:21:56Z You can drop 4 chars by using #include &lt;string&gt; and #include &lt;stdio&gt; http://stackoverflow.com/questions/1772380/equivalent-of-the-php-fmod-in-c/1772444#1772444 Comment by plinth on Equivalent of the php fmod in C# plinth 2009-11-20T19:06:02Z 2009-11-20T19:06:02Z CORRECTION: do not use this. Use the built-in modulus operator, it works correctly for all numeric types. Pinvoking to fmodf will add unnecessary overhead. http://stackoverflow.com/questions/1772380/equivalent-of-the-php-fmod-in-c/1772435#1772435 Comment by plinth on Equivalent of the php fmod in C# plinth 2009-11-20T19:05:00Z 2009-11-20T19:05:00Z I stand corrected - msdn says that modulus is defined for all numeric types, and % for doubles <i>is</i> fmod. http://stackoverflow.com/questions/1772380/equivalent-of-the-php-fmod-in-c/1772444#1772444 Comment by plinth on Equivalent of the php fmod in C# plinth 2009-11-20T18:46:03Z 2009-11-20T18:46:03Z You will always have that dll. http://stackoverflow.com/questions/1772380/equivalent-of-the-php-fmod-in-c/1772435#1772435 Comment by plinth on Equivalent of the php fmod in C# plinth 2009-11-20T18:45:06Z 2009-11-20T18:45:06Z fmod works on floating point numbers - the fmod(10.0, 3.1) is different from (double)((int)10.0 % (int)3.1). &quot;The fmod function calculates the floating-point remainder f of x / y such that x = i * y + f, where i is an integer, f has the same sign as x, and the absolute value of f is less than the absolute value of y.&quot; http://stackoverflow.com/questions/1772380/equivalent-of-the-php-fmod-in-c/1772435#1772435 Comment by plinth on Equivalent of the php fmod in C# plinth 2009-11-20T18:37:31Z 2009-11-20T18:37:31Z fmod is totally different. http://stackoverflow.com/questions/1750999/using-foreach-to-iterate-over-immutable-value-type-collections Comment by plinth on Using foreach to iterate over immutable value-type collections plinth 2009-11-17T19:01:49Z 2009-11-17T19:01:49Z what language? Do you want to link to the document in question? http://stackoverflow.com/questions/1750901/dynamically-loading-a-dll-in-c/1750938#1750938 Comment by plinth on Dynamically loading a dll in C# plinth 2009-11-17T18:55:33Z 2009-11-17T18:55:33Z noted and added. http://stackoverflow.com/questions/1725327/how-to-compare-two-distinctly-different-objects-with-similar-properties/1725378#1725378 Comment by plinth on How to compare two distinctly different objects with similar properties plinth 2009-11-12T21:35:15Z 2009-11-12T21:35:15Z If you can implement a common interface (because you don't own one or both of the objects), you will want to make adapter classes that DO implement the common interface. Then you're golden. http://stackoverflow.com/questions/1662681/how-to-code-via-mental-models-in-the-absence-of-a-keyboard/1663051#1663051 Comment by plinth on How to code via mental-models, in the absence of a keyboard. plinth 2009-11-03T15:40:46Z 2009-11-03T15:40:46Z When I say &quot;that the time to heal&quot; I mean it. It took you years to get this injury. It will take years to heal it. As to visualizing the process, I don't know how to teach you that other than to say that I do it all the time. I design code while I shower in the morning, while driving, while taking an afternoon walk. http://stackoverflow.com/questions/1662681/how-to-code-via-mental-models-in-the-absence-of-a-keyboard/1662704#1662704 Comment by plinth on How to code via mental-models, in the absence of a keyboard. plinth 2009-11-02T18:59:55Z 2009-11-02T18:59:55Z Switching your mouse hand will only make the other hand bad too (in time). I learned this the hard way. http://stackoverflow.com/questions/1662229/c-all-type-parameter/1662293#1662293 Comment by plinth on C all type parameter plinth 2009-11-02T17:10:32Z 2009-11-02T17:10:32Z And for the love of all things holy, write macros to call the function for you instead of including the type enum in every usage. This will insulate your code from changes in the enum and calling convention, and make it harder to shoot yourself in the foot by doing this: double d = 0.5; parse(&amp;d, INT_VALUE);