User kokos - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T03:42:58Z http://stackoverflow.com/feeds/user/1065 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/407910/is-there-an-xslt-buddy-available-somewhere 13 Is there an XSLT buddy available somewhere? kokos 2009-01-02T20:16:04Z 2009-12-03T11:13:08Z <p>I think a lot of people know about tools like RegexBuddy. Is there something similar for XSLT?</p> http://stackoverflow.com/questions/340480/any-good-f-tutorial-book-blog-site-online 14 Any good F# tutorial/book/blog/site online? kokos 2008-12-04T12:52:58Z 2009-11-10T19:36:32Z <p>Any recommendations?</p> http://stackoverflow.com/questions/339923/how-to-set-cellpadding-cellspacing-in-css 5 How to set cellpadding & cellspacing in CSS? kokos 2008-12-04T08:45:47Z 2009-08-24T15:17:36Z <p>How can I control cellpadding and cellspacing in a CSS stylesheet to obtain the same effect as when putting the attributes on the table tag?</p> http://stackoverflow.com/questions/854716/any-ideas-on-how-to-write-a-static-analysis-rule-fxcop-to-ensure-that-event-del/992838#992838 0 Answer by kokos for Any ideas on how to write a static analysis rule (FXCop) to ensure that event delegates are removed kokos 2009-06-14T13:27:54Z 2009-06-14T13:27:54Z <p>Can you force a rule that all event subscriptions should be handled through WeakReferences? I'm thinking this should be easier to implement than having to analyze the actual flow of your program.</p> http://stackoverflow.com/questions/832299/vs-team-tester-failed-to-run-dynamic-web-test/832309#832309 1 Answer by kokos for VS Team Tester failed to run dynamic web test kokos 2009-05-06T23:42:06Z 2009-05-06T23:42:06Z <p>Is the csv file an embedded resource or a content file? Is it deployed in the same (relative) location on the build server as on the local machine?</p> <p>Did you do everything that's mentioned in the walkthrough at <a href="http://msdn.microsoft.com/en-us/library/bb385833.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb385833.aspx</a>?</p> http://stackoverflow.com/questions/339930/any-good-xslt-tutorial-book-blog-site-online 10 Any good XSLT tutorial/book/blog/site online? kokos 2008-12-04T08:49:04Z 2009-02-04T12:33:09Z <p>Any recommendations?</p> http://stackoverflow.com/questions/341872/html-sanitizer-for-net/341893#341893 3 Answer by kokos for HTML Sanitizer for .NET kokos 2008-12-04T20:13:49Z 2008-12-04T20:13:49Z <p><a href="http://blog.stackoverflow.com/2008/06/safe-html-and-xss/" rel="nofollow">http://blog.stackoverflow.com/2008/06/safe-html-and-xss/</a></p> http://stackoverflow.com/questions/341813/would-little-man-computer-programming-be-a-good-interview-project/341859#341859 0 Answer by kokos for Would Little Man Computer Programming be a good Interview Project? kokos 2008-12-04T20:03:34Z 2008-12-04T20:03:34Z <p>It doesn't seem very hard, but then again I like Brainfuck. The problem this kind of problem has is that you can only give it to someone who is interviewing for a low-level assembly programming kind of position, other people might find it bizzare if they are interviewing for say a ASP.NET developer job and you ask them about this kind of stuff. So it's a matter of targetting the geek personality, which you probably want, but you also need to look for some other sings that the person will be a valuable member of your team, and capable of doing the actual work that they'll be required to do.</p> http://stackoverflow.com/questions/340924/interesting-uses-of-m 0 Interesting uses of M? kokos 2008-12-04T15:13:52Z 2008-12-04T15:15:37Z <p>I know M is a new language from Microsoft that's targeted as a modeling solution but I'm still a bit fuzzy on usage / rationale / advantages. That's why I'm looking for interesting things that people have done with M, so I can understand it better.</p> http://stackoverflow.com/questions/340489/best-approach-for-passing-xml-to-a-webservice/340496#340496 0 Answer by kokos for Best approach for passing XML to a webservice? kokos 2008-12-04T12:58:31Z 2008-12-04T13:49:07Z <p>Wouldn't a normal string be enough? It's overkill to serialize / deserialize an entire XDoc instance in my opinion. Of course, you can also zip the entire thing to reduce the size of the requests.</p> http://stackoverflow.com/questions/337183/xslt-output-html-controls-dynamic-control-name/337625#337625 0 Answer by kokos for xslt output html controls - dynamic control name kokos 2008-12-03T15:57:39Z 2008-12-03T15:57:39Z <p>Your dataset has the nice property that it's a tree, each node can be identified by it's path in the tree. I'd say your best bet is to name the controls that correspond to each XML node in a manner that reflects this:<br /> 1. NewDataSet_Cases_Case1_case_id1_rb.<br /> 2. NewDataSet_Cases_Case1_case_id2_rb. </p> <p>You just need a way to get the names of the parent nodes, something like:<br /> &lt;xsl:variable name="parent1Name" select="name(parent::*)" /&gt;</p> http://stackoverflow.com/questions/325725/selectively-remove-from-where-clause-in-linq-expression-tree 1 Selectively remove from where clause in LINQ expression tree kokos 2008-11-28T12:51:34Z 2008-11-28T13:22:05Z <p>Starting with the following LINQ query:</p> <pre><code>from a in things where a.Id == b.Id &amp;&amp; a.Name == b.Name &amp;&amp; a.Value1 == b.Value1 &amp;&amp; a.Value2 == b.Value2 &amp;&amp; a.Value3 == b.Value3 select a; </code></pre> <p>How can I remove (at runtime) one or more of the conditions in the where clause in order to obtain queries similar to the following ones:</p> <pre><code>from a in things where a.Id == b.Id &amp;&amp; a.Name == b.Name &amp;&amp; a.Value2 == b.Value2 &amp;&amp; a.Value3 == b.Value3 select a; </code></pre> <p>Or</p> <pre><code>from a in things where a.Name == b.Name &amp;&amp; a.Value3 == b.Value3 select a; </code></pre> http://stackoverflow.com/questions/234411/limiting-assembly-execution-number-of-cpu-cycles/236807#236807 1 Answer by kokos for Limiting assembly execution number of cpu cycles kokos 2008-10-25T18:25:39Z 2008-10-25T18:25:39Z <p>I think I remember that Terrarium did something similar to what you want I suggest taking a look at <a href="http://www.codeplex.com/terrarium2" rel="nofollow">http://www.codeplex.com/terrarium2</a>.</p> <p>Unfortunately I don't think you have a easy way to do this by just configuring the AppDomain where you load the DLLs. You'll probably have to reimplement what Terrarium does.</p> http://stackoverflow.com/questions/135909/is-there-a-built-in-method-for-converting-radians-to-degrees/135931#135931 0 Answer by kokos for Is there a built in method for converting radians to degrees? kokos 2008-09-25T20:43:59Z 2008-09-25T20:43:59Z <p>360 degrees is 2*PI radians</p> <p>You can find the conversion formulas at: <a href="http://en.wikipedia.org/wiki/Radian#Conversion_between_radians_and_degrees" rel="nofollow">http://en.wikipedia.org/wiki/Radian#Conversion_between_radians_and_degrees</a>.</p> http://stackoverflow.com/questions/129642/how-to-play-a-sound-file/129809#129809 0 Answer by kokos for How to play a sound file kokos 2008-09-24T20:36:38Z 2008-09-24T20:36:38Z <p>There's a media player control - basically what Media Player uses. You can put that in your program and there's an API you can use to control it. I think it's the best quick solution.</p> http://stackoverflow.com/questions/116139/how-can-i-read-a-word-2007-docx-file/116194#116194 2 Answer by kokos for How can I read a Word 2007 .docx file? kokos 2008-09-22T17:16:43Z 2008-09-22T17:16:43Z <p>A docx is just a zip archive with lots of files inside. Maybe you can look at some of the contents of those files? Other than that you probably have to find a lib that understands the word format so that you can filter out things you're not interested in.</p> <p>A second choice would be to interop with word and do the search through it.</p> http://stackoverflow.com/questions/8626/globus-toolkit-virtual-machine 2 Globus Toolkit virtual machine kokos 2008-08-12T09:13:40Z 2008-09-16T17:00:22Z <p>Is there anyplace where one can download a virtual machine containing a working install of some Linux distro with Globus Toolkit and some development tools (Java) for testing purposes? A real deployment of a grid is more complicated but I just need something portable, for development.</p> http://stackoverflow.com/questions/61405/how-do-i-make-a-subproject-with-qt/61423#61423 0 Answer by kokos for How do I make a subproject with Qt? kokos 2008-09-14T15:49:06Z 2008-09-14T15:49:06Z <p>For Qt on Windows you can create DLLs for every subproject you want. No problem with using them from the main project (exe) after that. You'll have to take care of dependencies but it's not very difficult.</p> http://stackoverflow.com/questions/61386/is-knowing-blend-required/61387#61387 2 Answer by kokos for Is knowing blend required? kokos 2008-09-14T14:54:28Z 2008-09-14T14:54:28Z <p>I think at least the designers should start using the Expression Suite. The developers should be somewhat familiar with the tools but just enough to enable them to communicate better with the designers.</p> http://stackoverflow.com/questions/61342/threads-or-asynch/61349#61349 0 Answer by kokos for Threads or asynch ? kokos 2008-09-14T14:05:05Z 2008-09-14T14:05:05Z <p>The use of threads makes you think more about the way your application needs threading and can in the long run make it easier to improve / control your performance.<br /> Async methods are faster to use but they are a bit magic - a lot of things happen to make them possible - so it's probable that at some point you will need something that they can't give you. Then you can try and roll some custom threading code.<br /> It all depends on your needs.</p> http://stackoverflow.com/questions/61317/learn-silverlight-or-wpf-first/61336#61336 4 Answer by kokos for Learn Silverlight or WPF first? kokos 2008-09-14T13:39:30Z 2008-09-14T13:39:30Z <p>Silverlight is a stripped down version of WPF so it should have fewer things to learn inside. On the other hand, the two platforms have different targets (web &amp; rich client) so I guess it depends on what app you're going to build.<br /> If you just want to learn for yourself (no app in the close future) I'd pick Silverlight because it would be less to assimilate. Still, Silverlight is pretty much a moving target, much more than WPF, so you'll have to keep up with some changes from time to time (the joys of being an early adopter :)).<br /> WPF has lots more stuff that you will probably want to use at some point but I would wait for the needs to arise first.</p> http://stackoverflow.com/questions/57383/in-c-how-can-i-rethrow-innerexception-without-losing-stack-trace/57394#57394 4 Answer by kokos for In C#, how can I rethrow InnerException without losing stack trace? kokos 2008-09-11T19:22:57Z 2008-09-11T19:22:57Z <p>First: don't loose the TargetInvocationException - it's valuable information when you will want to debug things.<br /> Second: Wrap the TIE as InnerException in your own exception type and put an OriginalException property that links to what you need (and keep the entire callstack intact).<br /> Third: Let the TIE bubble out of your method.</p> http://stackoverflow.com/questions/39533/how-to-identify-that-youre-running-under-a-vm/39554#39554 0 Answer by kokos for How to identify that you're running under a VM? kokos 2008-09-02T13:51:01Z 2008-09-02T13:51:01Z <p>Virtual PC knows when it's installed in another instance of VPC and won't install. So it must be possible. Unfortunately I don't know how it does this.</p> <p>A possible way would be to look at the default hardware configuration - at least for VPC it's standard. Don't think this is foolproof though.</p> http://stackoverflow.com/questions/30521/qt-child-window-placement/30597#30597 2 Answer by kokos for Qt Child Window Placement kokos 2008-08-27T16:34:56Z 2008-08-27T16:34:56Z <p><a href="http://doc.trolltech.com/4.3/geometry.html" rel="nofollow">Qt Window Geometry</a></p> <p>Call the move(x, y) method on the child window before show(). The default values for x and y are 0 so that's why it appears in the upper left-hand corner.<br /> You can also use the position of the parent window to compute a relative position for the child.</p> http://stackoverflow.com/questions/30080/how-to-know-if-a-line-intersects-a-plane-in-c-basic-2d-geometry/30098#30098 3 Answer by kokos for How to know if a line intersects a plane in C#? - Basic 2D geometry kokos 2008-08-27T13:31:07Z 2008-08-27T13:31:07Z <p>Do <a href="http://mathworld.wolfram.com/Line-LineIntersection.html" rel="nofollow">http://mathworld.wolfram.com/Line-LineIntersection.html</a> for the line and each side of the rectangle.<br /> Or: <a href="http://mathworld.wolfram.com/Line-PlaneIntersection.html" rel="nofollow">http://mathworld.wolfram.com/Line-PlaneIntersection.html</a></p> http://stackoverflow.com/questions/30074/monitoring-files-how-to-know-when-a-file-is-complete/30092#30092 1 Answer by kokos for Monitoring files - how to know when a file is complete kokos 2008-08-27T13:29:13Z 2008-08-27T13:29:13Z <p>You probably have to go with some out of band signaling: have the producer of "file.ext" write a dummy "file.ext.end".</p> http://stackoverflow.com/questions/29980/how-should-i-test-a-method-that-populates-a-list-from-a-datareader/30055#30055 0 Answer by kokos for How should I test a method that populates a list from a DataReader? kokos 2008-08-27T13:15:01Z 2008-08-27T13:15:01Z <p>You can put the Foo instances in a list and compare the objects with what you read: </p> <pre><code>var arrFoos = new Foos[]{...}; // what you expect var expectedFoos = new List&lt;Foo&gt;(arrFoos); // make a list from the hardcoded array of expected Foos var readerResult = ReadEntireList(reader); // read everything from reader and put in List&lt;Foo&gt; Expect.ContainSameFoos(expectedFoos, readerResult); // compare the two lists </code></pre> http://stackoverflow.com/questions/30026/features-common-to-all-regex-flavors/30032#30032 10 Answer by kokos for Features common to all regex flavors? kokos 2008-08-27T13:07:45Z 2008-08-27T13:07:45Z <p><a href="http://en.wikipedia.org/wiki/Comparison_of_regular_expression_engines" rel="nofollow">http://en.wikipedia.org/wiki/Comparison_of_regular_expression_engines</a><br /> Even more detailed: <a href="http://www.regular-expressions.info/refflavors.html" rel="nofollow">http://www.regular-expressions.info/refflavors.html</a></p> http://stackoverflow.com/questions/24212/use-qitemdelegate-to-show-image-thumbnails/30029#30029 3 Answer by kokos for Use QItemDelegate to show image thumbnails kokos 2008-08-27T13:06:36Z 2008-08-27T13:06:36Z <p>You're doing it wrong if you are generating pixmaps inside any of the delegate methods (paint, draw...).<br /> Try to generate the thumbnails only once (on worker thread or maybe not even at runtime, if possible) and have the delegate just display them for the appropriate role.<br /> If you do it at runtime display a default picture until you have the thumbnail generated (like web browsers do with pictures that are not yet downloaded).</p> http://stackoverflow.com/questions/28171/why-does-visual-studio-create-a-new-vsmdi-file/28185#28185 0 Answer by kokos for Why does Visual Studio create a new .vsmdi file? kokos 2008-08-26T14:27:15Z 2008-08-26T14:27:15Z <p><a href="http://msdn.microsoft.com/en-us/library/ms243168.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms243168.aspx</a></p> http://stackoverflow.com/questions/1275397/best-way-to-send-10-000-emails-with-pear-mailqueue Comment by kokos on Best way to send 10,000+ emails with PEAR/Mail_Queue kokos 2009-08-14T00:24:26Z 2009-08-14T00:24:26Z Is this for spamming people? http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036 Comment by kokos on Hidden Features of C#? kokos 2009-06-21T01:54:10Z 2009-06-21T01:54:10Z @LucasAardvark: As J Steen mentioned it's called the null coalescing operator. Search for that! http://stackoverflow.com/questions/59590/lock-keyword-in-c/59616#59616 Comment by kokos on lock keyword in C# kokos 2008-09-14T15:09:45Z 2008-09-14T15:09:45Z All .NET applications are multithreaded - there's at least the finalizer thread running along side your main thread. http://stackoverflow.com/questions/60652/common-memory-optimization/60726#60726 Comment by kokos on Common memory optimization kokos 2008-09-14T15:03:51Z 2008-09-14T15:03:51Z Maybe in a future version of the platform the CLR will load all classes as sealed first and patch them if it loads derived types later. http://stackoverflow.com/questions/61346/can-an-iphone-app-be-run-as-root Comment by kokos on Can an iPhone App Be Run as Root? kokos 2008-09-14T14:07:09Z 2008-09-14T14:07:09Z I don't think the NDA is your problem, maybe the License &amp; Terms of Use of the iPhone ;). http://stackoverflow.com/questions/59213/easiest-way-to-add-a-header-and-footer-to-a-printing-printdocument-net-2-0 Comment by kokos on Easiest way to add a Header and Footer to a Printing.PrintDocument (.Net 2.0)? kokos 2008-09-14T13:59:49Z 2008-09-14T13:59:49Z Print the header &amp; footer on the PrintDocument yourself? http://stackoverflow.com/questions/61262/how-do-you-resolve-net-namespace-conflicts-with-the-using-keyword Comment by kokos on How do you resolve .Net namespace conflicts with the 'using' keyword ? kokos 2008-09-14T13:48:01Z 2008-09-14T13:48:01Z As the accepted answer stated, use alias but try to be consisted across the entire code base (just one alias for one namespace / class and they should be easy to distinguish). http://stackoverflow.com/questions/61307/how-do-i-locate-a-word-application-window Comment by kokos on How do I locate a Word application window? kokos 2008-09-14T13:42:35Z 2008-09-14T13:42:35Z Exactly the same way you locate any other application window? http://stackoverflow.com/questions/61311/web-based-service-for-using-remote-computers Comment by kokos on Web based service for Using Remote Computers.. kokos 2008-09-14T13:41:48Z 2008-09-14T13:41:48Z I think Copilot is free in weekends :). http://stackoverflow.com/questions/61324/best-practices-for-architecting-large-systems-in-a-dynamic-language Comment by kokos on Best Practices for Architecting Large Systems in a Dynamic Language kokos 2008-09-14T13:33:23Z 2008-09-14T13:33:23Z This question is too vague and there's no right answer.