User Donn Felker - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T10:57:55Z http://stackoverflow.com/feeds/user/5210 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1437888/improve-android-audio-recording-quality/1438720#1438720 1 Answer by Donn Felker for Improve Android Audio Recording quality? Donn Felker 2009-09-17T12:56:26Z 2009-09-17T12:56:26Z <p>For recording and monitoring: You can use the sound recorder activity. Here's a snippet of code: </p> <pre><code>Intent recordIntent = new Intent( MediaStore.Audio.Media.RECORD_SOUND_ACTION); startActivityForResult(recordIntent, REQUEST_CODE_RECORD); </code></pre> <p>For a perfect working example of how to record audio which includes an input monitor, download the open source Ringdroid project: <a href="http://code.google.com/p/ringdroid/" rel="nofollow">http://code.google.com/p/ringdroid/</a></p> <p>Look at the screenshots and you'll see the monitor. </p> <p>For making the audio higher quality, you'd need a better mic. The built in mic can only capture so much (which is not that good). Again, look at the ringdroid project, glean some info from there. At that point you could implement some normalization and amplification routines to improve the sound. </p> http://stackoverflow.com/questions/1425502/how-to-display-video-in-the-android-emulator-from-remote-url/1438659#1438659 0 Answer by Donn Felker for How to display Video in the Android Emulator from Remote URL? Donn Felker 2009-09-17T12:47:30Z 2009-09-17T12:47:30Z <p>You should also use the <a href="http://developer.android.com/reference/android/media/MediaPlayer.html#prepareAsync%28%29" rel="nofollow">prepareAsync</a>() method instead of prepare(). Using prepare() is a blocking call (UI gets locked), while prepareAsync is not a blocking call. </p> http://stackoverflow.com/questions/980184/how-do-i-get-intellisense-working-with-spark-and-fluenthtml/1025291#1025291 1 Answer by Donn Felker for How do I get intellisense working with Spark and FluentHtml? Donn Felker 2009-06-22T02:31:08Z 2009-06-22T02:31:08Z <p>The intellisense is a bit flakey at times. I'm assuming you have the intellisense VS package installed? If not, install it and give it a go. </p> <p>Are you running ReSharper? If so, while in the spark view, go into ReSharpers options and set the code completion to the "Visual Studio" option. ReSharper takes over the native C# language instellisense. Setting the setting back to Visual Studio fixes this. Its a bit of a pain, but right now there is a small resharper add in that is being developed to detect spark views and switch it for you automatically. </p> http://stackoverflow.com/questions/882575/bare-minimum-for-an-independent-developer/882754#882754 0 Answer by Donn Felker for Bare minimum for an independent developer Donn Felker 2009-05-19T13:28:10Z 2009-05-19T13:28:10Z <p>If you're going to have multiple clients at the same time (which is definitely a possibility) you should consider running your dev environment from a virtual machine. I personally use Virtual PC or VM Ware (depends on the client). </p> <p>A couple benefits of running virtual: </p> <ul> <li>If I have to join the domain I can have a Virtual Machine join, not my host (this will be the case at a lot of clients). Having to join, un-join the host machine is a real pain. Having the virtual machine joined is great. </li> <li>I can have a pre-setup config for each client. </li> <li>I can reload my entire host machine with a new OS and start working immediately (this saves you a lot of down time)</li> </ul> <p>Tips: Learn about differencing disks and snapshots for VM's. </p> <p>I ran virtual during the most recent MarketWatch.com rebuild and I upgraded my host from Xp, to Vista, to Win7 Beta to RC and never spent any extra time updating software in order to start working again. The only thing I had to do was install Virtual PC after each OS refresh and I was back to working at the client as soon as I started my virtual machine. </p> <p>To do this you'll want a beefy laptop though so it can handle the laod. So be sure to get a nice lappy. :) </p> http://stackoverflow.com/questions/666015/problem-with-large-solutions-and-service-factory/822382#822382 0 Answer by Donn Felker for Problem with large solutions and service factory Donn Felker 2009-05-04T22:23:06Z 2009-05-04T22:23:06Z <p>I agree with John Saunders. Keep them small. Also, keep a Continuous Integration env running to keep track of your mess-ups during development. </p> http://stackoverflow.com/questions/690055/rest-wcf-and-queues/822365#822365 0 Answer by Donn Felker for REST, WCF and Queues Donn Felker 2009-05-04T22:18:14Z 2009-05-04T22:18:14Z <p>You could use the MsmqBinding and utilize the method implemented by eedsi9n. However, from what I'm gathering from this post is that you're looking for something along the lines of a pub/sub type of architecture. </p> <p>This can be implemented with the WSDualHttpBinding which allows subscribers to subscribe to events. The publisher will then notify the user when the action is completed. </p> <p>Therefore you could have Msmq running behind the scenes. The client subscribes to the certain events, then perhaps it publishes a message that needs to be processed. THe client sits there and does work (because its all async) and when the publisher is done working on th message it can publish an event (The event your client subscribed to) letting you know that its done. That way you don't have to implement a polling strategy. </p> <p>There are pre-canned solutions for this as well. Such as NService Bus, Mass Transit, and Rhino Bus. </p> http://stackoverflow.com/questions/276184/wcf-and-python/822320#822320 0 Answer by Donn Felker for WCF and Python Donn Felker 2009-05-04T22:07:26Z 2009-05-04T22:07:26Z <p>I do not know of any direct examples, but if the WCF service is REST enabled you could access it through POX (Plain Old XML) via the REST methods/etc (if the service has any). If you are in control of the service you could expose endpoints via REST as well. </p> http://stackoverflow.com/questions/803294/how-to-transfer-gargantuan-file-from-ms-word-add-in-vba-to-web-server/822305#822305 0 Answer by Donn Felker for How to Transfer Gargantuan File from MS Word Add-In (VBA) to Web Server? Donn Felker 2009-05-04T22:02:12Z 2009-05-04T22:02:12Z <p>I've transmitted large files like this using MTOM encoding. </p> <p>More info on MTOM here: <a href="http://msdn.microsoft.com/en-us/library/aa395209.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa395209.aspx</a></p> <p>You can download an MTOM sample here: <a href="http://msdn.microsoft.com/en-us/library/ms751514.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms751514.aspx</a></p> <p>Check out Bustamante's book on WCF if you want more on MTOM. </p> <p>As for the VBA call, I'm not an expert in that area therefore I don't have any info in regards to it. </p> http://stackoverflow.com/questions/816464/net-mvc-slow-site/821166#821166 1 Answer by Donn Felker for .NET MVC Slow Site Donn Felker 2009-05-04T17:52:50Z 2009-05-04T17:52:50Z <p>Few things to try: </p> <ul> <li>Try taking a look with FileMon/ProcessMonitor and see if there is a ton of disk activity. </li> <li>If the above is not an issue, install an instance of Dot Trace by Jet Brains. Profile the app and see if there is some memory or performance issue that is not apparent on your local box. </li> </ul> http://stackoverflow.com/questions/304616/another-security-exception-on-godaddy-after-login-attempt/821135#821135 1 Answer by Donn Felker for Another Security Exception on GoDaddy after Login attempt Donn Felker 2009-05-04T17:46:15Z 2009-05-04T17:46:15Z <p>If you're using any third party components you might want to check to see if the components are performing some type of security action. A year or so ago I ran into an issue with GoDaddy and the SubSonic ORM, it had a problem with a particular line of code that was requesting a level of security. I cracked open the code in reflector, took a look , verified it. </p> <p>This can be a problem. If the component <em>is</em> causing you the pain try downloading the code and removing the suspect code, recompiling and run with that. That is exactly what I had to do w/ the SubSonic code a year or two back. </p> http://stackoverflow.com/questions/451424/silverlight-crossdomain/554670#554670 1 Answer by Donn Felker for Silverlight Crossdomain Donn Felker 2009-02-16T21:40:57Z 2009-02-16T21:40:57Z <p>I've had this same problem a couple of times. In the past I've solved this by using the Web App as start up, but it looks like you've already done that. My post on the subject: <a href="http://blog.donnfelker.com/post/Silverlight-Cross-Domain-Issue.aspx" rel="nofollow">http://blog.donnfelker.com/post/Silverlight-Cross-Domain-Issue.aspx</a></p> http://stackoverflow.com/questions/277623/whats-the-most-portable-way-to-make-a-silverlight-regular-net-rest-client/314685#314685 2 Answer by Donn Felker for What's the most portable way to make a Silverlight & Regular .NET REST client Donn Felker 2008-11-24T16:31:59Z 2008-11-24T16:31:59Z <p>If this is a simple Xml REST service, why not use the WebClient in Silverlight to capture the XML using Linq to XML? I know you said its messy, but it all depends on how you look at it. if you change your service interface at anytime you're going to have to update your code in multiple places. Thats just the way it is. </p> <p>So to do this, you will need to capture the data in an async fashion from the WebClient and then parse it with LINQ to XML. </p> <p>Time Heuer has a good example on his site: <a href="http://timheuer.com/blog/archive/2008/03/14/calling-web-services-with-silverlight-2.aspx" rel="nofollow">http://timheuer.com/blog/archive/2008/03/14/calling-web-services-with-silverlight-2.aspx</a></p> <p>Essentially, it looks like this: </p> <pre><code>WebClient rest = new WebClient(); rest.DownloadStringCompleted += new DownloadStringCompletedEventHandler(rest_DownloadStringCompleted); rest.DownloadStringAsync(new Uri("http://example.org/current-status/xml")); </code></pre> <p>Then in your "rest_DownloadStringCompleted" you'd parse the string as XML. Like so: </p> <pre><code>string data = e.Result; string url = string.Empty; XDocument doc = XDocument.Parse(e.Result); var myResults = from results in doc.Descendants("myXmlElement") ... blah blah blah </code></pre> <p>I've done the same thing with home grown REST Services from WCF and Silverlight and it worked great.</p> http://stackoverflow.com/questions/311930/resharper-update-namespace-on-all-files-in-project/314595#314595 1 Answer by Donn Felker for Resharper update namespace on all files in project Donn Felker 2008-11-24T16:06:01Z 2008-11-24T16:06:01Z <p>AFAIK, there is no way to do this OOB. </p> <p>But, you can update them fairly quickly through the Class View window. Open class view window, click on the namespace you want to rename, hit CTRL + R + R and then rename. </p> <p><a href="http://rickardnilsson.net/post/2008/08/26/ReSharper-User-tip-2-Refactor-rename-namespace.aspx" rel="nofollow">This blog post outlines it very well</a></p> http://stackoverflow.com/questions/220846/asp-net-and-iis6-trapping-all-application-errors/221585#221585 0 Answer by Donn Felker for ASP.NET and IIS6: trapping ALL application errors Donn Felker 2008-10-21T11:57:04Z 2008-10-21T11:57:04Z <p>You an also capture the error by utilizing the Application_OnError event in the Global.asax file. Then, you can do as Ben R stated above. Capture the error via the Server.GetLastError() routine. </p> http://stackoverflow.com/questions/213259/manipulating-the-http-header-in-wcf-before-http-authentication-in-httpbinding/221574#221574 -1 Answer by Donn Felker for Manipulating the HTTP header in WCF before HTTP authentication in HttpBinding Donn Felker 2008-10-21T11:53:41Z 2008-10-21T11:53:41Z <p>I would type this out, but its a lot. So here is a good reference. </p> <p>Avner Kashtan's blog post outlines what I "think" you're looking for. Hopefully this helps!</p> <p><a href="http://weblogs.asp.net/avnerk/archive/2006/04/26/Adding-custom-headers-to-every-WCF-call-_2D00_-a-solution.aspx" rel="nofollow">Adding Custom Headers To Every WCF Call</a></p> http://stackoverflow.com/questions/75463/hierarchical-group-permissions-theory-resources/75571#75571 0 Answer by Donn Felker for Hierarchical Group Permissions Theory/Resources? Donn Felker 2008-09-16T18:39:53Z 2008-09-16T18:39:53Z <p>I've done exactly this before and its no trivial implementation. You're going to want to look at the SecurityPermission class. </p> <p>[<a href="http://msdn.microsoft.com/en-us/library/system.security.permissions.securitypermission.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.security.permissions.securitypermission.aspx</a>][1]</p> <p>I have done this before by utilizing XML (which I'm not sure I'd do again) and storing that XML as permission list inside of SQL server in an XML column through a CLR stored proc. The XML would have an element called a "permission" and then the permission would actually be a ENUM inside of the code. Each permission was a new implementation of the SecurityPermission class (linked above) Users were tied to groups which were defined in SQL server and then as the user was added/removed to groups, the XML doc would get updated to reflect which groups they were apart of. </p> <p>As soon as the user logged in, the users credentials would be loaded into the application store (session) and then would be accessed accordingly. When authorization needed to take place the XMl in the application store would be pulled down loaded into the SecurityPermission via the "FromXML" method. At that point I would use the following methods to determine if the user had permission: </p> <ul> <li>Demand</li> <li>Intersect</li> <li>Union</li> <li>IsUnrestricted</li> <li>IsSubSetOf</li> </ul> <p>etc., etc, etc. </p> <p>At that point after performing the Demand I was able to determine if the caller had access according to how I implemented my security routines in the SecurityPermissions. </p> <p>Again, this is leaving out a TON of detail, but this should get you going down the right path. </p> <p>Take a look at this name space as well: [2]: <a href="http://msdn.microsoft.com/en-us/library/system.security.permissions.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.security.permissions.aspx</a> "System.Security.Permissions"</p> http://stackoverflow.com/questions/75282/selectedindexchanged-event-handler-getting-old-index/75383#75383 0 Answer by Donn Felker for SelectedIndexChanged event handler getting old index Donn Felker 2008-09-16T18:21:31Z 2008-09-16T18:21:31Z <p>Is it possible that you have items copied throughout your datasource for the drop down list? </p> http://stackoverflow.com/questions/1404555/android-view-without-xml Comment by Donn Felker on Android view without xml Donn Felker 2009-09-17T12:51:07Z 2009-09-17T12:51:07Z Totally agree, lets see some code and then we can help.