User Marcin K - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T02:27:58Zhttp://stackoverflow.com/feeds/user/28722http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1414745/why-is-it-considered-a-good-practice-to-store-radically-different-data-types-in-s0Why is it considered a good practice to store radically different data types in separate repositories while using SVN?Marcin K2009-09-12T09:39:50Z2009-09-15T10:42:42Z
<p><a href="http://www.red-bean.com/fitz/presentations/2006-06-28-AC-EU-Subversion-best-practices.pdf" rel="nofollow">Example 1</a>
<a href="http://bradchoate.com/weblog/2006/07/27/oscon-subversion-best-practices" rel="nofollow">Example 2</a></p>
http://stackoverflow.com/questions/226970/whats-the-best-open-source-game-ever39What's the best open source game ever?Marcin K2008-10-22T18:21:55Z2009-06-21T10:39:43Z
<p>For me to read code and learn, not to play...</p>
<p>...of course ;-)</p>
http://stackoverflow.com/questions/210270/software-patents-or-can-i-write-a-rsvp-program-for-my-mobile-device0Software patents or Can I write a RSVP program for my mobile device?Marcin K2008-10-16T20:54:45Z2009-05-29T17:46:50Z
<p>I wanted to write a small <a href="http://en.wikipedia.org/wiki/Rapid_Serial_Visual_Presentation" rel="nofollow">Rapid Serial Visual Presentation (RSVP)</a> program for my mobile device but I realized that there are some patent issues associated with that technique (<a href="http://www.freepatentsonline.com/EP1275051.html" rel="nofollow">exhibit 1</a> and <a href="http://patft.uspto.gov/netacgi/nph-Parser?Sect2=PTO1&Sect2=HITOFF&p=1&u=%2Fnetahtml%2Fsearch-bool.html&r=1&f=G&l=50&d=PALL&RefSrch=yes&Query=PN%2F6056551" rel="nofollow">exhibit 2</a>). </p>
<p>Can I write such program and try to make money with it? Would it be legal to give such program for free?</p>
http://stackoverflow.com/questions/887456/windows-service-writing-files-to-network-share/887521#8875210Answer by Marcin K for Windows service writing files to network shareMarcin K2009-05-20T12:01:33Z2009-05-20T12:05:46Z<p>How are you accessing the share? Isn't it by any chance the mounted directory? So lets say \server1\direcotry1 is mounted to z:\directory1 or something like that. If it is so, you have to make sure that the service user "sees" the mounted directory. Or go with standard UNC path (with double <code>\</code>). </p>
http://stackoverflow.com/questions/761417/tool-to-migrate-data-between-different-dbms/796712#7967121Answer by Marcin K for Tool to migrate data between different DBMS?Marcin K2009-04-28T07:54:01Z2009-04-28T07:54:01Z<p>You can check out the Cross-Database Studio. Its not free but it will do the job you want to be done. I've used it to perform DB comparisons but it can by used for migration as well.</p>
<p><a href="http://www.dbbalance.com" rel="nofollow">http://www.dbbalance.com</a></p>
http://stackoverflow.com/questions/295312/visual-studio-why-do-you-use-the-specific-edition-that-you-do/295349#295349-2Answer by Marcin K for Visual Studio: why do you use the specific edition that you do?Marcin K2008-11-17T11:21:18Z2008-11-17T11:21:18Z<p>The main question is weather you plan to do the Framework 3.5 development. If so the obvious chaise is VS2008. If you want to do only the Framework 2.0/3.0 development you are quite good with VS2005. </p>
<p>Note: with VS2008 you are able to do the Framework 2.0, 3.0 3.5 development.</p>
http://stackoverflow.com/questions/271588/passing-null-arguments-to-c-methods/271593#2715931Answer by Marcin K for Passing null arguments to C# methodsMarcin K2008-11-07T09:15:40Z2008-11-07T09:20:58Z<p>From C# 2.0:</p>
<pre><code>private void Example(int? arg1, int? arg2)
{
if(arg1 == null)
{
//do something
}
if(arg2 == null)
{
//do something else
}
}
</code></pre>
http://stackoverflow.com/questions/243655/what-is-the-best-open-source-net-content-management-system-cms/243677#2436771Answer by Marcin K for What is the best open source .NET content management system (CMS)?Marcin K2008-10-28T15:11:47Z2008-10-28T15:11:47Z<p><a href="http://umbraco.org/" rel="nofollow">Umbraco</a></p>
<p>Or look at this <a href="http://csharp-source.net/open-source/content-managment-systems" rel="nofollow">list</a>.</p>
http://stackoverflow.com/questions/239450/can-i-compare-two-ms-access-files/239540#2395401Answer by Marcin K for Can I compare two ms-access filesMarcin K2008-10-27T10:45:02Z2008-10-27T10:45:02Z<p>I have very good experience with <a href="http://www.dbbalance.com/" rel="nofollow">Cross-Database Comparator</a>. It is able to compare structure and/or data.</p>
http://stackoverflow.com/questions/239394/what-is-the-initial-cost-of-setting-up-cruisecontrol/239415#2394154Answer by Marcin K for What is the initial cost of setting up CruiseControl?Marcin K2008-10-27T09:31:46Z2008-10-27T09:31:46Z<p>The key point here is not the time you have to invest in setting up CruiseControl. You can do this in an hour or so. The question is weather do you have a code repository (SVN, TFS) and a build script ready (something - MSBuild script or so - that will clean, rebuild, test and deploy your app). If not you will have to invest some time in that - depending on how complicated your project is - but surely it will take a lot more time than setting up a CruiseControl server.</p>
http://stackoverflow.com/questions/226924/is-there-an-application-to-generate-winform-code/226936#2269360Answer by Marcin K for Is there an application to generate Winform Code?Marcin K2008-10-22T18:11:10Z2008-10-22T18:11:10Z<p><a href="http://www.softvelocity.com/ClarionNet/ClarionNET.htm" rel="nofollow">Clarion.NET</a></p>
http://stackoverflow.com/questions/214825/should-i-agree-to-ban-the-using-directive-from-my-c-projects11Should I agree to ban the "using" directive from my c# projects?Marcin K2008-10-18T09:39:11Z2008-10-19T11:51:16Z
<p>My colleague insists on explicitly specifying the namespace in code as opposed to using the <a href="http://msdn.microsoft.com/en-us/library/sf0df423.aspx" rel="nofollow">using directive</a>. In other words he wants to use the fully qualified name for each type every time this type occurs in code. Something like this: </p>
<pre><code>public class MyClass
{
public static void Main()
{
System.Console.WriteLine("Foo");
}
}
</code></pre>
<p>instead of </p>
<pre><code>using System;
public class MyClass
{
public static void Main()
{
Console.WriteLine("Foo");
}
}
</code></pre>
<p>You can imagine the consequences.</p>
<p>The pros he gives:<br />
1. Its simpler to copy and paste code into other source files.<br />
2. It is more readable (you see the namespaces right away). </p>
<p>My cons:<br />
1. I have to write more<br />
2. The code is less readable (I guess de gustibus non disputandum est)<br />
3. No one does it! </p>
<p>What do you think about this?</p>
http://stackoverflow.com/questions/210270/software-patents-or-can-i-write-a-rsvp-program-for-my-mobile-device/214803#2148030Answer by Marcin K for Software patents or Can I write a RSVP program for my mobile device?Marcin K2008-10-18T09:15:31Z2008-10-18T09:15:31Z<p>I have no money for an attorney.</p>
<p>No attorneys on stackoverflow.com? </p>
<p>;-)</p>
http://stackoverflow.com/questions/14987/do-you-listen-to-anything-while-programming/15006#15006Comment by Marcin K on Do you listen to anything while programming?Marcin K2008-10-28T14:38:34Z2008-10-28T14:38:34ZIs listening to white noise still geeky or already nerdy? ;-)