User kokos - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T03:42:58Zhttp://stackoverflow.com/feeds/user/1065http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/407910/is-there-an-xslt-buddy-available-somewhere13Is there an XSLT buddy available somewhere?kokos2009-01-02T20:16:04Z2009-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-online14Any good F# tutorial/book/blog/site online?kokos2008-12-04T12:52:58Z2009-11-10T19:36:32Z
<p>Any recommendations?</p>
http://stackoverflow.com/questions/339923/how-to-set-cellpadding-cellspacing-in-css5How to set cellpadding & cellspacing in CSS?kokos2008-12-04T08:45:47Z2009-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#9928380Answer by kokos for Any ideas on how to write a static analysis rule (FXCop) to ensure that event delegates are removedkokos2009-06-14T13:27:54Z2009-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#8323091Answer by kokos for VS Team Tester failed to run dynamic web testkokos2009-05-06T23:42:06Z2009-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-online10Any good XSLT tutorial/book/blog/site online?kokos2008-12-04T08:49:04Z2009-02-04T12:33:09Z
<p>Any recommendations?</p>
http://stackoverflow.com/questions/341872/html-sanitizer-for-net/341893#3418933Answer by kokos for HTML Sanitizer for .NETkokos2008-12-04T20:13:49Z2008-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#3418590Answer by kokos for Would Little Man Computer Programming be a good Interview Project?kokos2008-12-04T20:03:34Z2008-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-m0Interesting uses of M?kokos2008-12-04T15:13:52Z2008-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#3404960Answer by kokos for Best approach for passing XML to a webservice?kokos2008-12-04T12:58:31Z2008-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#3376250Answer by kokos for xslt output html controls - dynamic control namekokos2008-12-03T15:57:39Z2008-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 />
<xsl:variable name="parent1Name"
select="name(parent::*)" /></p>
http://stackoverflow.com/questions/325725/selectively-remove-from-where-clause-in-linq-expression-tree1Selectively remove from where clause in LINQ expression treekokos2008-11-28T12:51:34Z2008-11-28T13:22:05Z
<p>Starting with the following LINQ query:</p>
<pre><code>from a in things
where a.Id == b.Id &&
a.Name == b.Name &&
a.Value1 == b.Value1 &&
a.Value2 == b.Value2 &&
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 &&
a.Name == b.Name &&
a.Value2 == b.Value2 &&
a.Value3 == b.Value3
select a;
</code></pre>
<p>Or</p>
<pre><code>from a in things
where
a.Name == b.Name &&
a.Value3 == b.Value3
select a;
</code></pre>
http://stackoverflow.com/questions/234411/limiting-assembly-execution-number-of-cpu-cycles/236807#2368071Answer by kokos for Limiting assembly execution number of cpu cycleskokos2008-10-25T18:25:39Z2008-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#1359310Answer by kokos for Is there a built in method for converting radians to degrees?kokos2008-09-25T20:43:59Z2008-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#1298090Answer by kokos for How to play a sound filekokos2008-09-24T20:36:38Z2008-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#1161942Answer by kokos for How can I read a Word 2007 .docx file?kokos2008-09-22T17:16:43Z2008-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-machine2Globus Toolkit virtual machinekokos2008-08-12T09:13:40Z2008-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#614230Answer by kokos for How do I make a subproject with Qt?kokos2008-09-14T15:49:06Z2008-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#613872Answer by kokos for Is knowing blend required?kokos2008-09-14T14:54:28Z2008-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#613490Answer by kokos for Threads or asynch ?kokos2008-09-14T14:05:05Z2008-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#613364Answer by kokos for Learn Silverlight or WPF first?kokos2008-09-14T13:39:30Z2008-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 & 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#573944Answer by kokos for In C#, how can I rethrow InnerException without losing stack trace?kokos2008-09-11T19:22:57Z2008-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#395540Answer by kokos for How to identify that you're running under a VM?kokos2008-09-02T13:51:01Z2008-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#305972Answer by kokos for Qt Child Window Placementkokos2008-08-27T16:34:56Z2008-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#300983Answer by kokos for How to know if a line intersects a plane in C#? - Basic 2D geometrykokos2008-08-27T13:31:07Z2008-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#300921Answer by kokos for Monitoring files - how to know when a file is completekokos2008-08-27T13:29:13Z2008-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#300550Answer by kokos for How should I test a method that populates a list from a DataReader?kokos2008-08-27T13:15:01Z2008-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<Foo>(arrFoos); // make a list from the hardcoded array of expected Foos
var readerResult = ReadEntireList(reader); // read everything from reader and put in List<Foo>
Expect.ContainSameFoos(expectedFoos, readerResult); // compare the two lists
</code></pre>
http://stackoverflow.com/questions/30026/features-common-to-all-regex-flavors/30032#3003210Answer by kokos for Features common to all regex flavors?kokos2008-08-27T13:07:45Z2008-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#300293Answer by kokos for Use QItemDelegate to show image thumbnailskokos2008-08-27T13:06:36Z2008-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#281850Answer by kokos for Why does Visual Studio create a new .vsmdi file?kokos2008-08-26T14:27:15Z2008-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-mailqueueComment by kokos on Best way to send 10,000+ emails with PEAR/Mail_Queuekokos2009-08-14T00:24:26Z2009-08-14T00:24:26ZIs this for spamming people?http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036Comment by kokos on Hidden Features of C#?kokos2009-06-21T01:54:10Z2009-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#59616Comment by kokos on lock keyword in C#kokos2008-09-14T15:09:45Z2008-09-14T15:09:45ZAll .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#60726Comment by kokos on Common memory optimizationkokos2008-09-14T15:03:51Z2008-09-14T15:03:51ZMaybe 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-rootComment by kokos on Can an iPhone App Be Run as Root?kokos2008-09-14T14:07:09Z2008-09-14T14:07:09ZI don't think the NDA is your problem, maybe the License & 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-0Comment by kokos on Easiest way to add a Header and Footer to a Printing.PrintDocument (.Net 2.0)?kokos2008-09-14T13:59:49Z2008-09-14T13:59:49ZPrint the header & footer on the PrintDocument yourself?http://stackoverflow.com/questions/61262/how-do-you-resolve-net-namespace-conflicts-with-the-using-keywordComment by kokos on How do you resolve .Net namespace conflicts with the 'using' keyword ?kokos2008-09-14T13:48:01Z2008-09-14T13:48:01ZAs 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-windowComment by kokos on How do I locate a Word application window?kokos2008-09-14T13:42:35Z2008-09-14T13:42:35ZExactly the same way you locate any other application window?http://stackoverflow.com/questions/61311/web-based-service-for-using-remote-computersComment by kokos on Web based service for Using Remote Computers..kokos2008-09-14T13:41:48Z2008-09-14T13:41:48ZI think Copilot is free in weekends :).http://stackoverflow.com/questions/61324/best-practices-for-architecting-large-systems-in-a-dynamic-languageComment by kokos on Best Practices for Architecting Large Systems in a Dynamic Languagekokos2008-09-14T13:33:23Z2008-09-14T13:33:23ZThis question is too vague and there's no right answer.