User Makach - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T15:24:32Zhttp://stackoverflow.com/feeds/user/57731http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1903086/how-do-i-start-doing-diagram-development-in-c5How do I start doing diagram development in c#Makach2009-12-14T19:54:54Z2009-12-14T20:41:47Z
<p>I'd like to try to create a diagram making tool (something like entity-relation diagram you can create in SQL Server 2005, or class diagrams you can do in Microsoft Visual Studio) </p>
<p>Ie. I'd like to create boxes, put text in them, be able to edit this text and draw lines between boxes. </p>
<p>I never did this kind of programming before so I don't know where to start. </p>
<p>Do I use XAML or create a canvas and go into graphics programming? </p>
<p>I know there are some diagram tools out there but I'd really like to find out of these things by doing it myself. </p>
http://stackoverflow.com/questions/1735550/find-the-minimum-number-in-an-array-with-recursion/1735570#17355700Answer by Makach for Find the minimum number in an array with recursion?Makach2009-11-14T20:56:27Z2009-11-14T20:56:27Z<p>Why do you want to do this with recursion? A general rule with recursion is don't use recursion if you can do it inside a simple linear loop. </p>
http://stackoverflow.com/questions/1700361/how-to-convert-a-guid-to-a-string-in-c/1700372#17003721Answer by Makach for How to convert a GUID to a string in C#?Makach2009-11-09T11:03:06Z2009-11-09T11:03:06Z<p>Did you write</p>
<pre><code>String guid = System.Guid.NewGuid().ToString;
</code></pre>
<p>or</p>
<pre><code>String guid = System.Guid.NewGuid().ToString();
</code></pre>
<p>notice the paranthesis</p>
http://stackoverflow.com/questions/1660053/net-development-in-a-team/1660091#16600910Answer by Makach for .NET Development In a TeamMakach2009-11-02T08:49:55Z2009-11-02T08:49:55Z<p>You can never be safe from any kind of theft. </p>
http://stackoverflow.com/questions/1593669/pdf-viewer-on-the-net/1593693#15936931Answer by Makach for PDF viewer on the .netMakach2009-10-20T10:23:30Z2009-10-20T10:23:30Z<p>This is strictly not programming related. You need a Pdf reader on the client to be able to view Pdf documents. </p>
<p>Follow the links and install. There should be plugins to read Pdf documents for all known browsers.</p>
<p>On the other hand. If you want to convert your Pdf documents to html text you could check out <a href="http://pdftohtml.sourceforge.net" rel="nofollow">Pdf to Html </a></p>
http://stackoverflow.com/questions/1588471/can-a-simple-program-be-responsible-for-a-bsod/1588489#15884893Answer by Makach for Can a simple program be responsible for a BSOD?Makach2009-10-19T12:43:39Z2009-10-19T12:43:39Z<p>Well, yes it can - but for many different reasons. </p>
<p><i>That's why we test on different machines, operating systems, hardware etc..</i></p>
<p>Have you set some requirements for your program and is your user following them? </p>
http://stackoverflow.com/questions/143429/whats-the-least-useful-comment-youve-ever-seen/1557214#15572140Answer by Makach for What's the least useful comment you've ever seen?Makach2009-10-12T22:10:51Z2009-10-12T22:10:51Z<p>Actually I have a few of these,</p>
<pre><code>// 18042009: (Name here) made me do this
</code></pre>
<p>Not very proud of those comments but I keep them to remind me why I did WTF code that particular section, so useful in that aspect. </p>
http://stackoverflow.com/questions/1319191/how-to-convert-double-to-string-without-the-power-to-10-representation-e-051How to convert double to string without the power to 10 representation (E-05) Makach2009-08-23T18:21:18Z2009-10-09T22:53:35Z
<p>How to convert double to string without the power to 10 representation (E-05) </p>
<pre><code>double value = 0.000099999999833333343;
string text = value.ToString();
Console.WriteLine(text); // 9,99999998333333E-05
</code></pre>
<p>I'd like the string <em>text</em> to be 0.000099999999833333343 (or nearly that, I'm not doing rocket science:)</p>
<p>I've tried the following variants </p>
<pre><code>Console.WriteLine(value.ToString()); // 9,99999998333333E-05
Console.WriteLine(value.ToString("R20")); // 9,9999999833333343E-05
Console.WriteLine(value.ToString("N20")); // 0,00009999999983333330
Console.WriteLine(String.Format("{0:F20}", value)); // 0,00009999999983333330
</code></pre>
<p>Doing tostring N20 or format F20 seems closest to what I want, but I do end up with a lot of trailing zeros, is there a clever way to avoid this? I'd like to get as close to the double representation as possible 0.000099999999833333343</p>
http://stackoverflow.com/questions/1517172/number-of-comparisons-using-merge-sort/1517241#15172411Answer by Makach for Number of Comparisons using merge sort.Makach2009-10-04T20:00:38Z2009-10-04T20:00:38Z<p><a href="http://www.sorting-algorithms.com/" rel="nofollow">http://www.sorting-algorithms.com/</a> </p>
http://stackoverflow.com/questions/1464490/print-all-combinations-from-0000-to-9999-in-c/1464507#14645071Answer by Makach for Print all combinations from 0000 to 9999 in C#Makach2009-09-23T07:41:27Z2009-09-23T07:41:27Z<p>Do you want to count to 9999? </p>
http://stackoverflow.com/questions/1451964/prime-number/1451974#14519740Answer by Makach for Prime number. Makach2009-09-20T20:48:13Z2009-09-20T20:48:13Z<p>All from wikipedia</p>
<p><a href="http://en.wikipedia.org/wiki/Prime%5Fnumber" rel="nofollow">http://en.wikipedia.org/wiki/Prime%5Fnumber</a> </p>
<p><a href="http://en.wikipedia.org/wiki/Formula%5Ffor%5Fprimes" rel="nofollow">http://en.wikipedia.org/wiki/Formula%5Ffor%5Fprimes</a></p>
<p><a href="http://en.wikipedia.org/wiki/List%5Fof%5Fprimes" rel="nofollow">http://en.wikipedia.org/wiki/List%5Fof%5Fprimes</a></p>
http://stackoverflow.com/questions/1450984/storing-database-connections-in-session-in-a-small-scale-webapp/1450999#14509990Answer by Makach for Storing database connections in session, in a small scale webappMakach2009-09-20T13:17:38Z2009-09-20T13:17:38Z<p>No. Don't do that. It's perfectly ok to reconnect to the database every time you need to. Any database management system will do their own connection pool caching I think. </p>
<p>If you want to try to keep open connections you'll make it incredible hard for yourself to manage this in a secure, bug-free, safe etc way. </p>
http://stackoverflow.com/questions/1448321/breaking-down-the-project-into-small-tasks/1448355#14483551Answer by Makach for Breaking down the project into small tasksMakach2009-09-19T11:17:54Z2009-09-19T11:17:54Z<p>You need to pick up a basic book about project management, read it and practice what you learn from it. Check out the Wikipedia article about project management is is a good starting point: <a href="http://en.wikipedia.org/wiki/Project%5Fmanagement" rel="nofollow">http://en.wikipedia.org/wiki/Project%5Fmanagement</a> </p>
<p>A way to break down projects is to set milestones and do rough estimation to reach those milestones. Don't over complicate things. Usually project planning and estimates are unreliable in the beginning of a project. But as you go along estimation and plans improve as you get to know what your are building. </p>
<p>You could break you project down into 4-hour tasks but that would be micromanaging (unless you really can fit a unit of work into 4-hrs :)) I'd recommend against it, specially in the beginning of a project.</p>
<p>Regarding programmers testing their code: </p>
<p>It is pretty common today to have programmers test their code, testing is a huge domain like project management. For instance you do different kind of testing in the different stages of the system development life cycle: </p>
<ol>
<li><p>During development you could do test driven development->make your developers write the test first and when their code is verified against the test it is ready to be committed to whatever source code repository you use.</p></li>
<li><p>Once all your code is submitted and you have a early version of your software you could do internal testing, like system testing where you have testers or programmers to test the application. </p></li>
<li><p>When you're happy with the systems testing you could do user acceptance testing before deploying it anywhere. User acceptance testing should be performed by whoever is your target users. </p></li>
</ol>
<p>I wish you good luck with your project :)</p>
http://stackoverflow.com/questions/1420009/i-dont-get-this-c-c-joke/1420054#14200541Answer by Makach for I don't get this C/C++ JokeMakach2009-09-14T06:59:00Z2009-09-14T06:59:00Z<p>Um, re read the article :)</p>
<p>The real WTF was that he touched the entire solution with these kinds of changes when he was supposed to fix a memory leak. </p>
<p>Also doing a change like this wouldn't matter much except potentially breaking/introducing bugs in other, maybe more complicated files, than the example one. </p>
http://stackoverflow.com/questions/1418532/urgent-how-to-force-a-postback-with-asp-net-and-c/1418566#14185660Answer by Makach for URGENT: How to force a postback with asp.net and C#Makach2009-09-13T18:56:32Z2009-09-13T18:56:32Z<p>Do you need a post back to populate a list? Did you look into if solving it with Ajax could help?? </p>
<p>Or if you just need a quick and dirty thing, just fake it and fix it later. </p>
http://stackoverflow.com/questions/1392694/how-to-set-9000-characters-in-nvarcharmax/1392750#13927500Answer by Makach for how to set 9000 characters in nvarchar(max)Makach2009-09-08T08:40:45Z2009-09-08T08:40:45Z<p>if you write a small program that tries the same thing outside the management studio you will be able to do this. </p>
<p>unfortunately for some reason it is not possible to do this with a insert statement in the management studio. there is a 4k limit on what you put into the management studio.</p>
<p>I've people do inserts before, ie, first insert 4k chars then the next 4k chars etc </p>
http://stackoverflow.com/questions/1392666/using-return-and-short-hand-if-in-c/1392673#13926736Answer by Makach for Using return and short-hand if in C#Makach2009-09-08T08:19:37Z2009-09-08T08:25:19Z<p>try this:</p>
<pre><code>return count > 0;
</code></pre>
<p>before return returns the expression count > 0 is evaluated and gives true or false. </p>
<p>this should also work: </p>
<pre><code>return (count > 0 ? true : false);
</code></pre>
<p>but I'd recommend you didn't do this. </p>
<p>I always try to keep the amount of horizontal operations low, I believe it makes it easier to read code. </p>
<p>just imagine the following scenario which will just confuse :)</p>
<pre><code>return count > 0 ? false : true;
</code></pre>
http://stackoverflow.com/questions/156989/how-to-make-programming-more-comfortable/1304391#13043910Answer by Makach for How to make programming more comfortable?Makach2009-08-20T06:52:38Z2009-08-20T06:52:38Z<p>Exercise! Move your body. A healthy body makes a healthy mind makes <em>you</em> a better programmer.</p>
http://stackoverflow.com/questions/1292856/why-connect-to-mysql-is-so-slow/1292870#12928700Answer by Makach for why connect to mysql is so slow ?Makach2009-08-18T09:36:57Z2009-08-18T09:36:57Z<p>firewalls, Internet, routing etc etc slows down your connection. </p>
<p>You should put your database on a intra net instead. Keep it local and behind your big firewall. You can of course have firewall and security between computers. I'd recommend that you didn't expose your mysql database connection to the Internet unfiltered that way. </p>
http://stackoverflow.com/questions/1264705/are-default-program-icons-protected-by-copyright/1264780#12647801Answer by Makach for Are default program icons protected by copyright?Makach2009-08-12T07:42:50Z2009-08-12T07:42:50Z<p>Icons, rights?
What could possibly be more relevant than <a href="http://www.iconfinder.net/" rel="nofollow">http://www.iconfinder.net/</a></p>
http://stackoverflow.com/questions/1211463/simple-non-web-based-bug-tracker/1211512#12115120Answer by Makach for Simple non-web based bug trackerMakach2009-07-31T09:18:50Z2009-07-31T09:18:50Z<p>Proprietary TestTrack (<a href="http://www.seapine.com/ttpro.html" rel="nofollow">http://www.seapine.com/ttpro.html</a>) has a client edition that will those things. We use it at work and I'm very happy using it.</p>
<p>Maybe you can check out this wikipedia article for hints
<a href="http://en.wikipedia.org/wiki/Comparison_of_issue_tracking_systems" rel="nofollow">http://en.wikipedia.org/wiki/Comparison_of_issue_tracking_systems</a> </p>
http://stackoverflow.com/questions/1208766/quicksort-in-c-is-slow/1208803#12088030Answer by Makach for quicksort in C++ is slowMakach2009-07-30T19:29:36Z2009-07-31T05:27:47Z<p>Insertion Sort.. </p>
<p>On small datasets you can use different algorithms to get optimal performance. QuickSort shines once the dataset grows. </p>
<p>There are different approaches. You can use data structures where you sort on insert, and there are onces where you sort the complete dataset. You just need to find your optimal algorithm. </p>
http://stackoverflow.com/questions/1152140/how-to-test-if-a-file-is-fully-copied-in-net/1152757#11527570Answer by Makach for How to test if a file is fully copied in .NETMakach2009-07-20T10:16:17Z2009-07-20T10:16:17Z<p>Are the files big? </p>
<p>Maybe you could try to calculate a the md5 checksum on the file? </p>
<p>If you put the md5 hash in the filename you could retrieve it and try to recalculate the checksum on the file. When the md5 is a match you could assume that the file is finished.</p>
<pre><code>byte[] md5Hash = null;
MD5 md5 = new MD5CryptoServiceProvider();
using (FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read))
md5Hash = md5.ComputeHash(fs);
StringBuilder hex = new StringBuilder();
foreach (byte b in md5Hash)
hex.Append(b.ToString("x2"));
</code></pre>
http://stackoverflow.com/questions/1130569/how-important-is-portability0How important is portability? Makach2009-07-15T10:20:56Z2009-07-15T10:58:12Z
<p>I was just writing a procedure that is looking for a newline and I was contemplating using Environment.NewLine vs '\n'. </p>
<p>Syntactically: Is Environment.NewLine clearer than '\n'? </p>
<p>And how important is portability <i>really</i>? </p>
http://stackoverflow.com/questions/1062620/psp-vs-agile-which-one-is-better-for-medium-team-5-10-developer/1065236#10652360Answer by Makach for PSP vs Agile which one is better for medium team (5 - 10 developer)Makach2009-06-30T18:33:02Z2009-06-30T18:33:02Z<p>PSP is personal software process. Very nice for getting a basic understanding about how to interact in a team, but it is no team methodology. Read laalto's post again it is very good:)</p>
http://stackoverflow.com/questions/1065026/xml-referencing-other-xml-files/1065049#10650490Answer by Makach for XML - Referencing Other XML FilesMakach2009-06-30T17:51:25Z2009-06-30T17:51:25Z<p>Um, there are no size limitations on xml files. you shouldn't worry about extremely large sizes. But remember; Xml is a data exchange format, not a database format. You use xml to swap data between different applications/services.</p>
http://stackoverflow.com/questions/1059948/should-inability-to-code-under-pressure-be-a-valid-excuse-when-writing-code-in/1060073#10600731Answer by Makach for Should "inability to code under pressure" be a valid excuse when writing code in an interview?Makach2009-06-29T19:35:02Z2009-06-29T19:35:02Z<p>Remember, when you're talking to a candidate it's a mutual interview, you talk to your candidates and they talk to you. You can quiz them but if you like but don't ask them to work for you. I don't believe it's the place for such things. </p>
<p>If you want them to code, use the probation period, give them a simple task and see how they perform. </p>
<p>We had some success just handing out some code to look at (real simple stuff) where we discussed pros/cons and what was going on in the code. You quickly realize which candidate you want to give a probation period. </p>
http://stackoverflow.com/questions/1032064/reassociate-file-types-with-visual-studio-20030Reassociate file types with Visual Studio 2003Makach2009-06-23T11:47:03Z2009-06-28T10:34:26Z
<p>I have a dual setup development machine with Visual Studio 2003 and 2005.</p>
<p>How can I restore the original file associations to Visual Studio 2003? </p>
<p>Everytime I try to open up a *.cs file it opens it with 2005 when I want it to default open up in 2003. </p>
<p>I know how to do this using the the "Windows Explorer/Folder Options/File Types" interface, but I am wondering if there is a more efficient way to restore the associated file types back to Visual Studio 2003.</p>
<p>Edit: </p>
<p>In Visual Studio 2005 and 2008 you can restore file associations by following the menu links:
Tools > Options > Environment > General > Restore File Associations</p>
<p>In order to restore file associations for Visual Studio 2003 you have to rerun the installation dvd and specify repair install. </p>
http://stackoverflow.com/questions/1047853/what-features-do-you-miss-in-c/1047866#10478663Answer by Makach for What features do you miss in C++?Makach2009-06-26T07:52:26Z2009-06-26T07:52:26Z<p>I miss the same functionality as I miss in any programming language, functions that will do my work for me. </p>
http://stackoverflow.com/questions/1047163/xslt-transformation/1047246#10472462Answer by Makach for XSLT TransformationMakach2009-06-26T03:59:55Z2009-06-26T03:59:55Z<p>First, change your xml </p>
<p>create data.xml
</p>
<pre><code><blogger>
<post>
<text>...</text>
<categories>
<category>Engineering</category>
<category>Internet</category>
<category>Sausages</category>
</categories>
</post>
<post>
<text>...</text>
<categories>
<category>Internet</category>
<category>Sausages</category>
</categories>
</post>
<post>
<text>...</text>
<categories>
<category>Sausages</category>
</categories>
</post>
</blogger>
</code></pre>
<p>Then write your xslt, create transform.xslt</p>
<pre><code><?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:template match="/">
<xsl:for-each select="//category">
<xsl:variable name="value" select="."/>
<xsl:if test="count(preceding::category[.=$value]) = 0">
<xsl:value-of select="."/>
<xsl:text> (</xsl:text>
<xsl:value-of select="count(//category[.=$value])"/>
<xsl:text>)</xsl:text><br/>
</xsl:if>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>Then you can open data.xml in internet explorer and get the following result:</p>
<pre>Engineering (1)Internet (2)Sausages (3)</pre>
http://stackoverflow.com/questions/1844225/whats-the-most-elegant-10-20-line-function-youve-seen-written/1845660#1845660Comment by Makach on What's the most elegant 10-20 line function you've seen/written?Makach2009-12-04T08:41:25Z2009-12-04T08:41:25Zreally nice work!http://stackoverflow.com/questions/1612200/how-to-call-a-function-inside-itselfComment by Makach on How to call a function inside itself?Makach2009-10-23T09:07:24Z2009-10-23T09:07:24ZIt is called recursionhttp://stackoverflow.com/questions/1593669/pdf-viewer-on-the-net/1593693#1593693Comment by Makach on PDF viewer on the .netMakach2009-10-20T11:10:47Z2009-10-20T11:10:47ZMaybe you could ask that as a separate question instead:) You could also just use a standard pdf/image icon for the html and use a descriptive text. http://stackoverflow.com/questions/1521989/regex-to-match-a-minimum-of-1-special-character/1522000#1522000Comment by Makach on Regex to match a minimum of 1 special characterMakach2009-10-05T19:43:34Z2009-10-05T19:43:34Zboth looks like swearing, :)http://stackoverflow.com/questions/1186638/is-there-a-good-reason-to-make-time-estimates-for-features-that-are-months-out/1187951#1187951Comment by Makach on Is there a good reason to make time estimates for features that are months out?Makach2009-09-27T07:06:34Z2009-09-27T07:06:34Z+1 it's a very good bookhttp://stackoverflow.com/questions/1451964/prime-number/1451972#1451972Comment by Makach on Prime number. Makach2009-09-20T20:48:53Z2009-09-20T20:48:53Zthis is just wrong^^http://stackoverflow.com/questions/1435411/what-is-the-bnf-for-a-regex-in-order-to-write-a-full-or-partial-parser/1435458#1435458Comment by Makach on What is the BNF for a regex (in order to write a full or partial parser)Makach2009-09-16T21:18:47Z2009-09-16T21:18:47Z<a href="http://www.faqts.com/knowledge%5Fbase/view.phtml/aid/25718/fid/200" rel="nofollow">faqts.com/knowledge%5Fbase/view.phtml/…</a> doesn't work for mehttp://stackoverflow.com/questions/1418532/urgent-how-to-force-a-postback-with-asp-net-and-c/1418565#1418565Comment by Makach on URGENT: How to force a postback with asp.net and C#Makach2009-09-14T06:40:18Z2009-09-14T06:40:18Zyou didn't redirect to anything. If you want to redirect put in path information. If you want to redirect to the configured default page you could put Response.Redirect(".") and Response.Redirect("/") would put you at the configured root default page.http://stackoverflow.com/questions/1319191/how-to-convert-double-to-string-without-the-power-to-10-representation-e-05/1319202#1319202Comment by Makach on How to convert double to string without the power to 10 representation (E-05) Makach2009-08-23T18:29:50Z2009-08-23T18:29:50ZThanks for your edit :) http://stackoverflow.com/questions/1304395/display-alert-boxComment by Makach on display alert box Makach2009-08-20T06:56:57Z2009-08-20T06:56:57Zwhat language? java, javascript, vb, vb.net, c#? please rephrase your question. What is it you're trying to do and where?http://stackoverflow.com/questions/156989/how-to-make-programming-more-comfortable/157831#157831Comment by Makach on How to make programming more comfortable?Makach2009-08-20T06:55:46Z2009-08-20T06:55:46Zthis looks like a horrible configuration. Just a small movement and the wheels would offset the foot rest forcing you to readjust. Looks a little high as well, how do you get into that chair in that position? Looks like a staged photo. :)http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/1287110#1287110Comment by Makach on What is your best programmer joke?Makach2009-08-19T10:22:45Z2009-08-19T10:22:45Z011000010111011101110011011011110110110101100101http://stackoverflow.com/questions/1292856/why-connect-to-mysql-is-so-slow/1292870#1292870Comment by Makach on why connect to mysql is so slow ?Makach2009-08-18T10:26:39Z2009-08-18T10:26:39Zah, I see you edited your question :) good to see that you found an answer to your question. http://stackoverflow.com/questions/1274238/is-this-good-c-style/1274255#1274255Comment by Makach on Is this good C# style?Makach2009-08-13T20:17:35Z2009-08-13T20:17:35Zif you can test and return value instead of throwing exceptions left and right I believe that would be better. http://stackoverflow.com/questions/1210888/which-way-i-should-take-to-evolve-in-programming/1210980#1210980Comment by Makach on Which way I should take to evolve in programmingMakach2009-07-31T06:44:02Z2009-07-31T06:44:02Z+1 This is very very true! At my current job I just do maintenance. I Rarely get to write code. Mostly I just read code and modify it. It's in my private time when I do personal projects I write code and "somewhat" evolve.