User SDX2000 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T14:10:39Zhttp://stackoverflow.com/feeds/user/39648http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/308615/whats-the-most-efficient-way-of-implementing-readline-on-a-binary-stream2What's the most efficient way of implementing ReadLine() on a binary stream?SDX20002008-11-21T12:29:06Z2009-12-01T17:52:39Z
<p>Please feel free to correct me if I am wrong at any point...</p>
<p>I am trying to read a <a href="http://en.wikipedia.org/wiki/Comma-separated%5Fvalues" rel="nofollow">CSV</a> (comma separated values) file using .NET file I/O classes. Now the problem is, this CSV file may contain some fields with soft carriage returns (i.e. solitary \r or \n markers rather than the standard \r\n used in text files to end a line) within some fields and the standard text mode I/O class StreamReader does not respect the standard convention and treats the soft carriage returns as hard carriage returns thus compromising the integrity of the CSV file. </p>
<p>Now using the BinaryReader class seems to be the only option left but the BinaryReader does not have a ReadLine() function hence the need to implement a ReadLine() on my own. </p>
<p>My current approach reads one character from the stream at a time and fills a StringBuilder until a \r\n is obtained (ignoring all other characters including solitary \r or \n) and then returns a string representation of the StringBuilder (using ToString()). </p>
<p>But I wonder: is this is the most efficient way of implementing the ReadLine() function? Please enlighten me.</p>
http://stackoverflow.com/questions/818159/what-are-some-bad-programming-habits-to-look-out-for-and-avoid/1771994#17719940Answer by SDX2000 for What are some bad programming habits to look out for and avoid?SDX20002009-11-20T17:20:10Z2009-11-20T17:20:10Z<p>I go depth first on my hobby projects...for example...I started out with <a href="http://booz.codeplex.com/" rel="nofollow">booz</a> but then I decided I need to do something about <a href="http://sharplauncher.codeplex.com/" rel="nofollow">this</a> problem...then I decided I need an installer for <a href="http://sharplauncher.codeplex.com/" rel="nofollow">it</a> but making MSIs turned out to be a real PITA then I decided I must have <a href="http://sharpinstall.codeplex.com/" rel="nofollow">this</a>.</p>
http://stackoverflow.com/questions/1748889/windows-installer-technology-how-to0Windows installer technology how-to.SDX20002009-11-17T13:31:41Z2009-11-18T08:36:30Z
<p>Hi, I am trying to create a custom installer technology for some fun and generic utility...I have experimented with several tools including Orca, WiX, VS S&D projects, NSIS, Innosetup etc but all of them seem to suffer from one or more of the following deficiencies...</p>
<ol>
<li>Its too complex for simple needs or outright simplistic. There is no technology which covers middle ground.</li>
<li>Does not support transacted setups.</li>
<li>Forces you to learn a complex new programming language.</li>
</ol>
<p>In the end I have decided to create my own installer technology to fulfill my needs...</p>
<ol>
<li>Declarative like WiX but no XML junk, will probably use boo instead.</li>
<li>Transacted like MSI (in fact I am thinking of using MSI as the underlying technology)</li>
<li>Outright simple and to the point but not too simple.</li>
</ol>
<p>I would be grateful if you could answer some of the following questions keeping the above in mind.</p>
<p>Q1. Has this already been done? Can you point to some instances of such technology?<br>
Q2. How do I detect program dependencies and find corresponding merge-modules like Visual studio does while creating setup and deployment projects?<br>
Q3. How do I programmatically create an MSI package from .net (without using something like WiX)? </p>
http://stackoverflow.com/questions/1748889/windows-installer-technology-how-to/1754458#17544580Answer by SDX2000 for Windows installer technology how-to.SDX20002009-11-18T08:30:11Z2009-11-18T08:36:30Z<p>I think here is the answer to our prayers <a href="http://www.jsware.net/jsware/msicode.php5" rel="nofollow">http://www.jsware.net/jsware/msicode.php5</a> :)...just going through it...will update my answer with my findings.</p>
http://stackoverflow.com/questions/536506/how-do-real-time-operating-systems-work6How do Real Time Operating Systems work?SDX20002009-02-11T12:11:31Z2009-11-13T03:34:04Z
<p>I mean how and why are realtime OSes able to meet deadlines without ever missing them? Or is this just a myth (that they do not miss deadlines)? How are they different from any regular OS and what prevents a regular OS from being an RTOS?</p>
http://stackoverflow.com/questions/374651/how-to-check-if-an-object-is-nullable8How to check if an object is nullable?SDX20002008-12-17T14:17:16Z2009-11-05T12:46:15Z
<p>Hi,</p>
<p>How do I check if a given object is nullable in other words how to implement the following method...</p>
<pre><code>bool IsNullableValueType(object o)
{
...
}
</code></pre>
<p>EDIT: I am looking for nullable value types. I didn't have ref types in mind. </p>
<pre><code>//Note: This is just a sample. The code has been simplified
//to fit in a post.
public class BoolContainer
{
bool? myBool = true;
}
var bc = new BoolContainer();
const BindingFlags bindingFlags = BindingFlags.Public
| BindingFlags.NonPublic
| BindingFlags.Instance
;
object obj;
object o = (object)bc;
foreach (var fieldInfo in o.GetType().GetFields(bindingFlags))
{
obj = (object)fieldInfo.GetValue(o);
}
</code></pre>
<p>obj now refers to an object of type <code>bool</code> (<code>System.Boolean</code>) with value equal to <code>true</code>. What I really wanted was an object of type <code>Nullable<bool></code></p>
<p>So now as a work around I decided to check if o is nullable and create a nullable wrapper around obj.</p>
http://stackoverflow.com/questions/330337/how-do-i-close-a-firefox-tab-from-a-greasemonkey-script2How do I close a firefox tab from a greasemonkey script?SDX20002008-12-01T09:13:04Z2009-10-30T06:59:20Z
<p>I have a greasemonkey user script with this single line of code...</p>
<pre><code>window.close();
</code></pre>
<p>but firefox does not allow a user script to close a window (as reported by an error message in the error console)</p>
<p>Is there a work around to this problem?</p>
http://stackoverflow.com/questions/1620296/register-unregister-com-dll-verbs-are-not-working-in-vista0Register/Unregister COM dll verbs are not working in vistaSDX20002009-10-25T07:51:39Z2009-10-25T08:06:36Z
<p>I am trying to use the registry settings from <a href="http://www.paulcilwa.com/Programming/03.Projects/Register%5FDLLs/index.asp" rel="nofollow">this</a> page to add two menu-items to the explorer context menu in vista to register and unregister COM DLLs. But for some reason they do not work. I have checked the registry using <code>Regedit</code> and the keys do exist on my system. I have also tried logging on and off the system several times but still no dice.</p>
<p>Has anyone ever faced this problem before? Were you able to resolve it? If yes then how?</p>
http://stackoverflow.com/questions/1593221/c-net-when-structures-are-better-than-classes/1593362#15933621Answer by SDX2000 for C# / .NET : when structures are better than classes?SDX20002009-10-20T09:10:08Z2009-10-20T09:10:08Z<p>All good answers thus far...I only have to add that by definition value types are not nullable and hence are a good candidate for use in scenarios where you do not want to be bothered with creating a new instance of a class and assigning it to fields, for example...</p>
<pre><code>struct Aggregate1
{
int A;
}
struct Aggregate2
{
Aggregate1 A;
Aggregate1 B;
}
</code></pre>
<p>Note if <code>Aggregate1</code> were a class then you would have had to initialize the fields in Aggregate2 manually...</p>
<pre><code>Aggregate2 ag2 = new Aggregate2();
ag2.A = new Aggregate1();
ag2.B = new Aggregate1();
</code></pre>
<p>This is obviously not required as long as Aggregate1 is a struct...this may prove to be useful when you are creating a class/struct heirarchy for the express purpose of serialization/deserialization with the <code>XmlSerializer</code> Many seemingly mysterious exceptions will disappear just by using structs in this case.</p>
http://stackoverflow.com/questions/1578493/net-graph-library-around/1578680#15786801Answer by SDX2000 for .NET graph library around?SDX20002009-10-16T15:10:17Z2009-10-16T15:10:17Z<p>Buddy I think <a href="http://www.codeproject.com/KB/miscctrl/quickgraph.aspx" rel="nofollow">this</a> is what you need!</p>
<blockquote>
<p>This article presents a Generic Graph
Library, 100% C#. This library is an
attempt to port the Boost Graph
Library (BGL) from C++ to C#.</p>
</blockquote>
http://stackoverflow.com/questions/1362364/how-to-make-zip-etc-files-appear-as-folders-in-powershell1How to make zip etc. files appear as folders in PowerShell?SDX20002009-09-01T13:01:25Z2009-10-14T22:22:39Z
<p>How can I make zip etc. files appear as folders in powershell? Does <a href="http://en.wikipedia.org/wiki/Windows%5FPowerShell" rel="nofollow">PowerShell</a> have a concept of folder (item) providers akin to drive providers? Can this be done without implementing a drive provider?</p>
<p>Preliminary search turns up some useful <a href="http://msdn.microsoft.com/en-us/library/ms714636%28VS.85%29.aspx" rel="nofollow">information</a> but from the looks of it, it appears that I still need to implement the whole shebang.</p>
http://stackoverflow.com/questions/1554532/primitive-mailmerge-using-just-delimited-field-names/1554806#15548060Answer by SDX2000 for Primitive mailmerge using just delimited field namesSDX20002009-10-12T14:10:05Z2009-10-12T14:10:05Z<p>What if the user does want to use curly braces? I think you should provide a way to escape them for example <code>/{/}</code> or <code>{{}}</code> etc. </p>
<p>You need to make sure that your replace logic is case insensitive for example both {CustomerSurname} and {Customersurname} should be allowed to represent the same field. May be even optionally allow spaces between words like {Customer surname}.</p>
http://stackoverflow.com/questions/1525421/drawing-svg-in-net-c/1525438#15254385Answer by SDX2000 for Drawing SVG in .NET/C#?SDX20002009-10-06T13:01:15Z2009-10-06T13:01:15Z<p>Check <a href="http://www.codeproject.com/KB/cs/svgnet.aspx" rel="nofollow">this</a> out.</p>
<p>From the above web page...</p>
<blockquote>
<p>The SvgGdi bridge is a set of classes
that use SvgNet to translate between
SVG and GDI+. What this means is that
any code that uses GDI+ to draw
graphics can easily output SVG as
well, simply by plugging in the
SvgGraphics object. This object is
exactly the same as a regular .NET
Graphics object, but creates an SVG
tree. Even things like hatched fills
and line anchors are implemented.</p>
</blockquote>
http://stackoverflow.com/questions/314152/how-to-declare-define-a-class-with-template-template-parameters-without-using-an2How to declare/define a class with template template parameters without using an extra template parameterSDX20002008-11-24T13:41:58Z2009-10-04T13:37:24Z
<p>Consider the following use of template template parameters...</p>
<pre><code>#include <iostream>
template <typename X>
class A
{
X _t;
public:
A(X t)
:_t(t)
{
}
X GetValue()
{
return _t;
}
};
template <typename T, template <typename T> class C >
class B
{
C<T> _c;
public:
B(T t)
:_c(t)
{
}
T GetValue()
{
return _c.GetValue();
}
};
using namespace std;
int main()
{
B<int, A> b(10);
cout<<b.GetValue();
return 0;
}
</code></pre>
<p>Is there a way by which the template parameter T can be removed? For example is there a way to make the following work?</p>
<pre><code>//Does not compile
template <template <typename T> class C >
class B
{
C _c;
public:
B(T t)
:_c(t)
{
}
T GetValue()
{
return _c.GetValue();
}
};
int main()
{
B< A<int> > b(10);
cout<<b.GetValue();
return 0;
}
</code></pre>
http://stackoverflow.com/questions/649614/xml-parsing-in-javascript/649648#6496482Answer by SDX2000 for XML parsing in JavascriptSDX20002009-03-16T08:41:20Z2009-09-24T13:25:01Z<p>Please take a look at <a href="http://www.w3schools.com/Dom/dom%5Fparser.asp" rel="nofollow">this</a>. Its a tutorial on XML DOM parsing. The actual DOM parser differs from browser to browser but the DOM API is standardised and remains the same (more or less).</p>
<p><hr /></p>
<p>[Update] Alternatively use <a href="http://www.w3schools.com/e4x/e4x%5Fwhy.asp" rel="nofollow">E4X</a> if you can <a href="http://www.w3schools.com/e4x/e4x%5Fbrowsers.asp" rel="nofollow">restrict</a> yourself to Firefox. Its relatively easier to use and its part of Javascript since version 1.6. Here is a small sample usage...</p>
<pre><code>//Using E4X
var xmlDoc=new XML();
xmlDoc.load("note.xml");
document.write(xmlDoc.body);//note 'body' is actually a tag in note.xml
//but it can be accessed as if it were a regular property of xmlDoc.
</code></pre>
http://stackoverflow.com/questions/1459704/why-doesnt-visual-studio-register-environment-variables-set-using-windows-explor0Why doesn't visual studio register environment variables set using windows explorer?SDX20002009-09-22T12:10:20Z2009-09-22T12:10:33Z
<p>Hi,</p>
<p>Newly created environment variables are not passed on to visual studio sometimes. What may be the problem? The environment variables are not visible to VS even when I close and restart it. This is an intermittent problem and thus hard to diagnose.</p>
http://stackoverflow.com/questions/1459704/why-doesnt-visual-studio-register-environment-variables-set-using-windows-explor/1459705#14597053Answer by SDX2000 for Why doesn't visual studio register environment variables set using windows explorer?SDX20002009-09-22T12:10:33Z2009-09-22T12:10:33Z<p>Environment variables are passed on to child processes from their parent process so if you used explorer to change the environment variables and also launch visual studio then the environment vars should be visible to VS. </p>
<p>But if you are using a third party application launcher (like <a href="http://www.launchy.net/" rel="nofollow">launchy</a>) then the changes may not be propagated if the launcher does not receive and act on the windows <a href="http://msdn.microsoft.com/en-us/library/ms725497%28VS.85,loband%29.aspx" rel="nofollow"><code>WM_SETTINGSCHANGED</code></a> event.</p>
<p>So you may try one of the following...</p>
<ol>
<li>Launch VS from explorer</li>
<li>Restart the app launcher and launch VS from it.</li>
</ol>
http://stackoverflow.com/questions/40689/tips-resources-for-building-a-google-chrome-plugin/1431669#14316692Answer by SDX2000 for Tips / Resources for building a Google Chrome pluginSDX20002009-09-16T08:25:15Z2009-09-16T08:25:15Z<p>Hi,</p>
<p>If anyone's still interested here is a <a href="http://code.google.com/chrome/extensions/index.html" rel="nofollow">link</a> to the latest extensions developer documentation page for Google chrome.</p>
<p>NOTE: Plugins (NPAPI) and extensions(JS Based) are not the same</p>
<p>From the doc...</p>
<blockquote>
<p>Extensions are small software programs
that can modify and enhance the
functionality of Google Chrome.</p>
<p>You write them using web technologies
like HTML, JavaScript, and CSS. So if
you know how to write web pages, you
already know most of what you need to
know to write extensions.</p>
</blockquote>
http://stackoverflow.com/questions/1410660/what-languages-and-libraries-should-i-use-to-work-with-gmail/1410851#14108513Answer by SDX2000 for What languages and libraries should I use to work with Gmail?SDX20002009-09-11T13:25:25Z2009-09-11T13:25:25Z<p>Have you considered using gmail filters? There are some easy ways of doing this without resorting to writing full fledged programs <a href="http://mail.google.com/support/bin/answer.py?hl=en&answer=6579" rel="nofollow">see</a>. This may not be as sophisticated as rolling up a custom program but it has served my needs pretty well so far. Also explore Gmail <a href="http://mail.google.com/support/bin/answer.py?hl=en&answer=7190" rel="nofollow">advanced search</a> queries. Be forewarned a little ingenuity and creativity is required.</p>
http://stackoverflow.com/questions/1312077/does-windows-have-performance-counters-to-measure-statistics-of-a-dialup-connecti0Does windows have performance counters to measure statistics of a dialup connection?SDX20002009-08-21T13:51:52Z2009-09-06T06:07:51Z
<p>Hi,</p>
<p>Does windows have performance counters to measure statistics of a dialup connection? Opening up Perfmon I can see that it has a performance counter called "Network Interfaces" which can be used to collect stats on a chosen network interface (mostly LAN cards) but I cannot see my dial up connection in the list here. How do I go about collecting stats like bytes sent/received, speed etc for my dial up connection (which is actually a high speed broadband connection!) What is the perfmon query string I need to use?</p>
http://stackoverflow.com/questions/1312077/does-windows-have-performance-counters-to-measure-statistics-of-a-dialup-connecti/1384997#13849970Answer by SDX2000 for Does windows have performance counters to measure statistics of a dialup connection?SDX20002009-09-06T06:07:51Z2009-09-06T06:07:51Z<p>Ok finally got a solution...the windows Dialup API is known as <a href="http://en.wikipedia.org/wiki/Remote%5FAccess%5FService" rel="nofollow">RAS</a> for some reason. Windows vista has several performance counters for RAS services. You can get the required information by reading these counters. Refer "<a href="http://technet.microsoft.com/en-us/library/cc738450%28WS.10%29.aspx" rel="nofollow">RAS total</a>" and "<a href="http://technet.microsoft.com/en-us/library/cc738481%28WS.10%29.aspx" rel="nofollow">RAS Port</a>".</p>
http://stackoverflow.com/questions/1345929/c-execute-program-from-memorystream/1345968#13459681Answer by SDX2000 for c# execute program from MemoryStream SDX20002009-08-28T09:32:46Z2009-08-28T09:32:46Z<p>The key here is to build/load an assembly in memory from the byte array <a href="http://msdn.microsoft.com/en-us/library/h538bck7.aspx" rel="nofollow">see</a>. Once you have a reference to the assembly you can easily get access to its types and instantiate them. Once you have got type instances call a method on it to "run" your program.</p>
http://stackoverflow.com/questions/1345913/how-many-programmers-do-you-need-in-a-software-company/1345943#13459430Answer by SDX2000 for How many programmers do you need in a software company?SDX20002009-08-28T09:26:14Z2009-08-28T09:26:14Z<p>I don't know if there is an easy formula to answer this question (a thumb rule so to say) but I can certainly tell you that "Too many cooks spoil the broth". Adding programmers late in the software development life cycle is going to hurt more than it helps (read "The mythical man month" by Fred Brooks). Hence in my opinion this number is best decided when you have made the effort estimate for your project once the requirements have been frozen. And of-course you need to revisit this figure if your requirements change.</p>
http://stackoverflow.com/questions/1342107/visual-studio-how-to-rebuild-all/1342119#13421196Answer by SDX2000 for [Visual Studio] How to rebuild ALL?SDX20002009-08-27T16:11:11Z2009-08-27T16:35:47Z<p>Use the batch build option...right click on the solution to see it.</p>
<p>Here is a screen shot (VS2010 but I believe it's the same for VS2008 too)</p>
<p><img src="http://img368.imageshack.us/img368/1516/batchbuild.jpg" alt="Batch build screen shot" /></p>
http://stackoverflow.com/questions/1299912/making-a-pointer-that-points-to-two-bytes/1299953#12999535Answer by SDX2000 for Making a pointer that points to two bytesSDX20002009-08-19T13:32:52Z2009-08-19T13:39:06Z<p>Try this...</p>
<pre><code>//A buffer containing the bytes to be written
unsigned char writeBuffer[] = {0x10, 0xFF};
//writeBuffer itself points to the start of the write buffer
//you dont need an extra pointer variable
//Indicate the size of the buffer in the call to the function
//pointers do not carry array size information with them (in C/C++)
JidaI2CWrite(hJida,0,0x98,writeBuffer,2);
</code></pre>
<p>or better yet</p>
<pre><code>unsigned char writeBuffer[] = {0x10, 0xFF};
JidaI2CWrite(hJida,0,0x98,writeBuffer
,sizeof(writeBuffer)/sizeof(unsigned char));
</code></pre>
<p>Note: <code>sizeof(writeBuffer)/sizeof(writeBuffer[0])</code> automatically calculates the size of the array in bytes for you</p>
http://stackoverflow.com/questions/1299126/what-is-the-best-way-or-tool-to-show-how-long-a-command-line-operation-takes/1299151#12991515Answer by SDX2000 for What is the best way or tool to show how long a command line operation takes?SDX20002009-08-19T10:57:46Z2009-08-19T11:06:47Z<p>Try <a href="http://www.microsoft.com/DOWNLOADS/details.aspx?familyid=913795CD-7026-4143-AE85-1F5E096F9BE0&displaylang=en" rel="nofollow">TimeThis</a> </p>
<p>From the microsoft download page...</p>
<blockquote>
<p>Times how long it takes to execute a
given command.</p>
</blockquote>
<p>You should already have this command installed if you have installed the windows resource kit. This command should also work on the later versions of windows even if the download page says "Windows 2000 resource kit."</p>
http://stackoverflow.com/questions/1288294/possible-to-output-to-console-from-within-a-class-library-c/1288375#12883751Answer by SDX2000 for Possible to output to console from within a class library C#?SDX20002009-08-17T14:47:13Z2009-08-17T14:47:13Z<p>Sure if the library client is a Console app, just call Console.WriteLine("") with your messages.</p>
<p>If you do not have a console based client and you want to open a Console for your own use then you need to use P/Invoke to call <a href="http://msdn.microsoft.com/en-us/library/ms681944%28VS.85%29.aspx" rel="nofollow">ConsoleAlloc</a>. See <a href="http://www.pinvoke.net/search.aspx?search=AllocConsole&namespace=%5BAll%5D" rel="nofollow">here</a> for some help with the P/Invoke declaration.</p>
<p>Having said that I must also point out that writing to the console from a Class library is decidedly bad design and you should consider using the dot net tracing/logging mechanism instead (Peruse the Microsoft documentation on System.Diagnostics)</p>
http://stackoverflow.com/questions/653003/in-c-is-there-a-way-to-consistently-be-able-to-get-the-selected-text-contents-o/1214230#12142300Answer by SDX2000 for In C#, is there a way to consistently be able to get the selected text contents of currently focused window?SDX20002009-07-31T18:54:51Z2009-07-31T18:54:51Z<p>Try the <a href="http://msdn.microsoft.com/en-us/library/ms633520%28VS.85%29.aspx" rel="nofollow">GetWindowText()</a> API on controls for which the other methods do not work.</p>
http://stackoverflow.com/questions/1084020/exceptions-and-abstractions/1084149#10841490Answer by SDX2000 for Exceptions and AbstractionsSDX20002009-07-05T14:21:08Z2009-07-05T14:21:08Z<blockquote>
<p>When should you throw a custom exception?</p>
</blockquote>
<p>I. When you can provide more (diagnostic) information. </p>
<p>Note: this additional information may not be available at the place where the original exception (IOException) was thrown. Progressive layers of abstractions may have more information to add like what were you trying to do which led to this exception?</p>
<p>II. When you must not expose implementation details: i.e. you want the (illusion of?) abstraction to continue. </p>
<p>This may be important when the underlying implementation mechanism can change. Wrapping the underlying exception in a custom exception is a good way of insulating your clients from implementation details (by lifting the level of abstraction)</p>
<p>III. Both I and II</p>
<p>NOTE: Furthermore your clients should be able to tune into the exact level of information they are interested in or rather they should be able to tune out anything they are not interested in. So it's a good idea to derive your custom exceptions from IOException. </p>
http://stackoverflow.com/questions/1052326/does-ms-provide-some-way-for-user-to-manage-input-bindings/1052444#10524440Answer by SDX2000 for Does MS provide some way for user to manage input bindings?SDX20002009-06-27T09:02:15Z2009-06-27T09:19:01Z<p>Are you talking about <a href="http://en.wikipedia.org/wiki/Input%5Fmethod%5Feditor" rel="nofollow">this</a>?</p>
<p><hr /></p>
<p>Then you need to use the <a href="http://en.wikipedia.org/wiki/Command%5Fpattern" rel="nofollow">command pattern</a> you have a (somewhat) ready to use <a href="http://www.codeproject.com/KB/WPF/WpfCommandPatternApplied.aspx" rel="nofollow">solution</a> if you are using WPF. </p>
http://stackoverflow.com/questions/1874354/a-dynamic-buffer-type-in-c/1874641#1874641Comment by SDX2000 on A dynamic buffer type in C++?SDX20002009-12-09T17:20:35Z2009-12-09T17:20:35Z@Useless: Ok then how about hassle free exception safe memory management?http://stackoverflow.com/questions/1827064/question-on-converting-decimal-to-binary-to-hex/1827076#1827076Comment by SDX2000 on Question on converting decimal to binary to hexSDX20002009-12-01T15:58:46Z2009-12-01T15:58:46Z@Luke And your point is?http://stackoverflow.com/questions/1802309/shell-scripting-bookComment by SDX2000 on Shell scripting bookSDX20002009-11-26T09:34:19Z2009-11-26T09:34:19ZWhat shell? What script?http://stackoverflow.com/questions/374651/how-to-check-if-an-object-is-nullable/1680342#1680342Comment by SDX2000 on How to check if an object is nullable?SDX20002009-11-22T15:45:02Z2009-11-22T15:45:02ZNullable.GetUnderlyingType(objType) returns null if objType is not nullable there is no need to resort to string comparisons for this. Have you read/understood the accepted answer?http://stackoverflow.com/questions/1748889/windows-installer-technology-how-to/1748989#1748989Comment by SDX2000 on Windows installer technology how-to.SDX20002009-11-17T13:55:26Z2009-11-17T13:55:26ZOh, please don't get me started on the documentation...my head hurts already...the MSI documentation is nothing but rubbish. I am sorry but NSIS etc seem like poorly re-invented wheels themselves...why abandon std. platforms like .net, python, ruby etc and come up with some half assed DSL?http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/1332579#1332579Comment by SDX2000 on Hidden .NET Base Class Library Classes?SDX20002009-11-13T10:39:55Z2009-11-13T10:39:55ZWow! Thanks....................http://stackoverflow.com/questions/374651/how-to-check-if-an-object-is-nullable/1680342#1680342Comment by SDX2000 on How to check if an object is nullable?SDX20002009-11-06T16:16:47Z2009-11-06T16:16:47ZobjType.FullName.StartsWith(typeof(Nullable<>).FullName)...
What purpose does this serve?http://stackoverflow.com/questions/536506/how-do-real-time-operating-systems-work/1656536#1656536Comment by SDX2000 on How do Real Time Operating Systems work?SDX20002009-11-01T16:50:15Z2009-11-01T16:50:15ZSubstandard article with substandard English.http://stackoverflow.com/questions/1620296/register-unregister-com-dll-verbs-are-not-working-in-vista/1620322#1620322Comment by SDX2000 on Register/Unregister COM dll verbs are not working in vistaSDX20002009-10-25T08:20:26Z2009-10-25T08:20:26ZI am not missing any keys, I was able to update the registry with the shell verb keys but I still cannot see the context menu items corresponding to register and unregister.http://stackoverflow.com/questions/1599744/how-to-use-the-performancecounter-to-find-the-bandwidth-used-by-my-appicationComment by SDX2000 on How to use the PerformanceCounter to find the bandwidth used by my appication?SDX20002009-10-21T14:03:46Z2009-10-21T14:03:46ZHave you seen this <a href="http://stackoverflow.com/questions/630285/programmatically-getting-per-process-network-statistics-on-windows" rel="nofollow" title="programmatically getting per process network statistics on windows">stackoverflow.com/questions/630285/…</a> ?http://stackoverflow.com/questions/1599744/how-to-use-the-performancecounter-to-find-the-bandwidth-used-by-my-appicationComment by SDX2000 on How to use the PerformanceCounter to find the bandwidth used by my appication?SDX20002009-10-21T13:58:53Z2009-10-21T13:58:53ZWhat do you mean by current application?http://stackoverflow.com/questions/1600072/how-can-i-implement-a-print-preview-function-for-a-c-object-that-doesnt-exposeComment by SDX2000 on How can I implement a Print Preview function for a C# object that doesn't expose a PrintDocument object?SDX20002009-10-21T13:55:55Z2009-10-21T13:55:55ZDoes the Print() method (or some overload) take any arguments?http://stackoverflow.com/questions/1593221/c-net-when-structures-are-better-than-classes/1593362#1593362Comment by SDX2000 on C# / .NET : when structures are better than classes?SDX20002009-10-21T11:34:16Z2009-10-21T11:34:16ZYeah I know..its a special case...one that you should know is nullable if you are using it! Its a struct which receives special treatment from the compiler.http://stackoverflow.com/questions/1593920/debugging-a-generated-net-assembly-from-within-the-application-that-generated-itComment by SDX2000 on Debugging a generated .NET assembly from within the application that generated itSDX20002009-10-20T11:59:49Z2009-10-20T11:59:49ZI was talking about <a href="http://blogs.msdn.com/yirutang/archive/2005/05/26/422373.aspx" rel="nofollow">blogs.msdn.com/yirutang/archive/…</a> which shows you how to debug the code using windbg. http://stackoverflow.com/questions/1593920/debugging-a-generated-net-assembly-from-within-the-application-that-generated-itComment by SDX2000 on Debugging a generated .NET assembly from within the application that generated itSDX20002009-10-20T11:43:41Z2009-10-20T11:43:41ZHave you seen <a href="http://stackoverflow.com/questions/321203/how-do-i-debug-il-code-generated-at-runtime-using-reflection-emit" rel="nofollow" title="how do i debug il code generated at runtime using reflection emit">stackoverflow.com/questions/321203/…</a> ?