User Tuoski - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T14:13:51Zhttp://stackoverflow.com/feeds/user/1703http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/14435/class-designer3Class designerTuoski2008-08-18T10:40:52Z2009-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-problem1Decimal Cut problemTuoski2009-11-24T11:21:18Z2009-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#16366780Answer by Tuoski for wsdl 404 problemTuoski2009-10-28T11:28:47Z2009-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-problem0wsdl 404 problemTuoski2009-10-28T09:35:04Z2009-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-config0Why does it matter which order settings are in app.configTuoski2009-09-15T07:11:47Z2009-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> <system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior name="MyServiceTypeBehaviors">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
</behaviors>
<bindings>
<basicHttpBinding>
<!-- Server-->
<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">
<readerQuotas
maxDepth="32"
maxStringContentLength="2147483647"
maxArrayLength="2147483647"
maxBytesPerRead="4096"
maxNameTableCharCount="16384" />
<security mode="None">
<transport clientCredentialType="None"/>
</security>
</binding>
<!-- Server -->
<binding
name="FileTransferServicesBinding"
transferMode="Streamed"
messageEncoding="Mtom"
maxReceivedMessageSize="10067108864"
maxBufferSize="500000"
maxBufferPoolSize="500000">
<readerQuotas
maxDepth="32"
maxStringContentLength="655360"
maxArrayLength="655360"
maxBytesPerRead="4096"
maxNameTableCharCount="16384" />
</binding>
</basicHttpBinding>
</bindings>
<!-- Server -->
<services>
<service behaviorConfiguration="MyServiceTypeBehaviors" name="Namespace.Namespace">
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="FileTransferServicesBinding" contract="Namespace.INamespaceSC" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:8081/Namespace" />
</baseAddresses>
</host>
<endpoint address="mex" binding="mexHttpBinding" contract="Namespace.INamespaceSC" />
</service>
</services>
<!-- Behaviors field was here before, when it didn't work -->
<!-- Client -->
<client>
<endpoint
address="http://localhost:8081/Namespace"
binding="basicHttpBinding"
bindingConfiguration="ws"
contract="Namespace.INamespaceSC"
/>
</client></system.serviceModel>
</code></pre>
http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/1409200#14092001Answer by Tuoski for What non-programming books should programmers read?Tuoski2009-09-11T05:55:30Z2009-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-wcf0Too long string for WCFTuoski2009-09-10T05:45:30Z2009-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><bindings>
<basicHttpBinding>
<binding
name="ws"
transferMode="Streamed"
messageEncoding="Mtom"
maxReceivedMessageSize="10067108864">
<readerQuotas
maxDepth="32"
maxStringContentLength="2147483647"
maxArrayLength="2147483647"
maxBytesPerRead="4096"
maxNameTableCharCount="16384" />
<security mode="None">
<transport clientCredentialType="None"/>
</security>
</binding>
</basicHttpBinding>
</bindings>
</code></pre>
<p>Is there any other value that I should change?</p>
http://stackoverflow.com/questions/15841/visual-studio-color-theme8Visual Studio color themeTuoski2008-08-19T07:30:56Z2009-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-configuration0Where goes WCF binding configuration?Tuoski2009-03-04T08:46:10Z2009-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-architect10Books for software architectTuoski2008-08-18T08:53:32Z2009-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#6022610Answer by Tuoski for Where does 'Hello world' come from?Tuoski2009-03-02T13:00:32Z2009-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#5849080Answer by Tuoski for How to start recognizing design patterns as you are programming?Tuoski2009-02-25T06:14:42Z2009-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#186309646Answer by Tuoski for What is the best comment in source code you have ever encountered?Tuoski2008-10-09T07:52:35Z2008-10-09T07:52:35Z<pre><code>stop(); // Hammertime!
</code></pre>
http://stackoverflow.com/questions/15690/how-do-you-begin-designing-a-large-system/15969#159690Answer by Tuoski for How do you begin designing a large system?Tuoski2008-08-19T10:48:18Z2008-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#158333Answer by Tuoski for What tools (free or otherwise) do you find useful for developing and debugging C#/C++?Tuoski2008-08-19T07:26:29Z2008-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#149331Answer by Tuoski for What are your favorite programming books?Tuoski2008-08-18T17:11:01Z2008-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#144070Answer by Tuoski for Class Designer in Visual Studio - is it worth it?Tuoski2008-08-18T10:01:36Z2008-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#143880Answer by Tuoski for Books for software architectTuoski2008-08-18T09:40:04Z2008-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#142360Answer by Tuoski for Keyboard for programmersTuoski2008-08-18T06:03:00Z2008-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-2Answer by Tuoski for Looking for Reviews of VS.PHP (Visual Studio Plugin for PHP)Tuoski2008-08-18T05:41:49Z2008-08-18T05:41:49Z<p>Is there any good free alternatives for VS.PHP?</p>
http://stackoverflow.com/questions/1789446/decimal-cut-problem/1789468#1789468Comment by Tuoski on Decimal Cut problemTuoski2009-11-24T11:30:59Z2009-11-24T11:30:59ZThanks this works!http://stackoverflow.com/questions/1636108/wsdl-404-problem/1636153#1636153Comment by Tuoski on wsdl 404 problemTuoski2009-10-28T09:48:36Z2009-10-28T09:48:36ZMy 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#1425641Comment by Tuoski on Why does it matter which order settings are in app.configTuoski2009-09-15T07:22:16Z2009-09-15T07:22:16ZThey are all named.
http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/736375#736375Comment by Tuoski on What non-programming books should programmers read?Tuoski2009-09-11T05:50:36Z2009-09-11T05:50:36ZOn of the best books that I have read.http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/71046#71046Comment by Tuoski on What non-programming books should programmers read?Tuoski2009-09-11T05:46:19Z2009-09-11T05:46:19ZClassic, and an excellent book.http://stackoverflow.com/questions/1403558/too-long-string-for-wcf/1403618#1403618Comment by Tuoski on Too long string for WCFTuoski2009-09-10T06:33:34Z2009-09-10T06:33:34ZThe maxBufferSize and maxBufferPoolSize fixed my problem, thanks!
http://stackoverflow.com/questions/1403558/too-long-string-for-wcf/1403569#1403569Comment by Tuoski on Too long string for WCFTuoski2009-09-10T06:03:33Z2009-09-10T06:03:33ZI have set the, maxReceivedMessageSize="10067108864" in my config.http://stackoverflow.com/questions/135745/wcf-how-to-accept-long-strings-as-parameters/139003#139003Comment by Tuoski on WCF - How to accept long strings as parametersTuoski2009-09-09T13:51:05Z2009-09-09T13:51:05ZHow 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#208480Comment by Tuoski on LINQ not updating on .SubmitChanges()Tuoski2009-08-17T12:43:58Z2009-08-17T12:43:58ZThis solved my problem also, thanks!http://stackoverflow.com/questions/18348/i-would-like-some-tips-for-debugging-wcf-web-service-exceptionsComment by Tuoski on I would like some tips for debugging WCF Web Service exceptionsTuoski2009-05-05T07:52:28Z2009-05-05T07:52:28ZDid you find a solution? I'm struggling with the same problem.http://stackoverflow.com/questions/58640/great-programming-quotes/58855#58855Comment by Tuoski on Great programming quotesTuoski2009-04-03T05:43:29Z2009-04-03T05:43:29ZHAHA, the second one is just perfect!http://stackoverflow.com/questions/609743/where-goes-wcf-binding-configuration/609770#609770Comment by Tuoski on Where goes WCF binding configuration?Tuoski2009-03-04T10:21:37Z2009-03-04T10:21:37ZBut 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#1735Comment by Tuoski on What is the single most influential book every programmer should read?Tuoski2009-02-23T09:02:55Z2009-02-23T09:02:55ZJust finished reading, excellent book!http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/1713#1713Comment by Tuoski on What is the single most influential book every programmer should read?Tuoski2009-02-23T09:02:14Z2009-02-23T09:02:14ZGreat book. Everything in this books seems so obvious after reading. :)http://stackoverflow.com/questions/687/keyboard-for-programmers/4734#4734Comment by Tuoski on Keyboard for programmersTuoski2009-02-02T15:03:45Z2009-02-02T15:03:45ZI use similar DELL keyboard at work,
tho I would prefer the ComfortCurve 2000.