User odd parity - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T04:35:30Zhttp://stackoverflow.com/feeds/user/991http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1271221/is-it-correct-to-leave-com1-open-all-along-the-program/1271444#12714440Answer by odd parity for Is it correct to leave COM1 open all along the program ?odd parity2009-08-13T11:35:01Z2009-08-13T11:35:01Z<p>It depends on what your program does and how long it's going to run for. If you're communicating with a modem, for instance, you probably don't want other applications to interrupt your datastream, so in that case you'd keep it open the whole time and close it when finished. </p>
<p>If you're monitoring the status of some external hardware, and only need to check it periodically, it's better to open and close it every time you access it, so other programs can also access it if necessary.</p>
http://stackoverflow.com/questions/1138018/windows-c-highlighting/1138377#11383770Answer by odd parity for Windows C++ highlightingodd parity2009-07-16T15:19:17Z2009-07-16T15:19:17Z<p>I use <a href="http://www.emeditor.com/" rel="nofollow">EmEditor</a> for all my work outside of Visual Studio. It has syntax highlighting and autoindent support for C++ as well as many other languages. It's also fast, unobtrusive and has great Unicode support.</p>
http://stackoverflow.com/questions/1131853/can-you-suggest-book-on-program-stucture/1132125#11321250Answer by odd parity for Can you suggest book on program stucture?odd parity2009-07-15T15:26:34Z2009-07-15T15:26:34Z<p>If you're starting to get a good handle on the dos and don'ts of object-oriented programming, you can actually get the best of both worlds - being able to quickly make changes to the design of a program without the result looking like an unplanned mess. To a certain extent of course!</p>
<p><a href="http://amzn.com/0735619670" rel="nofollow">Code Complete</a> mentioned above is a great book, other books specific to C# are <a href="http://amzn.com/0321245660" rel="nofollow">Essential C#</a> and its <a href="http://amzn.com/0321485890" rel="nofollow">sequel</a>. I'd pay extra attention to the concepts of isolation of responsibilities (<a href="http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller" rel="nofollow">Model-View-Controller</a>), <a href="http://en.wikipedia.org/wiki/Cohesion_(computer_science)" rel="nofollow">cohesion</a> and <a href="http://en.wikipedia.org/wiki/Coupling_(computer_science)" rel="nofollow">coupling</a>. In general, try to design from the ground up in such a way that changing one part of the system does not necessitate changing the whole application. Also, try to write your code with readability in mind.</p>
http://stackoverflow.com/questions/1131879/converting-solution-from-visual-studio-2005-to-2008/1132021#11320210Answer by odd parity for Converting Solution from Visual Studio 2005 to 2008odd parity2009-07-15T15:11:06Z2009-07-15T15:11:06Z<p>We have an issue with Visual Studio 2008 crashing on opening any .rc file with the Resource Editor in our project. They worked fine before converting from 2005. </p>
<p>We haven't taken the time to identify what exactly causes the crashes as changes to these files are rare enough that modifying them by hand in Code View is acceptable. We're porting the whole application to .NET at the moment anyway.</p>
http://stackoverflow.com/questions/1061724/what-is-wrong-with-this-assembly-program/1131911#11319111Answer by odd parity for What is wrong with this assembly program?odd parity2009-07-15T14:54:10Z2009-07-15T14:54:10Z<p>From a quick browse, it seems that assembly under VS.NET is uncommon enough that you have to set up custom build rules. You can find an example here: <a href="http://www.cs.virginia.edu/~evans/cs216/guides/vsasm.html" rel="nofollow">http://www.cs.virginia.edu/~evans/cs216/guides/vsasm.html</a></p>
<p>Out of curiosity, what are you trying to accomplish? If you're just doing this for fun, or to learn assembly language, you'll probably be better off using a dedicated assembly editor. <a href="http://www.masm32.com/" rel="nofollow">The MASM32 SDK</a> is one such option. You can then link to the libraries you create from the Visual Studio project.</p>
<p>If you're planning on using small segments of assembly in timing-critical pieces of a C/C++ project, I would advise having a good look at compiler intrinsics (<a href="http://msdn.microsoft.com/en-us/library/26td21ds.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/26td21ds.aspx</a>) before deciding to use fully hand-coded assembly files.</p>
http://stackoverflow.com/questions/17761/are-e-book-readers-good-enough-for-tech-books13Are e-book readers good enough for tech books?odd parity2008-08-20T11:21:36Z2009-05-09T01:22:42Z
<p>I was wondering if the current generation of e-book readers (like the Kindle, or Sony's Reader) are big/high-res enough that you can comfortably use them for large paper-size PDFs, like most programming and other technical books? I've bought a few PDF books from Pragmatic Bookshelf lately, and it would be nice to have something to read them on that is smaller and cooler than a laptop and not backlit :-)</p>
<p>Does anyone have experience with this?</p>
http://stackoverflow.com/questions/630152/what-is-the-best-way-to-create-toolbar-buttons-with-separate-active-disabled-imag3What is the best way to create toolbar buttons with separate active/disabled images in WPF?odd parity2009-03-10T13:25:56Z2009-03-10T13:33:20Z
<p>I'm working on the toolbar for a WPF application. The icon set we are using has separate icons for normal, hover and disabled states, and I would like to use them. I was wondering what the simplest solution/normal way of doing this is?</p>
<p>My first thought was to create a user control "ImageButton" with properties NormalImage, ActiveImage, DisabledImage, that contained the necessary triggers for IsMouseOver and IsEnabled. This works, but unfortunately causes the buttons to lose the toolbar button style, i.e. they get the standard button borders, no blue background on mouseover and are spaced too closely together. As I understand it, this is because WPF's Toolbar control overrides the style for child Button elements, and fails to restyle my Buttons because they are inside a parent ImageButton.</p>
<p>Does anyone have any suggestions for getting this to work? I'm pretty new to WPF so it could be I'm just approaching this in a backwards manner.</p>
http://stackoverflow.com/questions/30824/book-on-system-archaeology/30909#309090Answer by odd parity for book on... System Archaeologyodd parity2008-08-27T19:03:31Z2008-08-27T19:03:31Z<p>I work with maintaining an aging code base myself, albeit not nearly as problematic as what you're describing - my opponent is just a few megabytes of undocumented win32 C code. I picked up a book from a bargain bin in my local tech bookshop by chance, called <a href="http://rads.stackoverflow.com/amzn/click/981238426X" rel="nofollow">Software Maintenance: Concepts and Practice</a>, but I haven't gotten around to reading more than the first few pages so I can't tell you if it's any good.</p>
<p>While browsing for the link I also found the following list at Amazon which might be of help: <a href="http://www.amazon.com/youre-stuck-someone-elses-code/lm/324MJX8SUJ4QO/" rel="nofollow">"If you're stuck with someone elses code"</a>. Although I fear that anyone in your situation will be a bit too short on time and sanity to successfully write a book about their experienses!</p>
http://stackoverflow.com/questions/8763/best-way-to-play-midi-sounds-using-c/8779#87793Answer by odd parity for Best way to play MIDI sounds using C#odd parity2008-08-12T12:51:50Z2008-08-12T12:51:50Z<p>I'm working on a C# MIDI application at the moment, and the others are right - you need to use p/invoke for this. I'm rolling my own as that seemed more appropriate for the application (I only need a small subset of MIDI functionality), but for your purposes the <A href="http://www.codeproject.com/KB/audio-video/MIDIToolkit.aspx" rel="nofollow">C# MIDI Toolkit</A> might be a better fit. It is at least the best .NET MIDI library I found, and I searched extensively before starting the project.</p>
http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/107069#107069Comment by odd parity on What was your first home computer?odd parity2009-06-03T13:35:29Z2009-06-03T13:35:29ZI was 6 years old when my father bought one of these second-hand in 1983. Wouldn't be where I am today without it.http://stackoverflow.com/questions/630152/what-is-the-best-way-to-create-toolbar-buttons-with-separate-active-disabled-imag/630189#630189Comment by odd parity on What is the best way to create toolbar buttons with separate active/disabled images in WPF?odd parity2009-03-10T13:46:10Z2009-03-10T13:46:10ZThat works beautifully, thank you. As I don't need to customize the look of the button beyond changing the image, even changing the <Button> element to <Button Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}"> did the trick.