User Conor OG - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T02:33:40Z http://stackoverflow.com/feeds/user/77824 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1092835/enabling-authentication-between-applications/1125974#1125974 1 Answer by Conor OG for Enabling authentication between applications Conor OG 2009-07-14T14:59:02Z 2009-07-14T14:59:02Z <p>TLS/SSL/HTTP. You just need to enable client authentication. SSL is usually only used in the scenario where the server needs to be authenticated. But the server end can be configured to authenticate the client also. Digital certs need to be installed on both ends. This then uses all the appropriate crypto to do the job, ie. public authentication, establishment of secure channel, using Diffie-Hellman, RSA, AES/3DES, whatever you configure.</p> http://stackoverflow.com/questions/1103719/narrow-band-extensible-message-format/1125787#1125787 0 Answer by Conor OG for Narrow band extensible message format Conor OG 2009-07-14T14:30:42Z 2009-07-14T14:30:42Z <p>Some more info would be useful. As it's stated the answer could be ASCII. Were you thinking of transmitting numbers, floats, degrees, names? Perhaps something more esoteric like ASN.1. Or you could go completely mad, as with the other suggestions.</p> http://stackoverflow.com/questions/1111332/are-there-any-vendors-providing-msil-clr-on-hardware/1125737#1125737 1 Answer by Conor OG for Are there any vendors providing MSIL / CLR on hardware? Conor OG 2009-07-14T14:23:23Z 2009-07-14T14:23:23Z <p>Yea, a rackmount PC server running Windows! What's your cost and performance budget?</p> http://stackoverflow.com/questions/727551/design-ideas-for-serving-up-high-frequency-data/739905#739905 1 Answer by Conor OG for design ideas for serving up high-frequency data Conor OG 2009-04-11T11:30:33Z 2009-04-11T11:30:33Z <p>"<a href="http://oss.oetiker.ch/rrdtool/" rel="nofollow">RRDTool</a> is the OpenSource industry standard, high performance data logging and graphing system for time series data."</p> <p>It's in two parts, one which logs, stores and retrieves time series data, and a second part for graphing. There are many examples of it's use. </p> <p>Even if you don't use it, it's design is definitely relevant.</p> http://stackoverflow.com/questions/626541/listen-for-icmp-packets-in-c/665457#665457 2 Answer by Conor OG for Listen for ICMP packets in C# Conor OG 2009-03-20T09:25:19Z 2009-03-20T09:25:19Z <p>There are a number of posts on the web mentioning the problem of ICMP Port Unreachable packets no longer being accessible on Vista.</p> <ul> <li><a href="http://www.eggheadcafe.com/software/aspnet/31961998/icmp-port-unreachable-and.aspx" rel="nofollow">http://www.eggheadcafe.com/software/aspnet/31961998/icmp-port-unreachable-and.aspx</a></li> <li><a href="http://social.msdn.microsoft.com/Forums/en-US/Offtopic/thread/5bd8b275-cc6f-43cd-949d-7c411973b2f3/" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/Offtopic/thread/5bd8b275-cc6f-43cd-949d-7c411973b2f3/</a></li> </ul> <p>The stack should give you back an exception when it receives the ICMP. But it doesn't, at least on Vista. And hence you are trying a workaround.</p> <p>I don't like answers that say it's not possible, but it seems that way. So I suggest you go back a step to the original problem, which was long timeouts in SIP. </p> <ul> <li>You could let the user configure the timeout (hence sort of complying with the spec).</li> <li>You can start doing other things (like checking other proxies) before the timeout ends.</li> <li>You could cache known bad destinations (but that would need good management of the cache.</li> <li>If icmp, and udp don't give proper error messages, try tcp or another protocol. Just to elicit the desired information.</li> </ul> <p><em>(Anything is possible, it just may take a lot of resources.)</em></p> http://stackoverflow.com/questions/529867/does-application-applicationexit-event-work-to-be-notified-of-exit-in-non-winform/652723#652723 1 Answer by Conor OG for Does Application.ApplicationExit event work to be notified of exit in non-Winforms apps? Conor OG 2009-03-17T01:15:19Z 2009-03-17T01:15:19Z <p>This answer has the details for console apps. <a href="http://stackoverflow.com/questions/474679/capture-console-exit-c">http://stackoverflow.com/questions/474679/capture-console-exit-c</a></p> http://stackoverflow.com/questions/652524/how-do-i-create-a-directory-in-a-makefile/652651#652651 3 Answer by Conor OG for How do I create a directory in a makefile Conor OG 2009-03-17T00:36:13Z 2009-03-17T00:36:13Z <p>Make always wants to do things based on targets. It's not a general scripting tool. It looks at the targets and checks to see if they exist. If the target does not exist it executes the commands for that target.</p> <p>The usual way to do this is to have a dummy target that is never going to be generated by the make scripts, so every time make runs it has to execute the relevant commands. </p> <p>Or, you could add the command to a batch file that then calls your make file. </p> http://stackoverflow.com/questions/641328/about-the-non-nullable-types-debate/652631#652631 0 Answer by Conor OG for About the non-nullable types debate Conor OG 2009-03-17T00:22:15Z 2009-03-17T00:22:15Z <p>As I see it there are two areas where null is used. </p> <p>The first is the absence of a value. For example, a boolean can be true or false, or the user hasn't yet chosen a setting, hence null. This is useful and a good thing, but perhaps has been implemented incorrectly originally and there is now an attempt to formalise that use. (Should there be a second boolean to hold the set/unset state, or null as part of a three-state logic?)</p> <p>The second is in the null pointer sense. This is more often than not a program error situation, ie. an exception. It is not an intended state, there is a program error. This should be under the umbrella of formal exceptions, as implemented in modern languages. That is, a NullException being caught via a try/catch block.</p> <p>So, which of these are you interested in?</p> http://stackoverflow.com/questions/327678/how-to-add-words-to-an-already-loaded-grammar-using-system-speech-and-sapi-5-3/652591#652591 1 Answer by Conor OG for How to add words to an already loaded grammar using System.Speech and SAPI 5.3 Conor OG 2009-03-16T23:51:26Z 2009-03-16T23:51:26Z <p>An alternative, if you have very large grammars, would be to use the dictation grammar option. There is a standard dictation grammar, but you could also specify your own. See <a href="http://msdn.microsoft.com/en-us/library/system.speech.recognition.dictationgrammar.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.speech.recognition.dictationgrammar.aspx</a>, and it's constructor.</p> <p>You wouldn't update this. It contains all possible words.</p> http://stackoverflow.com/questions/585745/c-speech-recognition/651299#651299 1 Answer by Conor OG for C# Speech Recognition Conor OG 2009-03-16T17:09:53Z 2009-03-16T17:09:53Z <p>Check that you have a language engine matching the language you have configured in Vista. See <a href="http://support.microsoft.com/kb/934377" rel="nofollow">http://support.microsoft.com/kb/934377</a></p> http://stackoverflow.com/questions/327678/how-to-add-words-to-an-already-loaded-grammar-using-system-speech-and-sapi-5-3/651246#651246 1 Answer by Conor OG for How to add words to an already loaded grammar using System.Speech and SAPI 5.3 Conor OG 2009-03-16T16:53:55Z 2009-03-16T16:53:55Z <p>It sounds like you need to use some indirection, via the a grammar rule reference. This can be done with the GrammarBuilder.AppendRuleReference method. It might be easier to test out your grammars first with some SRGS grammar files.</p> <p>The principle is that you load a main large grammar which has some references in it, to smaller user specific word lists grammars, which you would dynamically load.</p> <p>See <a href="http://www.w3.org/TR/speech-grammar/#S2.2" rel="nofollow">http://www.w3.org/TR/speech-grammar/#S2.2</a> for the srgs format, and <a href="http://msdn.microsoft.com/en-us/library/system.speech.recognition.grammarbuilder.appendrulereference.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.speech.recognition.grammarbuilder.appendrulereference.aspx</a> for the programmatic version.</p> http://stackoverflow.com/questions/546428/how-do-i-load-a-grammar-xml-file-that-uses-sapi-5-3-tags/651167#651167 0 Answer by Conor OG for How do I load a Grammar xml file that uses SAPI 5.3 tags? Conor OG 2009-03-16T16:32:03Z 2009-03-16T16:39:47Z <p>You appear to be using c#, and therefore the .NET interface to the speech system. As far as I can tell the .NET interface only explicitly supports the W3C SRGS XML grammar format, <a href="http://www.w3.org/TR/speech-grammar/" rel="nofollow">http://www.w3.org/TR/speech-grammar/</a>. While the grammar format you link to is an MS specific format, which they seem to call CFG. Only the lowerlevel COM API gives details of the CFG format. </p> <p>You should be able to do the same things in SRGS as in CFG.</p> <p>You may be able to load the binary version of CFG after compiling it using the SDK tools.</p> http://stackoverflow.com/questions/641191/microsoft-speech-recognizer-6-1-training-files/651110#651110 0 Answer by Conor OG for Microsoft Speech Recognizer 6.1 Training Files Conor OG 2009-03-16T16:18:18Z 2009-03-16T16:18:18Z <p>Are you sure you are looking in the right place? Check the registry under HKEY_CURRENT_USER\Software\Microsoft\Speech\RecoProfiles for info about user profiles and training data. I'm on Vista, control panel indicates that it is version 8.0. I see the training files updating.</p> <p>This MSDN reference has details of registry settings <a href="http://msdn.microsoft.com/en-us/library/ms717036" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms717036</a>(VS.85).aspx</p> http://stackoverflow.com/questions/596058/are-there-mvc-embedded-system-gui-examples/645009#645009 0 Answer by Conor OG for Are there MVC embedded system GUI examples? Conor OG 2009-03-13T23:50:29Z 2009-03-13T23:50:29Z <p>I could suggest the Qt Toolkit. But you don't give any mention of your platform capabilities.</p> http://stackoverflow.com/questions/642400/i2c-isr-and-interrupts/644995#644995 1 Answer by Conor OG for I2C ISR and Interrupts Conor OG 2009-03-13T23:40:32Z 2009-03-13T23:40:32Z <p>Most interrupts need to be acknowledged or cleared. You mention enabling/disabling, registering/unregistering and handling the interrupt. Just check that the interrupt is being acknowledged and/or cleared/reset. Often this involves writing the interrupt number or bit back to the interrupt pending register. Check the specific ARM manual or your RTOS manual.</p> http://stackoverflow.com/questions/338740/how-do-i-find-the-type-of-the-object-instance-of-the-caller-of-the-current-functi/643795#643795 0 Answer by Conor OG for How do I find the type of the object instance of the caller of the current function? Conor OG 2009-03-13T17:33:25Z 2009-03-13T17:33:25Z <p>Walk up the stack checking for base class - derived class relationship.</p> <pre><code> var type = new StackFrame(1).GetMethod().DeclaringType; foreach (var frame in new StackTrace(2).GetFrames()) if (type != frame.GetMethod().DeclaringType.BaseType) break; else type = frame.GetMethod().DeclaringType; return CreateLogWithName(type.FullName); </code></pre> <p>You may want to put in a check that the methods examined are constructors. But a scenario where the subclass is instantiating the superclass in a method other than it's constructor, may still want the current behaviour.</p> http://stackoverflow.com/questions/662439/what-are-some-refactoring-methods-to-reduce-size-of-compiled-code/662797#662797 Comment by Conor OG on What are some refactoring methods to reduce size of compiled code? Conor OG 2009-04-11T00:09:10Z 2009-04-11T00:09:10Z +1 The linker map file is the place to start. It will show you where the space is being used. http://stackoverflow.com/questions/651552/cannibal-classes/651578#651578 Comment by Conor OG on Cannibal Classes Conor OG 2009-03-22T11:48:27Z 2009-03-22T11:48:27Z This is the correct answer. The difference between value types and reference types, which is the difference between structs and classes. The default value problem is a consequence of this. http://stackoverflow.com/questions/626541/listen-for-icmp-packets-in-c/664749#664749 Comment by Conor OG on Listen for ICMP packets in C# Conor OG 2009-03-20T09:15:40Z 2009-03-20T09:15:40Z It's a vista issue. http://stackoverflow.com/questions/327678/how-to-add-words-to-an-already-loaded-grammar-using-system-speech-and-sapi-5-3/651246#651246 Comment by Conor OG on How to add words to an already loaded grammar using System.Speech and SAPI 5.3 Conor OG 2009-03-17T09:53:11Z 2009-03-17T09:53:11Z If that's an option maybe you don't even need the reference. You could just use the first grammar till it gets too big, then just load a second grammar, and use it till it reaches the limit, etc http://stackoverflow.com/questions/327678/how-to-add-words-to-an-already-loaded-grammar-using-system-speech-and-sapi-5-3/651246#651246 Comment by Conor OG on How to add words to an already loaded grammar using System.Speech and SAPI 5.3 Conor OG 2009-03-16T18:28:07Z 2009-03-16T18:28:07Z You <i>do</i> need to reload the <i>referenced</i> grammar, but not the main grammar. This should be a much smaller load/unload operation. If the differences per user are large, then the other option would be to have them all loaded, and then enable/disable them on the fly.