User Tuoski - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T14:13:51Z http://stackoverflow.com/feeds/user/1703 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/14435/class-designer 3 Class designer Tuoski 2008-08-18T10:40:52Z 2009-12-09T08:46:01Z <p>What software do you use when designing classes and their relationship, or just pen and paper?</p> http://stackoverflow.com/questions/1789446/decimal-cut-problem 1 Decimal Cut problem Tuoski 2009-11-24T11:21:18Z 2009-11-24T12:10:57Z <p>Is it possible to cut decimal, and not round it. Like this.</p> <pre><code>decimal number = 12.159m; </code></pre> <p>How can I easily get 12.15 from <code>number</code> and not 12.16?</p> <p>Is there an easy way or is the string manipulation the only way?</p> http://stackoverflow.com/questions/1636108/wsdl-404-problem/1636678#1636678 0 Answer by Tuoski for wsdl 404 problem Tuoski 2009-10-28T11:28:47Z 2009-10-28T11:28:47Z <p>Ok, now it's working. The problem was that my internet connection was using a proxy, turned that off and now it's working.</p> http://stackoverflow.com/questions/1636108/wsdl-404-problem 0 wsdl 404 problem Tuoski 2009-10-28T09:35:04Z 2009-10-28T11:28:47Z <p>I'm having problems with a web service. I published the site on IIS 6. With my browser the interface works fine. When I try to create a proxy with wsdl.exe, It gives me 404 not found error.</p> <p>Is there any trigger in IIS that I should turn or what?</p> http://stackoverflow.com/questions/1425605/why-does-it-matter-which-order-settings-are-in-app-config 0 Why does it matter which order settings are in app.config Tuoski 2009-09-15T07:11:47Z 2009-09-15T07:45:55Z <p>I had a problem with WCF test, and the problem was solved when I moved to the top of system.servicemodel. My question is, why does this matter? Doesn't .NET read the XML by the field names?</p> <pre><code> &lt;system.serviceModel&gt; &lt;behaviors&gt; &lt;serviceBehaviors&gt; &lt;behavior name="MyServiceTypeBehaviors"&gt; &lt;serviceMetadata httpGetEnabled="true" /&gt; &lt;serviceDebug includeExceptionDetailInFaults="true" /&gt; &lt;/behavior&gt; &lt;/serviceBehaviors&gt; &lt;/behaviors&gt; &lt;bindings&gt; &lt;basicHttpBinding&gt; &lt;!-- Server--&gt; &lt;binding name="ws" transferMode="Streamed" messageEncoding="Mtom" maxReceivedMessageSize="10067108864" maxBufferSize="500000" maxBufferPoolSize="500000" receiveTimeout="10:00:00" sendTimeout="10:00:00" closeTimeout="10:00:00" openTimeout="10:00:00"&gt; &lt;readerQuotas maxDepth="32" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="4096" maxNameTableCharCount="16384" /&gt; &lt;security mode="None"&gt; &lt;transport clientCredentialType="None"/&gt; &lt;/security&gt; &lt;/binding&gt; &lt;!-- Server --&gt; &lt;binding name="FileTransferServicesBinding" transferMode="Streamed" messageEncoding="Mtom" maxReceivedMessageSize="10067108864" maxBufferSize="500000" maxBufferPoolSize="500000"&gt; &lt;readerQuotas maxDepth="32" maxStringContentLength="655360" maxArrayLength="655360" maxBytesPerRead="4096" maxNameTableCharCount="16384" /&gt; &lt;/binding&gt; &lt;/basicHttpBinding&gt; &lt;/bindings&gt; &lt;!-- Server --&gt; &lt;services&gt; &lt;service behaviorConfiguration="MyServiceTypeBehaviors" name="Namespace.Namespace"&gt; &lt;endpoint address="" binding="basicHttpBinding" bindingConfiguration="FileTransferServicesBinding" contract="Namespace.INamespaceSC" /&gt; &lt;host&gt; &lt;baseAddresses&gt; &lt;add baseAddress="http://localhost:8081/Namespace" /&gt; &lt;/baseAddresses&gt; &lt;/host&gt; &lt;endpoint address="mex" binding="mexHttpBinding" contract="Namespace.INamespaceSC" /&gt; &lt;/service&gt; &lt;/services&gt; &lt;!-- Behaviors field was here before, when it didn't work --&gt; &lt;!-- Client --&gt; &lt;client&gt; &lt;endpoint address="http://localhost:8081/Namespace" binding="basicHttpBinding" bindingConfiguration="ws" contract="Namespace.INamespaceSC" /&gt; &lt;/client&gt;&lt;/system.serviceModel&gt; </code></pre> http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/1409200#1409200 1 Answer by Tuoski for What non-programming books should programmers read? Tuoski 2009-09-11T05:55:30Z 2009-09-11T05:55:30Z <p><strong>Charles Bukowski - Post Office</strong></p> <p>This books is great and so funny. I also like other Bukowskis books, but this is the most famous and the best in my opinion.</p> <p><img src="http://ecx.images-amazon.com/images/I/51t-oLr6N9L.%5FBO2,204,203,200%5FPIsitb-sticker-arrow-click,TopRight,35,-76%5FAA240%5FSH20%5FOU01%5F.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1403558/too-long-string-for-wcf 0 Too long string for WCF Tuoski 2009-09-10T05:45:30Z 2009-09-10T06:13:10Z <p>I'm trying to send a long string by WCF, around 64k chars long. When sending a long string, the I get the HTTP error 400. But when I send shorter string, everything works fine. Here is the WCF interface and app.config that I use.</p> <p>My message contract:</p> <pre><code>[MessageContract] public class MessageClass { [MessageHeader(MustUnderstand = true)] public string id; [MessageBodyMember(Order=1)] public string realMessage; // Long string } </code></pre> <p>I have tried to change the app.config settings by rising the values:</p> <pre><code>&lt;bindings&gt; &lt;basicHttpBinding&gt; &lt;binding name="ws" transferMode="Streamed" messageEncoding="Mtom" maxReceivedMessageSize="10067108864"&gt; &lt;readerQuotas maxDepth="32" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="4096" maxNameTableCharCount="16384" /&gt; &lt;security mode="None"&gt; &lt;transport clientCredentialType="None"/&gt; &lt;/security&gt; &lt;/binding&gt; &lt;/basicHttpBinding&gt; &lt;/bindings&gt; </code></pre> <p>Is there any other value that I should change?</p> http://stackoverflow.com/questions/15841/visual-studio-color-theme 8 Visual Studio color theme Tuoski 2008-08-19T07:30:56Z 2009-09-02T06:41:22Z <p>What Visual Studio color theme do you use? Or just the default?</p> <p>Also see: <a href="http://stackoverflow.com/questions/9951/what-color-scheme-do-you-use-for-programming">What color scheme do you use for programming?</a></p> http://stackoverflow.com/questions/609743/where-goes-wcf-binding-configuration 0 Where goes WCF binding configuration? Tuoski 2009-03-04T08:46:10Z 2009-08-24T05:00:02Z <p>I was checking out streaming in the Programming WCF Services book, and I spotted a line about configurating.</p> <blockquote> <p>You will need to configure the binding on the client or service side (or both) per required stream mode</p> </blockquote> <p>So what is this? How I know where I should configure them? And is this a common thing with WCF? Seems bit weird to me.</p> http://stackoverflow.com/questions/14349/books-for-software-architect 10 Books for software architect Tuoski 2008-08-18T08:53:32Z 2009-04-22T12:37:48Z <p>What would be good books and websites to read to become an software architect. And just basic tips and tricks are also welcome.</p> http://stackoverflow.com/questions/602237/where-does-hello-world-come-from/602261#602261 0 Answer by Tuoski for Where does 'Hello world' come from? Tuoski 2009-03-02T13:00:32Z 2009-03-02T13:00:32Z <p>From Wikipedia</p> <blockquote> <p>While small test programs existed since the development of programmable computers, the tradition of using the phrase "Hello world!" as a test message was influenced by an example program in the seminal book The C Programming Language. The example program from that book prints "hello, world" (without capital letters or exclamation mark), and was inherited from a 1974 Bell Laboratories internal memorandum by Brian Kernighan, Programming in C: A Tutorial, which contains the first known version:</p> </blockquote> <p><a href="http://en.wikipedia.org/wiki/Hello_world_program" rel="nofollow">http://en.wikipedia.org/wiki/Hello_world_program</a></p> http://stackoverflow.com/questions/582715/how-to-start-recognizing-design-patterns-as-you-are-programming/584908#584908 0 Answer by Tuoski for How to start recognizing design patterns as you are programming? Tuoski 2009-02-25T06:14:42Z 2009-02-25T06:14:42Z <p>Maybe you should think what design pattern you would use for the problem. This isn't the case every time, but sometimes it is.</p> http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/186309#186309 646 Answer by Tuoski for What is the best comment in source code you have ever encountered? Tuoski 2008-10-09T07:52:35Z 2008-10-09T07:52:35Z <pre><code>stop(); // Hammertime! </code></pre> http://stackoverflow.com/questions/15690/how-do-you-begin-designing-a-large-system/15969#15969 0 Answer by Tuoski for How do you begin designing a large system? Tuoski 2008-08-19T10:48:18Z 2008-08-19T10:48:18Z <p>Split the big system to smaller pieces. And don't think that it's so complex, because it usually isn't. By thinking too complex it just ruins your thoughts and eventually the design. Some point you just realize that you could do the same thing easier, and then you redesign it.</p> <p>Atleast this has been my major mistake in designing.</p> <p>Keep it simple!</p> http://stackoverflow.com/questions/15822/what-tools-free-or-otherwise-do-you-find-useful-for-developing-and-debugging-c/15833#15833 3 Answer by Tuoski for What tools (free or otherwise) do you find useful for developing and debugging C#/C++? Tuoski 2008-08-19T07:26:29Z 2008-08-19T07:26:29Z <p><a href="http://www.aisto.com/roeder/dotnet/" rel="nofollow">Reflector</a></p> <blockquote> <p>Reflector is the class browser, explorer, analyzer and documentation viewer for .NET. Reflector allows to easily view, navigate, search, decompile and analyze .NET assemblies in C#, Visual Basic and IL.</p> </blockquote> http://stackoverflow.com/questions/14922/what-are-your-favorite-programming-books/14933#14933 1 Answer by Tuoski for What are your favorite programming books? Tuoski 2008-08-18T17:11:01Z 2008-08-18T17:11:01Z <p>My 2 favorites are:</p> <ul> <li><a href="http://rads.stackoverflow.com/amzn/click/0735619670" rel="nofollow">Code Complete 2</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/020161622X" rel="nofollow">The Pragmatic Programmer</a></li> </ul> http://stackoverflow.com/questions/14398/class-designer-in-visual-studio-is-it-worth-it/14407#14407 0 Answer by Tuoski for Class Designer in Visual Studio - is it worth it? Tuoski 2008-08-18T10:01:36Z 2008-08-18T10:01:36Z <p>I have tried it out couple of times, mainly for viewing existing classes. If it would show all the relationships, it would be more usefull. Now it only shows inheritation.</p> http://stackoverflow.com/questions/14349/books-for-software-architect/14388#14388 0 Answer by Tuoski for Books for software architect Tuoski 2008-08-18T09:40:04Z 2008-08-18T09:40:04Z <p>I will do programming also. The deal is that I have to redesing an old system here, and I dont have any good experience on designing architectural stuff. Just want to get some idea where to start etc...</p> http://stackoverflow.com/questions/687/keyboard-for-programmers/14236#14236 0 Answer by Tuoski for Keyboard for programmers Tuoski 2008-08-18T06:03:00Z 2008-08-18T06:03:00Z <p>I use the Microsoft Comfort Curve 2000, which is a great keyboard for that price (20$).</p> http://stackoverflow.com/questions/14193/looking-for-reviews-of-vs-php-visual-studio-plugin-for-php/14223#14223 -2 Answer by Tuoski for Looking for Reviews of VS.PHP (Visual Studio Plugin for PHP) Tuoski 2008-08-18T05:41:49Z 2008-08-18T05:41:49Z <p>Is there any good free alternatives for VS.PHP?</p> http://stackoverflow.com/questions/1789446/decimal-cut-problem/1789468#1789468 Comment by Tuoski on Decimal Cut problem Tuoski 2009-11-24T11:30:59Z 2009-11-24T11:30:59Z Thanks this works! http://stackoverflow.com/questions/1636108/wsdl-404-problem/1636153#1636153 Comment by Tuoski on wsdl 404 problem Tuoski 2009-10-28T09:48:36Z 2009-10-28T09:48:36Z My computer has only 1 ip. It works the same way with my colleague. What information do you need? http://stackoverflow.com/questions/1425605/why-does-it-matter-which-order-settings-are-in-app-config/1425641#1425641 Comment by Tuoski on Why does it matter which order settings are in app.config Tuoski 2009-09-15T07:22:16Z 2009-09-15T07:22:16Z They are all named. http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/736375#736375 Comment by Tuoski on What non-programming books should programmers read? Tuoski 2009-09-11T05:50:36Z 2009-09-11T05:50:36Z On of the best books that I have read. http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/71046#71046 Comment by Tuoski on What non-programming books should programmers read? Tuoski 2009-09-11T05:46:19Z 2009-09-11T05:46:19Z Classic, and an excellent book. http://stackoverflow.com/questions/1403558/too-long-string-for-wcf/1403618#1403618 Comment by Tuoski on Too long string for WCF Tuoski 2009-09-10T06:33:34Z 2009-09-10T06:33:34Z The maxBufferSize and maxBufferPoolSize fixed my problem, thanks! http://stackoverflow.com/questions/1403558/too-long-string-for-wcf/1403569#1403569 Comment by Tuoski on Too long string for WCF Tuoski 2009-09-10T06:03:33Z 2009-09-10T06:03:33Z I have set the, maxReceivedMessageSize=&quot;10067108864&quot; in my config. http://stackoverflow.com/questions/135745/wcf-how-to-accept-long-strings-as-parameters/139003#139003 Comment by Tuoski on WCF - How to accept long strings as parameters Tuoski 2009-09-09T13:51:05Z 2009-09-09T13:51:05Z How long was your string? And what contract do you use? I have MessageContract and the string is 64k char long. http://stackoverflow.com/questions/206532/linq-not-updating-on-submitchanges/208480#208480 Comment by Tuoski on LINQ not updating on .SubmitChanges() Tuoski 2009-08-17T12:43:58Z 2009-08-17T12:43:58Z This solved my problem also, thanks! http://stackoverflow.com/questions/18348/i-would-like-some-tips-for-debugging-wcf-web-service-exceptions Comment by Tuoski on I would like some tips for debugging WCF Web Service exceptions Tuoski 2009-05-05T07:52:28Z 2009-05-05T07:52:28Z Did you find a solution? I'm struggling with the same problem. http://stackoverflow.com/questions/58640/great-programming-quotes/58855#58855 Comment by Tuoski on Great programming quotes Tuoski 2009-04-03T05:43:29Z 2009-04-03T05:43:29Z HAHA, the second one is just perfect! http://stackoverflow.com/questions/609743/where-goes-wcf-binding-configuration/609770#609770 Comment by Tuoski on Where goes WCF binding configuration? Tuoski 2009-03-04T10:21:37Z 2009-03-04T10:21:37Z But I still need to configure it, no matter if it's automatic or not. http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1735#1735 Comment by Tuoski on What is the single most influential book every programmer should read? Tuoski 2009-02-23T09:02:55Z 2009-02-23T09:02:55Z Just finished reading, excellent book! http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1713#1713 Comment by Tuoski on What is the single most influential book every programmer should read? Tuoski 2009-02-23T09:02:14Z 2009-02-23T09:02:14Z Great book. Everything in this books seems so obvious after reading. :) http://stackoverflow.com/questions/687/keyboard-for-programmers/4734#4734 Comment by Tuoski on Keyboard for programmers Tuoski 2009-02-02T15:03:45Z 2009-02-02T15:03:45Z I use similar DELL keyboard at work, tho I would prefer the ComfortCurve 2000.