User ppiotrowicz - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T00:23:45Zhttp://stackoverflow.com/feeds/user/71965http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1228439/x509-guide-tutorial-in-c1X509 guide/tutorial in C#ppiotrowicz2009-08-04T16:10:37Z2009-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#14373440Answer by ppiotrowicz for is this violating the SOLID principles ? ppiotrowicz2009-09-17T07:56:42Z2009-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#13878050Answer by ppiotrowicz for Best Visual Studio pluginsppiotrowicz2009-09-07T06:23:33Z2009-09-07T06:23:33Z<p>ReSharper or CodeRush are probably the obvious ones :)</p>
http://stackoverflow.com/questions/1361666/ddd-repositories/1361749#13617490Answer by ppiotrowicz for DDD Repositoriesppiotrowicz2009-09-01T10:41:43Z2009-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-restrictions0XSD restrictionsppiotrowicz2009-08-07T09:00:11Z2009-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><a>
<b name="string" value="hello">
<b name="integer" value="123">
</a>
</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#12286980Answer by ppiotrowicz for What is jQuery's equivalent to Prototype's Ajax.Responders.register?ppiotrowicz2009-08-04T16:58:29Z2009-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 = '<p style="color:red">' + exception.message + '</p>';
$('#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 = '<p style="color:red">' + thrownError + '</p>';
$(this).after(newItem);
}
})
</code></pre>
http://stackoverflow.com/questions/1221185/identical-build-on-different-systems2Identical build on different systemsppiotrowicz2009-08-03T08:19:21Z2009-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#12221750Answer by ppiotrowicz for jQuery Selector Helpppiotrowicz2009-08-03T12:49:07Z2009-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#10618420Answer by ppiotrowicz for How to give a C# handler file as a url to jquery autocompleteppiotrowicz2009-06-30T05:12:15Z2009-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#10618160Answer by ppiotrowicz for Get key/value from selected Autocomplete itemppiotrowicz2009-06-30T05:00:16Z2009-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) {
$("<li>").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#10595313Answer by ppiotrowicz for jQuery won't replace anymore after the first timeppiotrowicz2009-06-29T17:39:25Z2009-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#10496610Answer by ppiotrowicz for How can I confirm and then disable a button in asp.net/javascriptppiotrowicz2009-06-26T15:12:16Z2009-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><asp:Button ID="deleteButton" Text="Delete" OnClick="deleteButton_Click" runat="server" OnClientClick="javascript:return confirm('are you sure blah blah blah ...')" />
</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#10495560Answer by ppiotrowicz for JQuery - ASP.NET and JQueryppiotrowicz2009-06-26T14:51:01Z2009-06-26T14:51:01Z<p>No, you just have to add jQuery to the .aspx file (or it's master page).</p>
<pre><code><script type="text/javascript" src="path/to/jquery.js"></script>
</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#9192521Answer by ppiotrowicz for Regular Expression to find files with various extensions like-ASPX,ASCX,.js,.rpt,.xmlppiotrowicz2009-05-28T05:06:29Z2009-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#9192421Answer by ppiotrowicz for Should I Use a Code Coverage Tool?ppiotrowicz2009-05-28T05:00:16Z2009-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#8708810Answer by ppiotrowicz for how do you refresh references in ASP.NET applications without visual studio?ppiotrowicz2009-05-15T21:08:28Z2009-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><ProjectExtensions>
<PropertyGroup>
<PreBuildEvent>copy c:\path\to\dll\files $(ProjectDir)$(OutDir)</PreBuildEvent>
</PropertyGroup>
</ProjectExtensions>
</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#8707680Answer by ppiotrowicz for "this" reference best-practicesppiotrowicz2009-05-15T20:40:21Z2009-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#8707190Answer by ppiotrowicz for Unable to cast object of type 'System.DBNull' to type 'System.String`ppiotrowicz2009-05-15T20:27:40Z2009-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#8701962Answer by ppiotrowicz for PC equivalent of Coda?ppiotrowicz2009-05-15T18:37:29Z2009-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#8698611Answer by ppiotrowicz for Which editors are recommended for writing Ruby or Ruby on Rails code?ppiotrowicz2009-05-15T17:12:54Z2009-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#8695646Answer by ppiotrowicz for How to authenticate on ASP.NETppiotrowicz2009-05-15T16:07:09Z2009-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-panel0ASP.NET AJAX without update panelppiotrowicz2009-03-07T20:45:50Z2009-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#6224391Answer by ppiotrowicz for Recommendations for simple AJAX?ppiotrowicz2009-03-07T20:29:16Z2009-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#6224010Answer by ppiotrowicz for using jquery-uippiotrowicz2009-03-07T20:12:15Z2009-03-07T20:17:41Z<p>I'm no expert but you're missing <head> tag.</p>
http://stackoverflow.com/questions/599802/what-is-the-best-place-to-read-a-book/599810#5998101Answer by ppiotrowicz for What is the best place to read a book?ppiotrowicz2009-03-01T13:20:01Z2009-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#5980301Answer by ppiotrowicz for How do I get this SQL injection to work?ppiotrowicz2009-02-28T13:36:39Z2009-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#5977521Answer by ppiotrowicz for Visual Studio Task Panelppiotrowicz2009-02-28T08:37:07Z2009-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#5962611Answer by ppiotrowicz for Would you like to continue and run the last successful build?ppiotrowicz2009-02-27T19:30:10Z2009-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#5958022Answer by ppiotrowicz for Is unit-testing of accessors a must?ppiotrowicz2009-02-27T17:42:03Z2009-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#1244149Comment by ppiotrowicz on XSD restrictionsppiotrowicz2009-08-07T11:13:58Z2009-08-07T11:13:58ZJust as I thougth. Thanks for your answer.http://stackoverflow.com/questions/1243711/xsd-restrictions/1243730#1243730Comment by ppiotrowicz on XSD restrictionsppiotrowicz2009-08-07T09:24:08Z2009-08-07T09:24:08ZThanks for the response. I'll look closer to schematron.http://stackoverflow.com/questions/1228649/what-is-jquerys-equivalent-to-prototypes-ajax-responders-register/1228698#1228698Comment by ppiotrowicz on What is jQuery's equivalent to Prototype's Ajax.Responders.register?ppiotrowicz2009-08-04T17:18:35Z2009-08-04T17:18:35ZOops, you're right. Sorry.http://stackoverflow.com/questions/1228439/x509-guide-tutorial-in-c/1228461#1228461Comment by ppiotrowicz on X509 guide/tutorial in C#ppiotrowicz2009-08-04T16:45:26Z2009-08-04T16:45:26ZThanks, I've tried that already, but it's not exactly what I'm looking forhttp://stackoverflow.com/questions/1221185/identical-build-on-different-systemsComment by ppiotrowicz on Identical build on different systemsppiotrowicz2009-08-04T04:42:03Z2009-08-04T04:42:03Z1. 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 replyhttp://stackoverflow.com/questions/1221313/table-cell-not-spanning-correctlyComment by ppiotrowicz on Table cell not spanning correctlyppiotrowicz2009-08-03T09:03:40Z2009-08-03T09:03:40ZCan you paste the code?http://stackoverflow.com/questions/1221185/identical-build-on-different-systemsComment by ppiotrowicz on Identical build on different systemsppiotrowicz2009-08-03T08:54:47Z2009-08-03T08:54:47ZIt has to run in 32-bit compat, there is no 64bit version of visual studio AFAIKhttp://stackoverflow.com/questions/1221185/identical-build-on-different-systems/1221213#1221213Comment by ppiotrowicz on Identical build on different systemsppiotrowicz2009-08-03T08:51:10Z2009-08-03T08:51:10ZYes, i'm sure. They're in Program Files (x86)http://stackoverflow.com/questions/1221185/identical-build-on-different-systems/1221238#1221238Comment by ppiotrowicz on Identical build on different systemsppiotrowicz2009-08-03T08:44:35Z2009-08-03T08:44:35ZWith 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#1221221Comment by ppiotrowicz on Identical build on different systemsppiotrowicz2009-08-03T08:39:04Z2009-08-03T08:39:04ZIt 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#1221213Comment by ppiotrowicz on Identical build on different systemsppiotrowicz2009-08-03T08:35:37Z2009-08-03T08:35:37ZYes, 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#1059531Comment by ppiotrowicz on jQuery won't replace anymore after the first timeppiotrowicz2009-06-29T17:48:03Z2009-06-29T17:48:03ZDidn'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#1049661Comment by ppiotrowicz on How can I confirm and then disable a button in asp.net/javascriptppiotrowicz2009-06-26T16:13:52Z2009-06-26T16:13:52ZYou'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-rptComment by ppiotrowicz on Regular Expression to find files with various extensions like-ASPX,ASCX,.js,.rpt,.xmlppiotrowicz2009-05-28T05:07:55Z2009-05-28T05:07:55ZCan you paste an example of string in which you want to search?http://stackoverflow.com/questions/870772/ajax-modal-popup-and-gridviewsComment by ppiotrowicz on Ajax Modal Popup and gridviewsppiotrowicz2009-05-15T20:47:47Z2009-05-15T20:47:47ZPlease paste the code, where you look for 'btnview'.