User Makach - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T15:24:32Z http://stackoverflow.com/feeds/user/57731 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1903086/how-do-i-start-doing-diagram-development-in-c 5 How do I start doing diagram development in c# Makach 2009-12-14T19:54:54Z 2009-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#1735570 0 Answer by Makach for Find the minimum number in an array with recursion? Makach 2009-11-14T20:56:27Z 2009-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#1700372 1 Answer by Makach for How to convert a GUID to a string in C#? Makach 2009-11-09T11:03:06Z 2009-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#1660091 0 Answer by Makach for .NET Development In a Team Makach 2009-11-02T08:49:55Z 2009-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#1593693 1 Answer by Makach for PDF viewer on the .net Makach 2009-10-20T10:23:30Z 2009-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#1588489 3 Answer by Makach for Can a simple program be responsible for a BSOD? Makach 2009-10-19T12:43:39Z 2009-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#1557214 0 Answer by Makach for What's the least useful comment you've ever seen? Makach 2009-10-12T22:10:51Z 2009-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-05 1 How to convert double to string without the power to 10 representation (E-05) Makach 2009-08-23T18:21:18Z 2009-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#1517241 1 Answer by Makach for Number of Comparisons using merge sort. Makach 2009-10-04T20:00:38Z 2009-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#1464507 1 Answer by Makach for Print all combinations from 0000 to 9999 in C# Makach 2009-09-23T07:41:27Z 2009-09-23T07:41:27Z <p>Do you want to count to 9999? </p> http://stackoverflow.com/questions/1451964/prime-number/1451974#1451974 0 Answer by Makach for Prime number. Makach 2009-09-20T20:48:13Z 2009-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#1450999 0 Answer by Makach for Storing database connections in session, in a small scale webapp Makach 2009-09-20T13:17:38Z 2009-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#1448355 1 Answer by Makach for Breaking down the project into small tasks Makach 2009-09-19T11:17:54Z 2009-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#1420054 1 Answer by Makach for I don't get this C/C++ Joke Makach 2009-09-14T06:59:00Z 2009-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#1418566 0 Answer by Makach for URGENT: How to force a postback with asp.net and C# Makach 2009-09-13T18:56:32Z 2009-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#1392750 0 Answer by Makach for how to set 9000 characters in nvarchar(max) Makach 2009-09-08T08:40:45Z 2009-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#1392673 6 Answer by Makach for Using return and short-hand if in C# Makach 2009-09-08T08:19:37Z 2009-09-08T08:25:19Z <p>try this:</p> <pre><code>return count &gt; 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 &gt; 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 &gt; 0 ? false : true; </code></pre> http://stackoverflow.com/questions/156989/how-to-make-programming-more-comfortable/1304391#1304391 0 Answer by Makach for How to make programming more comfortable? Makach 2009-08-20T06:52:38Z 2009-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#1292870 0 Answer by Makach for why connect to mysql is so slow ? Makach 2009-08-18T09:36:57Z 2009-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#1264780 1 Answer by Makach for Are default program icons protected by copyright? Makach 2009-08-12T07:42:50Z 2009-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#1211512 0 Answer by Makach for Simple non-web based bug tracker Makach 2009-07-31T09:18:50Z 2009-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#1208803 0 Answer by Makach for quicksort in C++ is slow Makach 2009-07-30T19:29:36Z 2009-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#1152757 0 Answer by Makach for How to test if a file is fully copied in .NET Makach 2009-07-20T10:16:17Z 2009-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-portability 0 How important is portability? Makach 2009-07-15T10:20:56Z 2009-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#1065236 0 Answer by Makach for PSP vs Agile which one is better for medium team (5 - 10 developer) Makach 2009-06-30T18:33:02Z 2009-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#1065049 0 Answer by Makach for XML - Referencing Other XML Files Makach 2009-06-30T17:51:25Z 2009-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#1060073 1 Answer by Makach for Should "inability to code under pressure" be a valid excuse when writing code in an interview? Makach 2009-06-29T19:35:02Z 2009-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-2003 0 Reassociate file types with Visual Studio 2003 Makach 2009-06-23T11:47:03Z 2009-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#1047866 3 Answer by Makach for What features do you miss in C++? Makach 2009-06-26T07:52:26Z 2009-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#1047246 2 Answer by Makach for XSLT Transformation Makach 2009-06-26T03:59:55Z 2009-06-26T03:59:55Z <p>First, change your xml </p> <p>create data.xml </p> <pre><code>&lt;blogger&gt; &lt;post&gt; &lt;text&gt;...&lt;/text&gt; &lt;categories&gt; &lt;category&gt;Engineering&lt;/category&gt; &lt;category&gt;Internet&lt;/category&gt; &lt;category&gt;Sausages&lt;/category&gt; &lt;/categories&gt; &lt;/post&gt; &lt;post&gt; &lt;text&gt;...&lt;/text&gt; &lt;categories&gt; &lt;category&gt;Internet&lt;/category&gt; &lt;category&gt;Sausages&lt;/category&gt; &lt;/categories&gt; &lt;/post&gt; &lt;post&gt; &lt;text&gt;...&lt;/text&gt; &lt;categories&gt; &lt;category&gt;Sausages&lt;/category&gt; &lt;/categories&gt; &lt;/post&gt; &lt;/blogger&gt; </code></pre> <p>Then write your xslt, create transform.xslt</p> <pre><code>&lt;?xml version="1.0" encoding="iso-8859-1"?&gt; &lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt; &lt;xsl:output method="text"/&gt; &lt;xsl:template match="/"&gt; &lt;xsl:for-each select="//category"&gt; &lt;xsl:variable name="value" select="."/&gt; &lt;xsl:if test="count(preceding::category[.=$value]) = 0"&gt; &lt;xsl:value-of select="."/&gt; &lt;xsl:text&gt; (&lt;/xsl:text&gt; &lt;xsl:value-of select="count(//category[.=$value])"/&gt; &lt;xsl:text&gt;)&lt;/xsl:text&gt;&lt;br/&gt; &lt;/xsl:if&gt; &lt;/xsl:for-each&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </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#1845660 Comment by Makach on What's the most elegant 10-20 line function you've seen/written? Makach 2009-12-04T08:41:25Z 2009-12-04T08:41:25Z really nice work! http://stackoverflow.com/questions/1612200/how-to-call-a-function-inside-itself Comment by Makach on How to call a function inside itself? Makach 2009-10-23T09:07:24Z 2009-10-23T09:07:24Z It is called recursion http://stackoverflow.com/questions/1593669/pdf-viewer-on-the-net/1593693#1593693 Comment by Makach on PDF viewer on the .net Makach 2009-10-20T11:10:47Z 2009-10-20T11:10:47Z Maybe 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#1522000 Comment by Makach on Regex to match a minimum of 1 special character Makach 2009-10-05T19:43:34Z 2009-10-05T19:43:34Z both looks like swearing, :) http://stackoverflow.com/questions/1186638/is-there-a-good-reason-to-make-time-estimates-for-features-that-are-months-out/1187951#1187951 Comment by Makach on Is there a good reason to make time estimates for features that are months out? Makach 2009-09-27T07:06:34Z 2009-09-27T07:06:34Z +1 it's a very good book http://stackoverflow.com/questions/1451964/prime-number/1451972#1451972 Comment by Makach on Prime number. Makach 2009-09-20T20:48:53Z 2009-09-20T20:48:53Z this 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#1435458 Comment by Makach on What is the BNF for a regex (in order to write a full or partial parser) Makach 2009-09-16T21:18:47Z 2009-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/&hellip;</a> doesn't work for me http://stackoverflow.com/questions/1418532/urgent-how-to-force-a-postback-with-asp-net-and-c/1418565#1418565 Comment by Makach on URGENT: How to force a postback with asp.net and C# Makach 2009-09-14T06:40:18Z 2009-09-14T06:40:18Z you 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(&quot;.&quot;) and Response.Redirect(&quot;/&quot;) 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#1319202 Comment by Makach on How to convert double to string without the power to 10 representation (E-05) Makach 2009-08-23T18:29:50Z 2009-08-23T18:29:50Z Thanks for your edit :) http://stackoverflow.com/questions/1304395/display-alert-box Comment by Makach on display alert box Makach 2009-08-20T06:56:57Z 2009-08-20T06:56:57Z what 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#157831 Comment by Makach on How to make programming more comfortable? Makach 2009-08-20T06:55:46Z 2009-08-20T06:55:46Z this 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#1287110 Comment by Makach on What is your best programmer joke? Makach 2009-08-19T10:22:45Z 2009-08-19T10:22:45Z 011000010111011101110011011011110110110101100101 http://stackoverflow.com/questions/1292856/why-connect-to-mysql-is-so-slow/1292870#1292870 Comment by Makach on why connect to mysql is so slow ? Makach 2009-08-18T10:26:39Z 2009-08-18T10:26:39Z ah, 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#1274255 Comment by Makach on Is this good C# style? Makach 2009-08-13T20:17:35Z 2009-08-13T20:17:35Z if 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#1210980 Comment by Makach on Which way I should take to evolve in programming Makach 2009-07-31T06:44:02Z 2009-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 &quot;somewhat&quot; evolve.