User Ian G - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T07:16:50Zhttp://stackoverflow.com/feeds/user/5764http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/564773/horizontal-scroll-position-when-a-winforms-treevew-item-is-selected1Horizontal scroll position when a winforms treevew item is selectedIan G2009-02-19T10:59:26Z2009-11-26T08:31:05Z
<p>We have some code that uses the .net Windows.Forms.TreeView. When an item in the view is selected then code does</p>
<pre><code>treeView.BeginUpdate();
// ... some stuff ...
SendMessage(treeView.Handle, WM_HSCROLL, SB_LEFT, 0);
treeView.EndUpdate();
</code></pre>
<p>This is so that the tree view display doesn't scroll right (which is the default behaviour - to show as much of the selected item label as possible I assume but at the expense of hiding some of the tree structure). Unfortunately when the tree view contains 30,000 items and this code is called during a right-click and results in the context menu takes a couple of seconds to appear (enough to be disconcerting).</p>
<p>If you remove the Begin/EndUpdate, then the context menu appears instantly, but you get an annoying twitch as you see the view move right and then back the left edge. The suggestion of getting rid of the "push it back to the left edge" scroll is encountering some resistance.</p>
<p>I've tried filtering out SB_RIGHT on the tree view but that doesn't seem to actually be used to when the control moves to show the label.</p>
<p>So is there a way of keeping the tree view in at it's current horizontal scroll position when the item is selected that doesn't involve Begin/EndUpdate and the corresponding lag or the twitch? </p>
http://stackoverflow.com/questions/1725496/debugging-net-problems-on-remote-user-pcs/1725766#17257660Answer by Ian G for Debugging .NET Problems on Remote User PCsIan G2009-11-12T22:09:21Z2009-11-12T22:09:21Z<p>In the past I've set up a zip file that contained some of the contents of the <a href="http://www.microsoft.com/whdc/DevTools/Debugging/default.mspx" rel="nofollow">Debugging Tools for Windows</a> like CDB and ADPlus which can be installed just by unzipping it on a users machine. </p>
<p>There was then some scripts to control CDB to capture the typical information I needed from the process (loaded modules, exception traces, and the like), zip it up and with a couple of ancillary files (the exact copy of the .NET SOS.dll on the machine) and I could copy it back to examine at leisure. Worked reasonable well for the sort of problems I was facing. </p>
<p>The zip file was about 4Mb so not to bad to pass around; and you could just delete the contents when done.</p>
http://stackoverflow.com/questions/1690005/configuring-team-system-code-analysis-via-a-fxcop-rules-file0Configuring Team System Code Analysis via a FxCop rules fileIan G2009-11-06T20:00:44Z2009-11-11T13:19:27Z
<p>Is there anyway to configure the code analysis rules in Visual Studio Team System to match those in an FxCop configuration file and keep them in sync automatically?</p>
<p>Not all the developers on the team have TS so keeping the rules we are currently running in an FxCop file is required so everyone can run the same set, but it would nice for those with to be able to run them in the IDE. We're introducing static analysis to an existing project so turning on everything now isn't a useful option. (We are not using Foundation Server for source control, if that makes any difference.)</p>
http://stackoverflow.com/questions/1692467/book-to-learn-about-the-new-features-in-c-net-4-0/1692475#16924753Answer by Ian G for Book to learn about the new features in C#/.NET 4.0?Ian G2009-11-07T08:55:42Z2009-11-07T09:04:10Z<p>I would get the early access edition of <a href="http://www.manning.com/skeet2/" rel="nofollow">Jon Skeet's C# in Depth, 2nd Edition</a> that covers a good chunk of this.</p>
<p>Edit: misread and missed the .NET 4.0 parts, this covers the language and some of the framework changes (dynamic and the associated parts, contracts, co- and contravariance). I don't know of a good summary for all the up coming changes including things like IObservable, possibly Jeffrey Richter's <a href="http://www.wintellect.com/CS/blogs/jeffreyr/archive/2009/06/17/clr-via-c-3rd-edition.aspx" rel="nofollow">CLR via C#, 3rd edition</a> when in becomes avaiable.</p>
http://stackoverflow.com/questions/1596518/automated-link-checker-for-system-testing/1663185#16631851Answer by Ian G for Automated link-checker for system testingIan G2009-11-02T19:29:40Z2009-11-02T19:29:40Z<p>I'm not sure that it supports form authentication but it will handle cookies if you can get it going on the site and otherwise I think <a href="http://degraaff.org/checkbot/" rel="nofollow">Checkbot</a> will do everything on your list. I've used as a step in build process before to check that nothing broken on a site. There's an <a href="http://degraaff.org/checkbot/checkbot-graaff.xs4all.nl-8000.html" rel="nofollow">example output</a> on the website.</p>
http://stackoverflow.com/questions/1604582/timing-program-runtimes-in-visual-c/1656849#16568491Answer by Ian G for Timing program runtimes in visual C++Ian G2009-11-01T10:44:26Z2009-11-01T10:44:26Z<p>If you want to time sections of your program without changing the code then you need to get hold of a profiler. </p>
<p>Visual Studio Team System (or Premium in VS2010) has a profiler but it's not available in Professional. Other well regarded options are <a href="http://www.automatedqa.com/products/aqtime/" rel="nofollow">AQTime</a> (which has 30 day trial) and <a href="http://www.red-gate.com/products/ants%5Fperformance%5Fprofiler/index.htm" rel="nofollow">Redgate's ANTS profiler</a> (which has a two week trial).</p>
<p>You may also want to look at the suggestions in <a href="http://stackoverflow.com/questions/67554/whats-the-best-free-c-profiler-for-windows-if-there-are">this question</a> for free options, which recommends <a href="http://www.codersnotes.com/sleepy/" rel="nofollow">Sleepy</a> and <a href="http://developer.amd.com/cpu/CodeAnalyst/codeanalystwindows/Pages/default.aspx" rel="nofollow">AMD's CodeAnalyst for Windows</a>.</p>
http://stackoverflow.com/questions/1653898/how-to-create-a-google-like-word-suggestion/1653984#16539842Answer by Ian G for How to create a google like word suggestionIan G2009-10-31T10:20:39Z2009-10-31T10:32:22Z<p>Have a look at <a href="http://norvig.com/spell-correct.html" rel="nofollow">the example</a> from Peter Norvig (Director of Research at Google).</p>
http://stackoverflow.com/questions/1653753/how-to-code-a-compiler-in-c/1653779#16537791Answer by Ian G for How to code a compiler in C?Ian G2009-10-31T08:29:15Z2009-10-31T09:52:59Z<p>You could look at <a href="http://www.cs.princeton.edu/~appel/modern/c/" rel="nofollow">Appel's Modern Compiler Implementation in C</a>. </p>
<p>By the sounds of it you need to work out what language you want to compile: do you want a subset of C say or a easy to parse language like Scheme, or just an arithmetic expression language? </p>
<p>Pick/design a language, write a couple of really small programs in it, write a lexer/parser for part of it, then the back to get parts working (possibly interpreted to start - just so you can see it running) and then iterate chunks that seem interesting, building up to the full language.</p>
<p><strong>Edit based on extra details supplied</strong></p>
<blockquote>
<p>"i want to make a super set of c ,
like implementing various advantages
of python , but keeping it as simple
as c"</p>
</blockquote>
<p>I'm not sure I'd do that by writing everything by hand but if I did ...</p>
<p>I'd write out some programs in the hybrid language that I want to end up with: so if you want C with Python like list comprehensions then maybe</p>
<pre><code>void main()
{
int[] x = {1,2,3,4,5};
int[] y = {i*i for i in x where i % 2 == 0};
for (int i in y) { printf("%d", i); }
}
</code></pre>
<p>[C style arrays that include their count as implied above left as exercise for the reader :-) !]</p>
<p>Then get an absolutely minimal C program working, hello world or even just adding some numbers statically (if it was hello world I might even start by special casing printf so I didn't have to parse stdio.h - if you're heading towards a C-Python hybrid you may end up keeping that). Once you could do</p>
<pre><code>void main()
{
int x = 0;
int y;
y = 5;
x + y;
}
</code></pre>
<p>You can start adding complexity: arbitrary function definitions and calls, more operators, return values, arrays, data structures, const, pointers, ... building towards the simplest of the example programs step by step.</p>
<p>The advantage of starting with the C subset is you have lots of C compilers you can look at for ideas so you get going e.g. <a href="http://bellard.org/tcc/" rel="nofollow">TinyCC</a> so by the time you get to the difficulties of adding python-esque pieces you've got a solid base.</p>
<p>This is skating over a lot of details on a long road. Good luck.</p>
http://stackoverflow.com/questions/1445237/why-does-int-count-jump-from-1-to-4-on-entering-a-loop-c/1445355#14453551Answer by Ian G for Why does int count jump from 1 to 4 on entering a loop? C++Ian G2009-09-18T15:39:48Z2009-09-18T15:39:48Z<p>Can't you attach a debugger and step through the code? It doesn't look like you are going to have many iterations to go through to see the answer. (If this Visual Studio you could set a data break point on count at just hit run. I suspect GDB and most other debuggers will also support this.)</p>
http://stackoverflow.com/questions/1443224/safely-loading-a-hash-in-ruby2Safely loading a hash in RubyIan G2009-09-18T08:30:04Z2009-09-18T14:18:08Z
<p>I want to load a data structure into a Ruby script which maps a string to a triple which contains some combination of regular expressions, scripts and atoms. The file that it loads from needs to be human writeable.</p>
<p>Currently I'm writing the file to contain a Ruby hash, loading that as a string and calling eval. Ie.</p>
<p><strong>Data file</strong></p>
<pre><code>{ "key1" => [ /pattern/, "text", "text" ],
"key2" => [ "text2", :nil, "text3" ],
"key3" => [ "text4", /pattern2/, /pattern3/ ] }
</code></pre>
<p><strong>Script</strong></p>
<pre><code>def get_mapping
f = File.new path
return eval(f.read())
end
</code></pre>
<p>This is fine and works, but feels (i) like a bit of a hack, (ii) unsafe. So I'm curious to know: is there a better way of doing this?</p>
<p>It's almost JSON but I don't think that can handle atoms or regular expressions easily. The file format can be changed as look as it remains reasonably human read/writeable.</p>
http://stackoverflow.com/questions/1435474/how-can-i-get-fields-used-in-a-method-net/1440424#1440424-1Answer by Ian G for How can I get fields used in a method (.NET) ?Ian G2009-09-17T18:05:45Z2009-09-18T06:45:35Z<p>You need to get the MethodInfo. Call GetMethodBody() to get the method body structure and then call GetILAsByteArray on that. The convert that byte array into a stream of comprehensible IL. </p>
<p>Roughly speaking </p>
<pre><code>public static List<Instruction> ReadIL(MethodInfo method)
{
MethodBody body = method.GetMethodBody();
if (body == null)
return null;
var instructions = new List<Instruction>();
int offset = 0;
byte[] il = body.GetILAsByteArray();
while (offset < il.Length)
{
int startOffset = offset;
byte opCodeByte = il[offset];
short opCodeValue = opCodeByte;
// If it's an extended opcode then grab the second byte. The 0xFE
// prefix codes aren't marked as prefix operators though.
if (OpCodeList[opCodeValue].OpCodeType == OpCodeType.Prefix
|| opCodeValue == 0xFE)
{
opCodeValue = (short) ((opCodeValue << 8) + il[offset + 1]);
offset += 1;
}
// Move to the first byte of the argument.
offset += 1;
OpCode code = OpCodeList[opCodeValue];
Int64? argument = null;
if (code.ArgumentSize() > 0)
{
Int64 arg = 0;
Debug.Assert(code.ArgumentSize() <= 8);
for (int i = 0; i < code.ArgumentSize(); ++i)
{
Int64 v = il[offset + i];
arg += v << (i*8);
}
argument = arg;
offset += code.ArgumentSize();
}
var instruction = new Instruction(startOffset, code, argument);
instructions.Add(instruction);
}
return instructions;
}
</code></pre>
<p>where OpCodeList is constructed via</p>
<pre><code>OpCodeList = new Dictionary<short, OpCode>();
foreach (var opCode in typeof (OpCodes).GetFields()
.Where(f => f.FieldType == typeof (OpCode))
.Select(f => (OpCode) f.GetValue(null)))
{
OpCodeList.Add(opCode.Value, opCode);
}
</code></pre>
<p>You can then work out which instructions are IL property calls or member variable look ups or whatever you require and resolve then via GetType().Module.ResolveField.</p>
<p>(Caveat code above more or less work but was ripped from a bigger project I did so maybe missing minor details).</p>
<p><strong>Edit:</strong> Argument size is an extension method on OpCode that just uses a look up table to do find the appropriate value</p>
<pre><code>public static int ArgumentSize(this OpCode opCode)
{
Dictionary<OperandType, int> operandSizes
= new Dictionary<OperandType, int>()
{
{OperandType.InlineBrTarget, 4},
{OperandType.InlineField, 4},
{OperandType.InlineI, 4},
// etc., etc.
};
return operandSizes[opCode.OperandType];
}
</code></pre>
<p>You'll find sizes in <a href="http://www.ecma-international.org/publications/standards/Ecma-335.htm" rel="nofollow">ECMA 335</a> which you'll also need to look at for the OpCodes to find which OpCodes you to search for to find the calls you are looking for.</p>
http://stackoverflow.com/questions/101196/triggering-a-net-garbage-collection-externally2Triggering a .net garbage collection externallyIan G2008-09-19T11:29:03Z2009-08-28T21:47:37Z
<p>Is there a way to trigger a garbage collection in a .net process from another process or from inside WinDBG?</p>
<p>There are the Managed Debugging Assistants that force a collection as you move across a native/managed boundary, and AQTime seems to have button that suggests it does this but I can't find any documentation on how to do it.</p>
http://stackoverflow.com/questions/101196/triggering-a-net-garbage-collection-externally/1349556#13495560Answer by Ian G for Triggering a .net garbage collection externallyIan G2009-08-28T21:47:37Z2009-08-28T21:47:37Z<p>John Cocktoastan's answer to use GC.Collect when in Visual Studio is the best option if there.</p>
<p>I still can't find an alternative to actually do the collection under WinDBG but taking a step back to problem of "How much memory is reclaimable?" (see my comment to John's answer) I think there is an alternative by using a scripted (<a href="http://www.codeplex.com/powerdbg" rel="nofollow">PowerDBG</a>?) search via some combination of !DumpHeap and !GCRoot to find the non-rooted handles and total the space used (basically emulate the algorithm that the GC would do using the debugger). But since thinking of this I haven't had one of these bugs so haven't tried to write the code to do it.</p>
http://stackoverflow.com/questions/1326446/best-tools-for-helping-debug-an-interop-issues/1326456#13264562Answer by Ian G for Best Tools for helping debug an Interop issuesIan G2009-08-25T06:55:43Z2009-08-25T06:55:43Z<p>The <a href="http://msdn.microsoft.com/en-us/library/d21c150d%28VS.80%29.aspx" rel="nofollow">managed debugging assistants</a> in Visual Studio are designed for precisely this sort of thing and will catch things like GC releasing an COM pointer that's already gone (ie. native side reference counting problems).</p>
<p>Other than that the best tool I've found is a lot of patience and using WinDBG with <a href="http://msdn.microsoft.com/en-us/library/bb190764.aspx" rel="nofollow">SOS</a></p>
http://stackoverflow.com/questions/1186892/support-for-devpath/1186923#11869230Answer by Ian G for Support for DEVPATHIan G2009-07-27T07:39:46Z2009-07-27T21:18:52Z<p>This came up on a course I did with Wintellect recently, who have quite close links with MS. Apparently no, there's no longer plans to deprecate it as it's too useful for development purposes.</p>
<p>Link to <a href="http://www.wintellect.com/CS/blogs/jrobbins/archive/2009/05/11/pdb-files-what-every-developer-must-know.aspx" rel="nofollow">John Robbins' recent blog article mentioning it</a> (about 2/3 of the way through).</p>
<blockquote>
<p>By the way, if you search for DEVPATH in any internet search engine one of the top entries
is an out of date blog entry by Suzanne Cook saying Microsoft was getting rid of DEVPATH. That is no longer true. As with any blog entry, look at the date on Suzanne's blog: 2003. That's the equivalent of 1670 in internet years.</p>
</blockquote>
http://stackoverflow.com/questions/585339/debugging-a-program-that-doesnt-start/643561#6435610Answer by Ian G for Debugging a program that doesn't start.Ian G2009-03-13T16:32:57Z2009-03-13T16:32:57Z<p>Using WinDBG you can use "Open Executable" (or just do windbg {executable name} to connect to debugger instantly to the process during it's start up in ntdll and stop at a breakpoint before it's got your code and starting it running from there (type 'g') should give some information on the problem.</p>
http://stackoverflow.com/questions/564681/what-is-a-first-chance-exception/564713#5647132Answer by Ian G for What is a "first chance exception"?Ian G2009-02-19T10:40:09Z2009-02-19T10:40:09Z<p>First chance exception notifications are raised when an exception is thrown. Second chance notifications are when it is not caught. (Chance - as in opportunity to break into the code in the debugger).</p>
<p><a href="http://support.microsoft.com/kb/105675" rel="nofollow">First and second chance exception handling</a></p>
http://stackoverflow.com/questions/532092/weird-behaviour-of-c-destructors/532105#53210514Answer by Ian G for Weird behaviour of C++ destructorsIan G2009-02-10T12:25:35Z2009-02-10T14:02:39Z<p>Running in the debugger changes the memory allocation library used to one that does a lot more checking. A program that does nothing but memory allocation and de-allocation is going to suffer much more than a "normal" program.</p>
<p><strong>Edit</strong>
Having just tried running your program under VS I get a call stack that looks like</p>
<pre><code>ntdll.dll!_RtlpValidateHeapEntry@12() + 0x117 bytes
ntdll.dll!_RtlDebugFreeHeap@12() + 0x97 bytes
ntdll.dll!_RtlFreeHeapSlowly@12() + 0x228bf bytes
ntdll.dll!_RtlFreeHeap@12() + 0x17646 bytes
msvcr90d.dll!_free_base(void * pBlock=0x0061f6e8) Line 109 + 0x13 bytes
msvcr90d.dll!_free_dbg_nolock(void * pUserData=0x0061f708, int nBlockUse=1)
msvcr90d.dll!_free_dbg(void * pUserData=0x0061f708, int nBlockUse=1)
msvcr90d.dll!operator delete(void * pUserData=0x0061f708)
desc.exe!std::allocator<int>::deallocate(int * _Ptr=0x0061f708, unsigned int __formal=4)
desc.exe!std::vector<int,std::allocator<int> >::_Tidy() Line 1134 C++
</code></pre>
<p>Which shows the debug functions in ntdll.dll and the C runtime being used. </p>
http://stackoverflow.com/questions/532050/finding-patterns-in-source-code/532098#5320983Answer by Ian G for Finding patterns in source codeIan G2009-02-10T12:23:04Z2009-02-10T12:23:04Z<p>If you are reasonably mathematically confident then either of Chris Bishop's books "Pattern Recognition and Machine Learning" or "Neural Networks for Pattern Recognition" are very good for learning about pattern recognition.</p>
http://stackoverflow.com/questions/532066/how-do-i-use-print-in-python-without-a-line-break-or-space/532075#5320751Answer by Ian G for How do I use print in python without a line break or space?Ian G2009-02-10T12:16:59Z2009-02-10T12:16:59Z<p>You can use</p>
<pre><code>sys.stdout.write("hello")
sys.stdout.write("world")
</code></pre>
http://stackoverflow.com/questions/186970/what-resharper-4-0-live-templates-for-c-do-you-use/503797#5037970Answer by Ian G for What ReSharper 4.0 live templates for C# do you use?Ian G2009-02-02T16:25:11Z2009-02-02T16:25:11Z<h1>New COM Class</h1>
<p><strong>Shortcut</strong>: comclass</p>
<p><strong>Available in</strong>: C# 2.0+ files where type member declaration or namespace declaration is allowed</p>
<pre><code>[ComVisible(true)]
[ClassInterface(ClassInterfaceType.None)]
[Guid("$GUID$")]
public class $NAME$ : $INTERFACE$
{
$END$
}
</code></pre>
<p><strong>Macros</strong></p>
<ul>
<li><strong>GUID</strong> - New GUID</li>
<li><strong>NAME</strong> - Editable</li>
<li><strong>INTERFACE</strong> - Editable</li>
</ul>
http://stackoverflow.com/questions/289743/tool-to-refactor-c-var-to-explicit-type3Tool to refactor C# var to explicit typeIan G2008-11-14T10:44:26Z2008-11-14T14:29:10Z
<p>Our coding standards ask that we minimise the use of C# var (suggests limiting it's use to being in conjunction with Linq). However there are times when using generics where it's reasonably convenient e.g.</p>
<pre><code>Dictionary<DateTime, Dictionary<string, float>> allValues = ...
// ...
foreach (var dateEntry in allValue)
</code></pre>
<p>is easier to type </p>
<pre><code>foreach (KeyValue<DateTime, Dictionary<string, float>> dateEntry in allValue)
</code></pre>
<p>(and easier than remembering what the explicit type is in some cases). </p>
<p>Do any of the refactoring tools have the ability to convert the former to the latter. I've had a look at Resharper but it doesn't seem to do (indeed it's default suggestion is to go in the opposite direction).</p>
http://stackoverflow.com/questions/283977/c-stl-set-difference/283989#2839890Answer by Ian G for c++ STL set differenceIan G2008-11-12T13:54:18Z2008-11-12T13:54:18Z<p>Not as a method but there's the external algorithm function set_difference</p>
<pre><code>template <class InputIterator1, class InputIterator2, class OutputIterator>
OutputIterator set_difference(InputIterator1 first1, InputIterator1 last1,
InputIterator2 first2, InputIterator2 last2,
OutputIterator result);
</code></pre>
<p><a href="http://www.sgi.com/tech/stl/set_difference.html" rel="nofollow">http://www.sgi.com/tech/stl/set_difference.html</a></p>
http://stackoverflow.com/questions/280457/how-can-i-calculate-a-fair-overall-game-score-based-on-a-variable-number-of-match/280479#2804790Answer by Ian G for How can I calculate a fair overall game score based on a variable number of matches?Ian G2008-11-11T09:57:45Z2008-11-11T09:57:45Z<p>It depends how much you want to weight games played compared to the scores. You could define a function that returned a games played weight: some smallish fraction for only one game and 1 for a lot of games (e.g. 1 - 1/(2 * #Games)) and multiple that by the cumulative score.</p>
http://stackoverflow.com/questions/191335/windows-equivalent-of-dev-random3Windows equivalent of /dev/randomIan G2008-10-10T13:43:51Z2008-10-10T18:17:21Z
<p>Is there a Windows equivalent of Linux's <a href="http://en.wikipedia.org/wiki/Urandom#Linux" rel="nofollow">/dev/random</a>?</p>
http://stackoverflow.com/questions/149491/pascal-casing-or-camel-casing-for-c-code/149520#1495206Answer by Ian G for Pascal casing or Camel Casing for C# code?Ian G2008-09-29T16:35:59Z2008-09-29T16:35:59Z<p>For public interfaces you should stick with MS .net framework design guidelines "<a href="http://msdn.microsoft.com/en-us/library/ms229043.aspx" rel="nofollow">Capitalization Conventions</a>"</p>
<p>For non-exposed members then whatever you and your colleagues caqn agree on.</p>
http://stackoverflow.com/questions/140204/whats-the-best-way-to-have-a-c-member-function-get-called-by-a-c-callback/140232#1402326Answer by Ian G for What's the best way to have a C++ member function get called by a C callback ?Ian G2008-09-26T15:30:00Z2008-09-26T15:30:00Z<p>Most C callbacks allow to specify an argument e.g.</p>
<pre><code>int pthread_create(pthread_t *thread, const pthread_attr_t *attr,
void *(*start_routine)(void*), void *arg);
</code></pre>
<p>So you could have </p>
<pre><code>void myclass_doit(void* x)
{
MyClass* c = reinterpret_cast<MyClass*>(x);
c->doit();
}
pthread_create(..., &myclass_doit, (void*)(&obj));
</code></pre>
http://stackoverflow.com/questions/138334/starting-to-learn-windbg/138870#1388703Answer by Ian G for Starting to learn WindbgIan G2008-09-26T11:27:52Z2008-09-26T11:27:52Z<ul>
<li>Advanced Windows Debugging by Hewardt and Pravat (best for general Win32 stuff)</li>
<li>Debugging .Net 2.0 Applications by John Robbins (if you need SOS for .Net)</li>
<li><a href="http://blogs.msdn.com/ntdebugging/default.aspx" rel="nofollow">The NT debugging blog</a> (quite low level but they've just posted a <a href="http://blogs.msdn.com/ntdebugging/archive/2008/09/25/some-of-our-favorite-debugging-related-links.aspx" rel="nofollow">good set of links</a>.</li>
</ul>
http://stackoverflow.com/questions/56402/aligning-text-in-svg3Aligning text in SVGIan G2008-09-11T12:24:24Z2008-09-25T20:09:38Z
<p>I am trying to SVG XML documents with a mixture of lines and brief text snippets (two or three words typically). The major problem I'm having is getting the text aligning with line segments. </p>
<p>For horizontal alignment I can use <code>text-anchor</code> with <code>left</code>, <code>middle</code> or <code>right</code>. I can't find a equivalent for vertical alignment; <code>alignment-baseline</code> does seem to do it, so at present I'm using <code>dy="0.5ex"</code> as a kludge for centre alignment. </p>
<p>Is there a proper manner for aligning with the vertical centre or top of the text?</p>
http://stackoverflow.com/questions/114859/how-to-prevent-creating-intermediate-objects-in-cascading-operators/114952#1149528Answer by Ian G for How to prevent creating intermediate objects in cascading operators?Ian G2008-09-22T13:49:02Z2008-09-22T13:49:02Z<p>You could limit yourself to a single small intermediate by using lazy evaluation. Something like</p>
<pre><code>public class LazyMatrix
{
public static implicit operator Matrix(LazyMatrix l)
{
Matrix m = new Matrix();
foreach (Matrix x in l.Pending)
{
for (int i = 0; i < 2; ++i)
for (int j = 0; j < 2; ++j)
m.Contents[i, j] += x.Contents[i, j];
}
return m;
}
public List<Matrix> Pending = new List<Matrix>();
}
public class Matrix
{
public int[,] Contents = { { 0, 0 }, { 0, 0 } };
public static LazyMatrix operator+(Matrix a, Matrix b)
{
LazyMatrix l = new LazyMatrix();
l.Pending.Add(a);
l.Pending.Add(b);
return l;
}
public static LazyMatrix operator+(Matrix a, LazyMatrix b)
{
b.Pending.Add(a);
return b;
}
}
class Program
{
static void Main(string[] args)
{
Matrix a = new Matrix();
Matrix b = new Matrix();
Matrix c = new Matrix();
Matrix d = new Matrix();
a.Contents[0, 0] = 1;
b.Contents[1, 0] = 4;
c.Contents[0, 1] = 9;
d.Contents[1, 1] = 16;
Matrix m = a + b + c + d;
for (int i = 0; i < 2; ++i)
{
for (int j = 0; j < 2; ++j)
{
System.Console.Write(m.Contents[i, j]);
System.Console.Write(" ");
}
System.Console.WriteLine();
}
System.Console.ReadLine();
}
}
</code></pre>
http://stackoverflow.com/questions/564773/horizontal-scroll-position-when-a-winforms-treevew-item-is-selected/1801616#1801616Comment by Ian G on Horizontal scroll position when a winforms treevew item is selectedIan G2009-11-26T08:29:57Z2009-11-26T08:29:57ZYes, we already do that.http://stackoverflow.com/questions/1785205/can-you-define-a-comment-in-c/1785229#1785229Comment by Ian G on Can you #define a comment in C?Ian G2009-11-23T19:04:02Z2009-11-23T19:04:02ZNot always the best answer. There's times when printing trace logs in a specific format and then processing that with shell utilities can be faster/easier. [Though it should be a case of knowing what the debugger can do and consciously choosing an alternative.] http://stackoverflow.com/questions/1690005/configuring-team-system-code-analysis-via-a-fxcop-rules-file/1715129#1715129Comment by Ian G on Configuring Team System Code Analysis via a FxCop rules fileIan G2009-11-12T18:02:48Z2009-11-12T18:02:48ZThanks. Didn't know about CodeAnalysisProject but not having targets means it doesn't really fit. Automatic merges between the two formats look painful because as far as I can see FxCop uses rule names and VSTS using the CA id numbers. Shared MSBuild might work I'll have to investigate.http://stackoverflow.com/questions/1695894/why-is-there-no-intellisense-with-var-variables-in-foreach-statements-in-cComment by Ian G on Why is there no Intellisense with 'var' variables in 'foreach' statements in C#?Ian G2009-11-08T10:07:38Z2009-11-08T10:07:38ZNever had that problem using Resharper or VS. What version of Resharper? What version of VS? What's the container? (Is it IEnumerable or IEnumerable<T>)?http://stackoverflow.com/questions/1673028/downloading-from-msdn-bizsparkComment by Ian G on Downloading from MSDN (BizSpark)Ian G2009-11-04T11:13:47Z2009-11-04T11:13:47ZUnfortunately I'm having the same problems trying to download Team System from MSDN. I've tried GetRight which is my usual download tool but according that the MS servers don't support pause/resume which means a 4Gb download has to work in one. Currently on 5th attempt. :-(
Would love a better answer.http://stackoverflow.com/questions/101825/whats-the-best-way-of-using-a-pair-triple-etc-of-values-as-one-value-in-c/102744#102744Comment by Ian G on What's the best way of using a pair (triple, etc) of values as one value in C#?Ian G2009-11-02T17:32:53Z2009-11-02T17:32:53ZThe .NET 4.0 library that's currently in beta also includes tuples.http://stackoverflow.com/questions/1596328/resharper-alt-enter-not-working/1596386#1596386Comment by Ian G on Resharper Alt Enter not workingIan G2009-10-27T10:52:57Z2009-10-27T10:52:57Z+1 for Josh's comment - I found that just clicking "Apply" worked without having to reset VS.http://stackoverflow.com/questions/575172/portable-non-relational-database/575184#575184Comment by Ian G on portable non-relational databaseIan G2009-09-22T16:12:59Z2009-09-22T16:12:59ZUnfortunately the standard library bindings are depreciated in Python 2.6 and removed in Python 3.0http://stackoverflow.com/questions/1443224/safely-loading-a-hash-in-ruby/1443254#1443254Comment by Ian G on Safely loading a hash in RubyIan G2009-09-18T10:09:40Z2009-09-18T10:09:40ZRisk is mitigated by the environment it's used it for the most part, though yes, in general, I agree.
YAML is almost ideal by the looks of it, just wish I didn't have to to "!ruby/regexp".http://stackoverflow.com/questions/1274238/is-this-good-c-style/1274262#1274262Comment by Ian G on Is this good C# style?Ian G2009-08-13T20:28:09Z2009-08-13T20:28:09ZBut you should throw something more specific than a System.Exception which fits the type of error more precisely.http://stackoverflow.com/questions/106880/internalsvisibleto-attribute-aint-workin/107958#107958Comment by Ian G on InternalsVisibleTo attribute ain't workin'!Ian G2009-07-06T09:54:36Z2009-07-06T09:54:36ZTo get the public key of the friend assembly "sn -Tp MyFriendAssembly"http://stackoverflow.com/questions/532092/weird-behaviour-of-c-destructors/532105#532105Comment by Ian G on Weird behaviour of C++ destructorsIan G2009-02-10T12:36:32Z2009-02-10T12:36:32ZAs Paul says the memory allocation in the a dll, so recompiling or not doesn't matter (unless you've statically linked everything - even then it may use the IsDebuggerPresent call if you've built against debug libraries, I don't know I've never needed to go that deep).http://stackoverflow.com/questions/47437/which-is-a-better-refactoring-tool-for-a-beginner-something-easy-to-learn-use/47504#47504Comment by Ian G on Which is a better refactoring tool for a beginner (something easy to learn & use)?Ian G2008-11-19T14:58:31Z2008-11-19T14:58:31ZWell given the two tools he's explicitly mentioned Windows and Visual Studio for C# (or possibly VB.net) seems a pretty safe assumption.http://stackoverflow.com/questions/289743/tool-to-refactor-c-var-to-explicit-type/289781#289781Comment by Ian G on Tool to refactor C# var to explicit typeIan G2008-11-14T13:30:30Z2008-11-14T13:30:30ZThanks, I'm new to Resharper and hadn't found it.http://stackoverflow.com/questions/201374/project-euler-question-3-help/201410#201410Comment by Ian G on Project Euler Question 3 HelpIan G2008-10-14T14:53:41Z2008-10-14T14:53:41ZAnd is massively overkill for this sort of thing. If OP can't work out how do this quickly with simple tests I don't fancy his chances of getting Miller-Rabin working easily.