User damageboy - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T20:51:55Z http://stackoverflow.com/feeds/user/9172 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1638577/storing-sha1-signature-as-primary-key-in-postgres-sql 0 Storing SHA1 Signature as Primary Key in Postgres SQL damageboy 2009-10-28T16:52:35Z 2009-10-28T18:29:56Z <p>Hi, I'm writing a simple content management system. I need to store SHA1 hash values that are computed externally as the primary key for my biggest table.</p> <p>I can obviously use a sequence as a primary key and index the SHA1 hex-string for look-up... However, I'm looking for a more elegant solution, where I will simply use the 20-byte SHA1 computed values as the given key to the rows I am about to insert/delete/update in the database table. Is there an efficient storage type that I can use to store and later on use the SHA1 keys as primary keys?</p> <p>I will obviously need postgres to support using 20-byte values as keys to get this done.</p> <p>Anyone with any ideas?</p> http://stackoverflow.com/questions/731763/should-c-methods-that-can-be-static-be-static/755241#755241 1 Answer by damageboy for Should C# methods that *can* be static be static? damageboy 2009-04-16T08:39:15Z 2009-04-16T08:39:15Z <p>I would definitely turn anything I can into static for a different reason:</p> <p>Static functions, when JIT'd, are called without a "this" parameter. That means, for example, that a 3 parameter non-static function (member method) gets pushed with 4 params on the stack.</p> <p>The same function compiled as a static function would get called with 3 parameters. This can free up registers for the JIT and conserve stack space...</p> http://stackoverflow.com/questions/403088/practical-use-of-expression-trees/403313#403313 1 Answer by damageboy for Practical use of expression trees damageboy 2008-12-31T16:06:08Z 2008-12-31T16:06:08Z <p>Originally by <a href="http://blogs.msdn.com/jomo_fisher/archive/2007/03/28/fast-switching-with-linq.aspx" rel="nofollow">Jomo Fisher</a>, <a href="http://blog.codebeside.org/archive/2008/08/28/staticstringdictionary-fast-switching-with-linq-revisited.aspx" rel="nofollow">Gustavo Guerra</a> published a revised version of the <a href="http://blog.codebeside.org/archive/2008/08/28/staticstringdictionary-fast-switching-with-linq-revisited.aspx" rel="nofollow">static string dictionary</a>.</p> <p>Where through Expression trees, a dynamic expression that provides a really (read: ridiculously) Dictionary.</p> <p>The implementation creates a dynamic decision tree that select the corrent value according to the length of the input string, then by the first letter, then the second letter and so on.</p> <p>This ultimately runs much faster than the equivalent Dictionary.</p> http://stackoverflow.com/questions/383848/f-open-source-projects/403290#403290 1 Answer by damageboy for F# open source projects damageboy 2008-12-31T15:57:56Z 2008-12-31T15:57:56Z <p>Though I'm not sure about the licensing... Microsoft's TrueSkill system (which rates players in XBox360 live gaming) has published some source code.</p> <p><a href="http://blogs.technet.com/apg/archive/2008/04/05/trueskill-through-time.aspx" rel="nofollow">http://blogs.technet.com/apg/archive/2008/04/05/trueskill-through-time.aspx</a></p> http://stackoverflow.com/questions/241594/what-are-your-favorite-open-source-or-free-library-for-net-charts-and-gauges/324285#324285 0 Answer by damageboy for What are your favorite open source or free library for .NET Charts and Gauges? damageboy 2008-11-27T17:19:15Z 2008-11-27T17:19:15Z <p>ZedGraph definitely.</p> <p>I use charts for large data-sets, 1,000,000 data points and upwards. ZedGraph is succinct, performant and succeeds in rendering these beast-like-graphs much faster than lots of commercial products I've tried like: Nevron SyncFusion DevExpress ChartFX Dundas (hence also Microsoft Charts)</p> <p>ZedGraph has some specific high performance features that are un-paralleled like <a href="http://zedgraph.sourceforge.net/documentation/html/T_ZedGraph_FilteredPointList.htm" rel="nofollow">FilterPointList</a> which dynamically snap-shots your data when you are zoomed out, and doesn't use snapshots when you are zoomed in.</p> http://stackoverflow.com/questions/277623/whats-the-most-portable-way-to-make-a-silverlight-regular-net-rest-client 4 What's the most portable way to make a Silverlight & Regular .NET REST client damageboy 2008-11-10T11:06:02Z 2008-11-24T16:31:59Z <p>Hi, I'm trying to get a Server application to expose some status information using WCF. In particular I'm after using WCF services with RESTful "API". I'm hitting somewhat of a wall when it comes to consuming the REST api from a silverlight app/page that I want to have as an additional type of client...</p> <p>So far I've been successful in defining a status interface:</p> <pre><code>public static class StatusUriTemplates { public const string Status = "/current-status"; public const string StatusJson = "/current-status/json"; public const string StatusXml = "/current-status/xml"; } [ServiceContract] public interface IStatusService { [OperationContract] [WebGet(ResponseFormat = WebMessageFormat.Json, UriTemplate = StatusUriTemplates.StatusJson)] StatusResultSet GetProgressAsJson(); [OperationContract] [WebGet(ResponseFormat = WebMessageFormat.Xml, UriTemplate = StatusUriTemplates.StatusXml)] StatusResultSet GetProgressAsXml(); [OperationContract] [WebGet(UriTemplate = StatusUriTemplates.Status)] StatusResultSet GetProgress(); } </code></pre> <p>Implementing it in the server:</p> <pre><code> [ServiceBehavior(InstanceContextMode = InstanceContextMode.Single)] public class ServerStatusService : IStatusService { public StatusResultSet GetProgressAsJson() { return GetProgress(); } public StatusResultSet GetProgressAsXml() { return GetProgress(); } public StatusResultSet GetProgress() { return StatusResultSet.Empty; } } </code></pre> <p>Exposing it from my code at runtime:</p> <pre><code> var service = new ServerStatusService(); var binding = new WebHttpBinding(); var behavior = new WebHttpBehavior(); var host = new WebServiceHost(service, new Uri("http://localhost:8000/server")); host.AddServiceEndpoint(typeof(IStatusService), binding, "status"); host.Open(); </code></pre> <p>I've even been successful with consuming the service from a .NET console/winfoems/WPF application using something along the line of this:</p> <pre><code> var cf = new WebChannelFactory&lt;IStatusService&gt;(new Uri("http://localhost:8000/server/status")); var ss = cf.CreateChannel(); Console.WriteLine(ss.GetProgress().TimeStamp); </code></pre> <p>The "wall" I'm hitting is that there is NO WebChannelFactory for SliverLight.</p> <p>Period.</p> <p>This means that when it comes to silverlight code, my options are:</p> <ul> <li>Write ugly code using WebClient, which ultimately means I will have to update two sets of code whenever I have a change to my API </li> <li>Use SOAP/WS for the WebService and keep updating the service reference from Visual Studio</li> </ul> <p>Is there a way to keep the "clean" implementation with WebChannelFactory in SilverLight? Perhaps a public domain / open source WebChannelFactory for SilverLight?</p> <p>Any help with this will be greatly appreciated!</p> http://stackoverflow.com/questions/294092/timers-ui-frameworks-and-bad-coupling-any-ideas 1 Timers, UI Frameworks and bad coupling - Any Ideas? damageboy 2008-11-16T16:52:18Z 2008-11-17T08:46:54Z <p>Hi, I've just written a small XBox 360 Wireless Controller managed interface that basically wraps around the low-lever <a href="http://slimdx.mdxinfo.com/wiki/index.php?title=Main_Page" rel="nofollow">SlimDX</a> wrapper library and provides a easy, managed API for the XBOX 360 controller.</p> <p>Internally, the class polls the gamepad every N ms, and shoots events as it detects changes in the underlying state of the controller.</p> <p>I'm experiencing some what dead end with timers that is basiclly forcing to choose between the lesser of two evils:</p> <ul> <li><p>Either make my XBox360GamePad class UI framework specific (i.e. support WPF/WinForms will be hard-coded in the class, and the class has to reference these frameworks...)</p></li> <li><p>Make the class completely framework agnostic, but force the users to sprinkle their code with Dispatcher.Invoke / Invoke() calls to be able to update UI according to the events generated.</p></li> </ul> <p>If I choose the latter option (of making the code UI agnostic), then I basically use the "generic" System.Timers.Timer or any timer that has no UI dependency. In that case I end up having events generated/called from a thread that is incapable of directly updating the UI, i.e. in WPF, I would have to issue every update originated form the 360 controller class through the (ugly) use of Dispatcher.Invoke.</p> <p>On the other hand, If I use DispatcherTimer inside the XBox 360 Controller class I have a working component that can update the UI directly with no fuss, but now my whole controller class is coupled to WPF, and it can't be used without being dependent on WPF (i.e. in a pure console app)</p> <p>What I'm kind of looking is a some sort solution that would allow me to be both framework agnostic and also update UI without having to resort to all kinds of Dispatcher.Invoke() techniques... If for example there was a shared base class for all timers, I could somehow inject the timer as a dependency according to the relevant scenario.. Has anyone ever dealt successfully with this sort of problem?</p> http://stackoverflow.com/questions/294092/timers-ui-frameworks-and-bad-coupling-any-ideas/295111#295111 0 Answer by damageboy for Timers, UI Frameworks and bad coupling - Any Ideas? damageboy 2008-11-17T08:46:54Z 2008-11-17T08:46:54Z <p>@MattValerio: I know about CCR, but this doesn't really fit the bill here since I plan to put the control on googlecode and the CCR isn't part of the framework or opensource.</p> http://stackoverflow.com/questions/294092/timers-ui-frameworks-and-bad-coupling-any-ideas/294233#294233 0 Answer by damageboy for Timers, UI Frameworks and bad coupling - Any Ideas? damageboy 2008-11-16T19:03:32Z 2008-11-16T19:03:32Z <p>So... It appears the information / code @ <a href="http://geekswithblogs.net/robp/archive/2008/03/28/why-doesnt-dispatcher-implement-isynchronizeinvoke.aspx" rel="nofollow">http://geekswithblogs.net/robp/archive/2008/03/28/why-doesnt-dispatcher-implement-isynchronizeinvoke.aspx</a> does indeed provide a working solution. The code is completely independent of any UI, and is instead only dependent on ISynchronizeInvoke for proper UI / Thread integration.</p> <p>Having just used this, I'm still somewhat reluctant to leave it as is.</p> <p>The gist of my problem is that every event invocation function looks something like this:</p> <pre><code>protected virtual void OnLeftThumbStickMove(ThumbStickEventArgs e) { if (LeftThumbStickMove == null) return; if (_syncObj == null || !_syncObj.InvokeRequired) LeftThumbStickMove(this, e); else _syncObj.BeginInvoke(LeftThumbStickMove, new object[] { this, e }); } </code></pre> <p>It's very annoying and confusing to write code this way, it looks, to me, like way too much fuss around just getting the damn thing to work. Basically I don't like having to wrap every event call with so much logic(!)</p> <p>Therefore, I've opted for a different / additional strategy: Basically, the constructor for the XBox360GamePad class now looks like this:</p> <pre><code>public XBox360GamePad(UserIndex controllerIndex, Func&lt;int, Action, object&gt; timerSetupAction) { CurrentController = new Controller(controllerIndex); _timerState = timerSetupAction(10, UpdateState); } </code></pre> <p>As you can see, it accepts a Func that is responsible for creating the timer and hooking it up.</p> <p>This means that by default, INSIDE the 360 Controller class I don't need to use any UI specific timers... In essence, my "default" constructor for the controller looks like this:</p> <pre><code>public XBox360GamePad(UserIndex controllerIndex) : this(controllerIndex, (i,f) =&gt; new Timer(delegate { f(); }, null, i, i)) {} </code></pre> <p>I use a lambda function to code the dependency of the controller class on a timer "service".</p> <p>From WPF, I use the more general constructor to ensure that the control will be using the DispatcherTimer like this:</p> <pre><code> _gamePad = new XBox360GamePad(UserIndex.One, (i, f) =&gt; { var t = new DispatcherTimer(DispatcherPriority.Render) {Interval = new TimeSpan(0, 0, 0, 0, i) }; t.Tick += delegate { f(); }; t.Start(); return t; }); </code></pre> <p>This way, I basically leave it up to the "user" to provide the timer implementation for the control, where the default implementation doesn't have to use any WPF or WinForms specific code.</p> <p>I personally find this more useful / nicer design than using ISynchronizeInvoke.</p> <p>I would love to hear feedback from people that like this / want to improve this / are disgusted by this etc.</p> http://stackoverflow.com/questions/294092/timers-ui-frameworks-and-bad-coupling-any-ideas/294133#294133 0 Answer by damageboy for Timers, UI Frameworks and bad coupling - Any Ideas? damageboy 2008-11-16T17:34:58Z 2008-11-16T17:34:58Z <p>The 360 controller can only report it's current state. There is no other means to get the state without polling. Using System.Threading.Timer or opening up a new Thread that does Thread.Sleep() is really the same in my view, both of them fulfill the functionality of a UI-less timer class.</p> <p>Thanks for mentioning ISynchronizeInvoke, I've googled some more and found someone that shares my pain and might even have a solution: <a href="http://geekswithblogs.net/robp/archive/2008/03/28/why-doesnt-dispatcher-implement-isynchronizeinvoke.aspx" rel="nofollow">http://geekswithblogs.net/robp/archive/2008/03/28/why-doesnt-dispatcher-implement-isynchronizeinvoke.aspx</a></p> <p>I'll try his code and keep this thread posted... Thanks for the tip!</p> http://stackoverflow.com/questions/277809/call-c-methods-from-c-without-using-com/277826#277826 2 Answer by damageboy for Call C# methods from C++ without using COM damageboy 2008-11-10T13:14:04Z 2008-11-10T13:14:04Z <p>There is a somewhat "undocumented" way of exporting C style API from a .NET class / method.</p> <p>This ultimately leads to a situation where a .NET dll has exported APIs that can be called from C/C++ or anything that can consume .DLLs for that matter.</p> <p>If you are into "reading" (beh ;) you can get a book called: <a href="http://www.microsoft.com/mspress/books/5771.aspx" rel="nofollow">Inside Microsoft® .NET IL Assembler</a> where you'll find this technique in chapter 15: "Managed Methods as Unmanaged Exports"</p> <p>There's also a nice example project on code-project you can use as a starting point for 32-bit environments: <a href="http://www.codeproject.com/KB/dotnet/DllExport.aspx" rel="nofollow">http://www.codeproject.com/KB/dotnet/DllExport.aspx</a></p> http://stackoverflow.com/questions/263229/datetime-utcnow-ticks-sometimes-jumps-a-remarkable-amount/265041#265041 1 Answer by damageboy for DateTime.UtcNow.Ticks sometimes jumps a remarkable amount damageboy 2008-11-05T12:46:40Z 2008-11-05T12:46:40Z <p>Ehm...</p> <p>How can you measure time this way when you can't tell for sure that you are not calling some blocking system call during this time (Like, potentially Console.WriteLine)?</p> <p>In order to have a "working test" you would have to at least make sure:</p> <ul> <li>NOTHING else is running on your machine</li> <li>The process/thread priority is set to High or something like that</li> <li>Call NO system call... Do only computationl tasks</li> <li>Set thread affinity to a specific CPU so you don't get switched between CPUs</li> </ul> <p>Even if you would do that, the OS would from time to time (15ms on a Windows Dual-Core desktop OS for example) preempt your thread.... And you could still definitely see that sort of "jump" in UTC Time-Stamp.</p> <p>Just going from Userspace to Kernelspace (during a pre-emption / system call) and back, without doing any substantial kernel work, would take ~1000 CPU cycles...</p> <p>If you process is put into a wait state (by calling some blocking IO) it could even be MUCH MUCH worse...</p> <p>So I really don't get your "test". IMO this is perfectly normal.</p> http://stackoverflow.com/questions/61559/is-net-mono-or-java-the-better-choice-for-cross-platform-development/264997#264997 1 Answer by damageboy for Is .Net/Mono or Java the better choice for cross-platform development? damageboy 2008-11-05T12:27:29Z 2008-11-05T12:27:29Z <p>While mono has it's <a href="http://stackoverflow.com/questions/18450/is-mono-ready-for-prime-time#264959">share of problems</a></p> <p>I think it has a better cross-platform compatibility story esp. IF you have reliance on native platform invocation.</p> <p>There are not enough words on stack-overflow to stress how much smoother it is to get something native called and executed in .NET/Mono on (at least in my experience 3...) multiple platforms vs. the equivalent Java effort...</p> http://stackoverflow.com/questions/204709/is-mono-robust-enough-for-serious-enterprise-development/264990#264990 1 Answer by damageboy for Is Mono robust enough for serious enterprise development? damageboy 2008-11-05T12:24:12Z 2008-11-05T12:24:12Z <p>I think it really depends on what you call raedy for enterprise as this is a very overloaded term.</p> <p>See my post on a similar questions: <a href="http://stackoverflow.com/questions/18450/is-mono-ready-for-prime-time#264959">http://stackoverflow.com/questions/18450/is-mono-ready-for-prime-time#264959</a></p> http://stackoverflow.com/questions/18450/is-mono-ready-for-prime-time/264959#264959 8 Answer by damageboy for Is Mono ready for prime time? damageboy 2008-11-05T12:10:50Z 2008-11-05T12:21:17Z <p>I personally use Mono in a prime-time env. I run mono servers dealing with giga-bytes of udp/tcp data processing related tasks and couldn't be happier.</p> <p>There are peculiarities, and one of the most annoying things is that you can't just "build" your msbuild files due to Mono's current state:</p> <ul> <li>MonoDevelop (the IDE) has some partial msbuild support, but will basically bork on any "REAL" build conf beyond a simple hello-world (custom build tasks, dynamic "properties" like $(SolutionDir), real configuration to name a few dead-ends)</li> <li>xbuild which <em>SHOULD have been</em> the mono-supplied-msbuild-fully-compatible-build-system is even more horrible, so building from the command line is actually a worse experience than using the GUI, which is a very "unorthodox" state of the union for Linux environments... </li> </ul> <p>Once/During getting your stuff actually BUILT, you might see some wildernesses even for code that SHOULD be supported like:</p> <ul> <li>the compiler getting borked on certain constructs</li> <li>and certain more advanced/new .NET classes throwing un-expected crap at you (XLinq anyone?)</li> <li>some immature runtime "features" (3GB heap limit ON x64... WTF!) </li> </ul> <p><em>but heaving said that generally speaking things start working very quickly, and solutions/workarounds are abundant</em>.</p> <p><strong>Once you've gone over those initial hurdles, my experience is that mono ROCKS, and keeps getting better with every iteration</strong>.</p> <p>I've had servers running with mono, processing 300GB of data per day, with tons of p/invokes and generally speaking doing LOTS of work and staying UP for 5-6 months, even with the "bleeding edge" mono.</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/256396/what-is-the-correct-build-system-to-use-with-mono-and-multiple-projects-with-depe/264971#264971 0 Answer by damageboy for What is the correct build system to use with Mono and multiple projects with dependencies, excluding MonoDevelop? damageboy 2008-11-05T12:17:20Z 2008-11-05T12:17:20Z <p>xBuild used to be crap until 5 months ago.</p> <p>I don't know if that changed, but judging from the fact the MonoDevelop still won't use it, I'd say it's still the same.</p> <p>I highly doubt any official mono build contains a functional xbuild.</p> <p>mdtool IMO is a very bad solution, esp. for people like me building mono apps on remote servers that don't and WILL NOT have the GUI frameworks required to get mdtool installed.</p> <p>What I did find to be a working solution is to let MonoDevelop generate automake scripts for you and continue to hack them by hand.</p> <p>It actually wasn't that bad as it may sound and I even made some mono app to sync up the items from the .csproj to the Makefile.am files.</p> http://stackoverflow.com/questions/54978/adopting-standard-libraries/65210#65210 0 Answer by damageboy for Adopting standard libraries damageboy 2008-09-15T18:02:17Z 2008-09-15T18:02:17Z <p>I recommend NDesk.Options. It makes use of Lambda functions / .NET 3.5 and it's very nice:</p> <p><a href="http://www.ndesk.org/Options" rel="nofollow">http://www.ndesk.org/Options</a> What you basically do is:</p> <pre><code>var p = new OptionSet () { { "file=", v =&gt; data = v },&lt;br&gt; { "v|verbose", v =&gt; { ++verbose } },&lt;br&gt; { "h|?|help", v =&gt; help = v != null },&lt;br&gt; }; List&lt;string&gt; extra = p.Parse (args); </code></pre> <p>And you're done.</p> <p>It support key/value pairs with custom separators, lists, single value options and toggle options</p> <p>You WILL NOT regret using it.</p> http://stackoverflow.com/questions/277623/whats-the-most-portable-way-to-make-a-silverlight-regular-net-rest-client/314685#314685 Comment by damageboy on What's the most portable way to make a Silverlight & Regular .NET REST client damageboy 2008-11-24T21:20:11Z 2008-11-24T21:20:11Z I don't like this sort of solution because it created a dependency between the client and server that is not expressed in code. If I were to refactor / change the way my service works I would basically have to make sure that changes were made in the server + client. The proxy eliminates that need. http://stackoverflow.com/questions/277623/whats-the-most-portable-way-to-make-a-silverlight-regular-net-rest-client/283260#283260 Comment by damageboy on What's the most portable way to make a Silverlight & Regular .NET REST client damageboy 2008-11-17T09:02:31Z 2008-11-17T09:02:31Z I think I will follow your proposition on re-implementing the factory class. I think I'll use something like LinFu to do all the heavy lifting. I just need to see if LinFu works on Silverlight