User ppiotrowicz - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T00:23:45Z http://stackoverflow.com/feeds/user/71965 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1228439/x509-guide-tutorial-in-c 1 X509 guide/tutorial in C# ppiotrowicz 2009-08-04T16:10:37Z 2009-11-10T16:50:20Z <p>Can anyone point me to a good introductory materials on X509 certificates with examples in C#.</p> http://stackoverflow.com/questions/1437305/is-this-violating-the-solid-principles/1437344#1437344 0 Answer by ppiotrowicz for is this violating the SOLID principles ? ppiotrowicz 2009-09-17T07:56:42Z 2009-09-17T07:56:42Z <p>It's violating SOLID principles in many ways.</p> <ul> <li>it's not following single responsibility principle, because i't doing at least 3 different things (returning products, returning customers, string operations?)</li> <li>it's violating open closed principle by not being open for extension</li> </ul> http://stackoverflow.com/questions/1387799/best-visual-studio-plugins/1387805#1387805 0 Answer by ppiotrowicz for Best Visual Studio plugins ppiotrowicz 2009-09-07T06:23:33Z 2009-09-07T06:23:33Z <p>ReSharper or CodeRush are probably the obvious ones :)</p> http://stackoverflow.com/questions/1361666/ddd-repositories/1361749#1361749 0 Answer by ppiotrowicz for DDD Repositories ppiotrowicz 2009-09-01T10:41:43Z 2009-09-01T10:41:43Z <p>You should propably create an interface ICustomerRepository, and then create a class CustomerRepository that derives from from that interface.</p> <p>The reason why is testability.</p> <p>In tests you can now mock out the concrete instance of CustomerRepositotory with some mock object.</p> <p>You can also easily replace implementations of this repository, add logging or caching.</p> <p>As for statics. If you want to use static instance, it's better to use some Dependency Injection tool and set component's lifestyle to singleton. It still would be testable.</p> http://stackoverflow.com/questions/1243711/xsd-restrictions 0 XSD restrictions ppiotrowicz 2009-08-07T09:00:11Z 2009-08-07T11:00:30Z <p>Is it possible using XSD to restrinct node names to enumeration, and then based on this enumeration add another restrictions?</p> <p>In example, I have this xml:</p> <pre><code>&lt;a&gt; &lt;b name="string" value="hello"&gt; &lt;b name="integer" value="123"&gt; &lt;/a&gt; </code></pre> <p>I want "b" nodes have name attribute from enumeration { "string", "integer" }. Then if it's "string" I want that "value" attribute to be type of xs:string, and if it's "integer" I want that "value" attribute to be type of xs:integer.</p> http://stackoverflow.com/questions/1228649/what-is-jquerys-equivalent-to-prototypes-ajax-responders-register/1228698#1228698 0 Answer by ppiotrowicz for What is jQuery's equivalent to Prototype's Ajax.Responders.register? ppiotrowicz 2009-08-04T16:58:29Z 2009-08-04T17:20:01Z <p>I don't know prototype, but I'm pretty sure it's something like this:</p> <pre><code>$.ajax({ error: function(xhr, textStatus, exception) { if (exception.message != "Syntax error") { var newItem = '&lt;p style="color:red"&gt;' + exception.message + '&lt;/p&gt;'; $('#toperrorbox').after(newItem); } } }); </code></pre> <p>Edit: or you can try with something more global:</p> <pre><code>$('#toperrorbox').ajaxError(function(event, XMLHttpRequest, ajaxOptions, thrownError) { if (thrownError != "Syntax error") { var newItem = '&lt;p style="color:red"&gt;' + thrownError + '&lt;/p&gt;'; $(this).after(newItem); } }) </code></pre> http://stackoverflow.com/questions/1221185/identical-build-on-different-systems 2 Identical build on different systems ppiotrowicz 2009-08-03T08:19:21Z 2009-08-04T01:17:27Z <p>I have 3 build machines. One running on windows 2000, one with XP SP3 and one with 64bit Windows Server 2008. And I have a native C++ project to build (I'm building with visual studio 2005 SP1). My goal is to build "exactly" the same dll's using these build machines.</p> <p>By exactly I mean bit by bit (except build timestamp of course).</p> <p>With win2k and winxp I'm getting identical dll's. But they differ from dll built with win2008 server. I've managed to get almost identical dll's, but there are some differences. After disassembling the files I found out that function order is not the same (3 functions are in different order).</p> <p>Does anyone know what could be the reason for that?</p> <p>And a side question: In vcbuild.exe I've found a switch /ORDER. Which takes function order file as input. Anyone knows how that file should look like?</p> http://stackoverflow.com/questions/1222139/jquery-selector-help/1222175#1222175 0 Answer by ppiotrowicz for jQuery Selector Help ppiotrowicz 2009-08-03T12:49:07Z 2009-08-03T12:49:07Z <p>If you want to add 'new_class' to div with 'old_class' you should do something like this:</p> <pre><code>$('div.old_class').addClass('new_class'); </code></pre> <p>If you want to add 'new_class' to parent of div with 'old_class' you should do something like this:</p> <pre><code>$('div.old_class').parent().addClass('new_class') </code></pre> http://stackoverflow.com/questions/1058075/how-to-give-a-c-handler-file-as-a-url-to-jquery-autocomplete/1061842#1061842 0 Answer by ppiotrowicz for How to give a C# handler file as a url to jquery autocomplete ppiotrowicz 2009-06-30T05:12:15Z 2009-06-30T05:12:15Z <p>You can use with any type of downloadable asp file (aspx, ashx and asmx too) as long as they return data in correct format.</p> http://stackoverflow.com/questions/1061657/get-key-value-from-selected-autocomplete-item/1061816#1061816 0 Answer by ppiotrowicz for Get key/value from selected Autocomplete item ppiotrowicz 2009-06-30T05:00:16Z 2009-06-30T05:00:16Z <p>You should have some kind of callback function, like this one (those functions are from demo):</p> <pre><code>function findValueCallback(event, data, formatted) { $("&lt;li&gt;").html( !data ? "No match!" : "Selected: " + formatted).appendTo("#result"); } </code></pre> <p>And then you should add this function as a handler for "result" event on your textboxes:</p> <pre><code>$(":text, textarea").result(findValueCallback).next().click(function() { $(this).prev().search(); }); </code></pre> http://stackoverflow.com/questions/1059517/jquery-wont-replace-anymore-after-the-first-time/1059531#1059531 3 Answer by ppiotrowicz for jQuery won't replace anymore after the first time ppiotrowicz 2009-06-29T17:39:25Z 2009-06-29T17:39:25Z <p>Because you're setting event hadlers to elements that don't yet exist.</p> <p>Try </p> <pre><code>.live("click", function() { }); </code></pre> <p>instead .click(function() { ...</p> http://stackoverflow.com/questions/1049327/how-can-i-confirm-and-then-disable-a-button-in-asp-net-javascript/1049661#1049661 0 Answer by ppiotrowicz for How can I confirm and then disable a button in asp.net/javascript ppiotrowicz 2009-06-26T15:12:16Z 2009-06-26T15:12:16Z <p>You should probably disable the button on the server side in the deleteButton_Click event (because you will do a postback, so you recreate the page).</p> <pre><code>&lt;asp:Button ID="deleteButton" Text="Delete" OnClick="deleteButton_Click" runat="server" OnClientClick="javascript:return confirm('are you sure blah blah blah ...')" /&gt; </code></pre> <p>And in the code-behind:</p> <pre><code>private void deleteButton_Click(object sender, EventArgs e) { deleteButton.Enabled = false; // and the rest of event handling ... } </code></pre> http://stackoverflow.com/questions/1049479/jquery-asp-net-and-jquery/1049556#1049556 0 Answer by ppiotrowicz for JQuery - ASP.NET and JQuery ppiotrowicz 2009-06-26T14:51:01Z 2009-06-26T14:51:01Z <p>No, you just have to add jQuery to the .aspx file (or it's master page).</p> <pre><code>&lt;script type="text/javascript" src="path/to/jquery.js"&gt;&lt;/script&gt; </code></pre> <p>And you can use it! :)</p> http://stackoverflow.com/questions/919205/regular-expression-to-find-files-with-various-extensions-like-aspx-ascx-js-rpt/919252#919252 1 Answer by ppiotrowicz for Regular Expression to find files with various extensions like-ASPX,ASCX,.js,.rpt,.xml ppiotrowicz 2009-05-28T05:06:29Z 2009-05-28T05:06:29Z <p>Assuming you have a list of files and you are looking for .pdf, .chm and .doc, you can check it with:</p> <blockquote> <p><code>\.pdf$|\.chm$|\.doc$</code></p> </blockquote> <p>Regex above should work if you will check it against single filenames.</p> http://stackoverflow.com/questions/919219/should-i-use-a-code-coverage-tool/919242#919242 1 Answer by ppiotrowicz for Should I Use a Code Coverage Tool? ppiotrowicz 2009-05-28T05:00:16Z 2009-05-28T05:00:16Z <p>Of course you should use it. It's always another tool to help you. But remember, code coverage isn't the most important thing when testing your code. You will get a number of lines of code that are covered with tests, but that doesn't mean that your code is bugproof there. Use ncover to find places that have little or no coverage.</p> http://stackoverflow.com/questions/868559/how-do-you-refresh-references-in-asp-net-applications-without-visual-studio/870881#870881 0 Answer by ppiotrowicz for how do you refresh references in ASP.NET applications without visual studio? ppiotrowicz 2009-05-15T21:08:28Z 2009-05-15T21:08:28Z <p>Delete those .refresh files.</p> <p>Make a simple build script (using whatever you want cmd, NAnt, Rake, psake ...) that:</p> <ul> <li>copies those files to your asp.net app folder</li> <li>build you asp.net app.</li> </ul> <p><hr /></p> <p>Or you can edit your .csproj file and add something like:</p> <pre><code>&lt;ProjectExtensions&gt; &lt;PropertyGroup&gt; &lt;PreBuildEvent&gt;copy c:\path\to\dll\files $(ProjectDir)$(OutDir)&lt;/PreBuildEvent&gt; &lt;/PropertyGroup&gt; &lt;/ProjectExtensions&gt; </code></pre> <p>This will add a pre build action that will copy your dll files to the output dir of your asp.net app. You'll have to build it with MsBuild</p> http://stackoverflow.com/questions/870729/this-reference-best-practices/870768#870768 0 Answer by ppiotrowicz for "this" reference best-practices ppiotrowicz 2009-05-15T20:40:21Z 2009-05-15T20:40:21Z <p>I use this only when necessary (disambiguation or when I want to express my intentions more clearly).</p> <p>It really depends on your preferences and naming conventions.</p> http://stackoverflow.com/questions/870697/unable-to-cast-object-of-type-system-dbnull-to-type-system-string/870719#870719 0 Answer by ppiotrowicz for Unable to cast object of type 'System.DBNull' to type 'System.String` ppiotrowicz 2009-05-15T20:27:40Z 2009-05-15T20:27:40Z <p>I suppose you can do it like this:</p> <pre><code>string accountNumber = DBSqlHelperFactory.ExecuteScalar(...) as string; </code></pre> <p>If accountNumber is null it means it was DBNull not string :)</p> http://stackoverflow.com/questions/869886/pc-equivalent-of-coda/870196#870196 2 Answer by ppiotrowicz for PC equivalent of Coda? ppiotrowicz 2009-05-15T18:37:29Z 2009-05-15T18:37:29Z <p><a href="http://www.aptana.com/" rel="nofollow">Aptana</a> maybe?</p> http://stackoverflow.com/questions/869765/which-editors-are-recommended-for-writing-ruby-or-ruby-on-rails-code/869861#869861 1 Answer by ppiotrowicz for Which editors are recommended for writing Ruby or Ruby on Rails code? ppiotrowicz 2009-05-15T17:12:54Z 2009-05-15T17:12:54Z <p>There's a new editor from JetBrains <a href="http://www.jetbrains.com/ruby/index.html" rel="nofollow">Ruby Mine</a>.</p> http://stackoverflow.com/questions/869530/how-to-authenticate-on-asp-net/869564#869564 6 Answer by ppiotrowicz for How to authenticate on ASP.NET ppiotrowicz 2009-05-15T16:07:09Z 2009-05-15T16:07:09Z <p>Membership is the easiest way to provide authentication IMO. If you're interested in using it I recommend this <a href="http://aspnet.4guysfromrolla.com/articles/120705-1.aspx" rel="nofollow">tutorial</a> by Scott Mitchell:</p> http://stackoverflow.com/questions/622474/asp-net-ajax-without-update-panel 0 ASP.NET AJAX without update panel ppiotrowicz 2009-03-07T20:45:50Z 2009-03-07T21:29:56Z <p>Hello, What is the best practice to support data for asp.net 2.0-3.5 ajax web application? I don't want to use update panels, just plain text data (JSON). Should I use web services? Or is there another way.</p> http://stackoverflow.com/questions/622403/recommendations-for-simple-ajax/622439#622439 1 Answer by ppiotrowicz for Recommendations for simple AJAX? ppiotrowicz 2009-03-07T20:29:16Z 2009-03-07T20:29:16Z <ol> <li>jQuery isn't indispensable, but it's very helpful.</li> <li>never heard about it</li> <li>I think one js framework is enough. So i recommend jQuery.</li> <li>CSS reset is not going to fix all compatibility issues, but it can help significantly. For ultimate css reset see <a href="http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/" rel="nofollow">Eric Meyer's CSS reset</a>.</li> <li>Try <a href="http://browsershots.org/" rel="nofollow">http://browsershots.org/</a></li> <li>I don't have any recommendation here.</li> <li>For debugging javascript - firebug (firefox extension). You can also want to try fiddler to check what's passed between server and client.</li> </ol> http://stackoverflow.com/questions/622398/using-jquery-ui/622401#622401 0 Answer by ppiotrowicz for using jquery-ui ppiotrowicz 2009-03-07T20:12:15Z 2009-03-07T20:17:41Z <p>I'm no expert but you're missing &lt;head&gt; tag.</p> http://stackoverflow.com/questions/599802/what-is-the-best-place-to-read-a-book/599810#599810 1 Answer by ppiotrowicz for What is the best place to read a book? ppiotrowicz 2009-03-01T13:20:01Z 2009-03-01T13:20:01Z <p>Reading books in bed has one disadvantage - you can easily fall asleep :). Especially when reading late.</p> <p>The best place for me is by the desk, on a comfortable chair, with coffee on the desk.</p> http://stackoverflow.com/questions/598025/how-do-i-get-this-sql-injection-to-work/598030#598030 1 Answer by ppiotrowicz for How do I get this SQL injection to work? ppiotrowicz 2009-02-28T13:36:39Z 2009-02-28T18:41:16Z <p>You can use '--' (comment in SQL) to comment out the password part. Of course it only works when someone is not prepared for that by using prepared statements.</p> <p>Here you have more on this topic: <a href="http://www.owasp.org/index.php/Preventing_SQL_Injection_in_Java" rel="nofollow">http://www.owasp.org/index.php/Preventing_SQL_Injection_in_Java</a></p> http://stackoverflow.com/questions/595928/visual-studio-task-panel/597752#597752 1 Answer by ppiotrowicz for Visual Studio Task Panel ppiotrowicz 2009-02-28T08:37:07Z 2009-02-28T08:37:07Z <p>Try to memorize their shortcuts, and keep'em closed.</p> http://stackoverflow.com/questions/596142/would-you-like-to-continue-and-run-the-last-successful-build/596261#596261 1 Answer by ppiotrowicz for Would you like to continue and run the last successful build? ppiotrowicz 2009-02-27T19:30:10Z 2009-02-27T19:30:10Z <p>I have a scenario when this feature is useful. Imagine your boss coming to your room, asking what are you doing, and you want to show him, but you made some change to the code and it's not compiling ... :). Naaah ... it's stupid :D. Fortunately this feature can be turned off</p> http://stackoverflow.com/questions/595421/is-unit-testing-of-accessors-a-must/595802#595802 2 Answer by ppiotrowicz for Is unit-testing of accessors a must? ppiotrowicz 2009-02-27T17:42:03Z 2009-02-27T17:42:03Z <p>You don't have to write test for properties that contain no logic.</p> <p>The only explanation to test simple properties is to boost test coverage - but it's just silly.</p> http://stackoverflow.com/questions/1243711/xsd-restrictions/1244149#1244149 Comment by ppiotrowicz on XSD restrictions ppiotrowicz 2009-08-07T11:13:58Z 2009-08-07T11:13:58Z Just as I thougth. Thanks for your answer. http://stackoverflow.com/questions/1243711/xsd-restrictions/1243730#1243730 Comment by ppiotrowicz on XSD restrictions ppiotrowicz 2009-08-07T09:24:08Z 2009-08-07T09:24:08Z Thanks for the response. I'll look closer to schematron. http://stackoverflow.com/questions/1228649/what-is-jquerys-equivalent-to-prototypes-ajax-responders-register/1228698#1228698 Comment by ppiotrowicz on What is jQuery's equivalent to Prototype's Ajax.Responders.register? ppiotrowicz 2009-08-04T17:18:35Z 2009-08-04T17:18:35Z Oops, you're right. Sorry. http://stackoverflow.com/questions/1228439/x509-guide-tutorial-in-c/1228461#1228461 Comment by ppiotrowicz on X509 guide/tutorial in C# ppiotrowicz 2009-08-04T16:45:26Z 2009-08-04T16:45:26Z Thanks, I've tried that already, but it's not exactly what I'm looking for http://stackoverflow.com/questions/1221185/identical-build-on-different-systems Comment by ppiotrowicz on Identical build on different systems ppiotrowicz 2009-08-04T04:42:03Z 2009-08-04T04:42:03Z 1. Yes, those are different processors, but they are all intels. 2. I'm pretty sure i have the same updates, but just to be sure, i will reinstall win2008 today. Thanks for reply http://stackoverflow.com/questions/1221313/table-cell-not-spanning-correctly Comment by ppiotrowicz on Table cell not spanning correctly ppiotrowicz 2009-08-03T09:03:40Z 2009-08-03T09:03:40Z Can you paste the code? http://stackoverflow.com/questions/1221185/identical-build-on-different-systems Comment by ppiotrowicz on Identical build on different systems ppiotrowicz 2009-08-03T08:54:47Z 2009-08-03T08:54:47Z It has to run in 32-bit compat, there is no 64bit version of visual studio AFAIK http://stackoverflow.com/questions/1221185/identical-build-on-different-systems/1221213#1221213 Comment by ppiotrowicz on Identical build on different systems ppiotrowicz 2009-08-03T08:51:10Z 2009-08-03T08:51:10Z Yes, i'm sure. They're in Program Files (x86) http://stackoverflow.com/questions/1221185/identical-build-on-different-systems/1221238#1221238 Comment by ppiotrowicz on Identical build on different systems ppiotrowicz 2009-08-03T08:44:35Z 2009-08-03T08:44:35Z With optimizations turned off (/Od switch) i have the same problem. Bitwise equality is crucial in this project (can't really discuss why, sorry). http://stackoverflow.com/questions/1221185/identical-build-on-different-systems/1221221#1221221 Comment by ppiotrowicz on Identical build on different systems ppiotrowicz 2009-08-03T08:39:04Z 2009-08-03T08:39:04Z It might be, but dlls from 32bit systems are are almost identical. The only difference is that <i>3</i> functions are in different order (and there are lots of functions in the project). Disasembled code is almost the same. http://stackoverflow.com/questions/1221185/identical-build-on-different-systems/1221213#1221213 Comment by ppiotrowicz on Identical build on different systems ppiotrowicz 2009-08-03T08:35:37Z 2009-08-03T08:35:37Z Yes, I'm building with vs2005 with SP1 everywhere (.net 2.0 SP1 is also installed). Building to win32 platform. http://stackoverflow.com/questions/1059517/jquery-wont-replace-anymore-after-the-first-time/1059531#1059531 Comment by ppiotrowicz on jQuery won't replace anymore after the first time ppiotrowicz 2009-06-29T17:48:03Z 2009-06-29T17:48:03Z Didn't see his answer, before I posted mine. But i've already upvoted his answer :). http://stackoverflow.com/questions/1049327/how-can-i-confirm-and-then-disable-a-button-in-asp-net-javascript/1049661#1049661 Comment by ppiotrowicz on How can I confirm and then disable a button in asp.net/javascript ppiotrowicz 2009-06-26T16:13:52Z 2009-06-26T16:13:52Z You're right, but maybe he's keeping that data in ViewState. http://stackoverflow.com/questions/919205/regular-expression-to-find-files-with-various-extensions-like-aspx-ascx-js-rpt Comment by ppiotrowicz on Regular Expression to find files with various extensions like-ASPX,ASCX,.js,.rpt,.xml ppiotrowicz 2009-05-28T05:07:55Z 2009-05-28T05:07:55Z Can you paste an example of string in which you want to search? http://stackoverflow.com/questions/870772/ajax-modal-popup-and-gridviews Comment by ppiotrowicz on Ajax Modal Popup and gridviews ppiotrowicz 2009-05-15T20:47:47Z 2009-05-15T20:47:47Z Please paste the code, where you look for 'btnview'.