User John - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T01:37:36Zhttp://stackoverflow.com/feeds/user/718http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/15784/what-visual-studio-add-ins-do-you-use8What Visual Studio add-ins do you use?John2008-08-19T06:06:42Z2009-11-26T17:42:52Z
<p>I have the following installed:</p>
<ul>
<li><a href="http://bordecal.mvps.org/Nicole/ImportsSorter/Default.htm" rel="nofollow">Imports Sorter</a> (for VS 2005)</li>
<li><a href="http://www.roland-weigelt.de/ghostdoc/" rel="nofollow">GhostDoc</a></li>
<li><a href="http://channel9.msdn.com/playground/Sandbox/176542/" rel="nofollow">Regex Find and Replace</a> (.Net regex compatible find and replace, because VS has its own regex syntax)</li>
<li><a href="http://www.hanselman.com/blog/IntroducingRockScroll.aspx" rel="nofollow">rockscroll</a></li>
<li><a href="http://weblogs.asp.net/alex_papadimoulis/archive/2004/05/25/Smart-Paster-1.1-Add-In---StringBuilder-and-Better-C_2300_-Handling.aspx" rel="nofollow">Smart Paster</a></li>
<li><a href="http://jens-schaller.de/sonictools/sonicfilefinder/index.htm" rel="nofollow">Sonic File Finder</a></li>
<li><a href="http://weblogs.asp.net/gmilano/archive/2006/05/10/446010.aspx" rel="nofollow">Cool Commands</a></li>
</ul>
http://stackoverflow.com/questions/1754870/real-world-usage-of-concatenative-programming-langauges/1754939#17549395Answer by John for Real world usage of concatenative programming langaugesJohn2009-11-18T10:11:28Z2009-11-19T02:13:54Z<p><a href="http://factorcode.org/" rel="nofollow">factorcode.org</a>, <a href="http://concatenative.org/" rel="nofollow">concatenative.org</a> and <a href="http://tinyvid.tv/" rel="nofollow">tinyvid.tv</a> are powered by <a href="http://concatenative.org/wiki/view/Factor/Furnace" rel="nofollow">Furnace</a>, a Factor web server and framework.</p>
http://stackoverflow.com/questions/1599812/net-regex-meaning-of/1599995#15999952Answer by John for .net regex meaning of [^\\.]+John2009-10-21T10:35:37Z2009-10-22T03:13:07Z<p>Your regex <code>.[^\\.]+</code> means:</p>
<ol>
<li>Match any character </li>
<li>Match any character until you get slash or a dot ".". Note that <code>[^\\.]</code> means NOT slash or NOT dot, which means either a dot or a slash is not a match. It will keep on matching characters until it founds a dot or slash because of the "+" at the end. It is called a greedy quantifier because of that.</li>
</ol>
<p>When you input (quotes not included): "Hello my name is Martijn. I live in Holland."
The matches are:</p>
<ol>
<li>Hello my name is Martijn</li>
<li>. I live in Holland</li>
</ol>
<p>Note that the dot is not included in the first match since it stops at n in Martijn and the second match starts with the dot.</p>
<p>When you remove the +: (<code>.[^\\.]</code>)
It just means:</p>
<ol>
<li>Match any character </li>
<li>Match any character except a dot or a slash.</li>
</ol>
http://stackoverflow.com/questions/91201/how-to-write-an-emacs-mode-for-a-new-language/91224#912249Answer by John for How to write an emacs mode for a new language?John2008-09-18T09:34:03Z2009-10-21T20:24:46Z<p>Complete tutorial on EmacsWiki "<a href="http://www.emacswiki.org/emacs/ModeTutorial" rel="nofollow">Mode Tutorial</a>"</p>
<blockquote>
<p>An Emacs language mode creation tutorial</p>
</blockquote>
http://stackoverflow.com/questions/9603/what-is-some-great-source-code-to-read47What is some great source code to read?John2008-08-13T09:27:38Z2009-10-19T20:43:54Z
<p>Following the advice of Scott Hanselman, I'm looking for good source code to read. Here's what is currently on my list:</p>
<ol>
<li><a href="http://www.hanselman.com/blog/CategoryView.aspx?category=Source+Code" rel="nofollow">Scott's posts</a></li>
<li><a href="http://www.codeproject.com/" rel="nofollow">CodeProject</a></li>
</ol>
<p>How about you? What source code do you read? It doesn't have to be .NET related.</p>
<p><hr /></p>
<p><strong>Update</strong> </p>
<p>Compiled replies:</p>
<ul>
<li><a href="http://oreilly.com/catalog/9780596510046/" rel="nofollow">Beautiful Code</a></li>
<li><a href="http://www-cs-faculty.stanford.edu/~uno/programs.html" rel="nofollow">Donald Knuth's literate programs</a></li>
<li><a href="http://www.codeplex.com/" rel="nofollow">CodePlex</a></li>
<li><a href="http://lxr.linux.no/" rel="nofollow">Linux</a></li>
<li><a href="http://www.sqlite.org/cvstrac/dir?d=sqlite/src" rel="nofollow">SQLite</a></li>
<li><a href="https://jdk6.dev.java.net/" rel="nofollow">Java JDK</a></li>
<li><a href="http://www.afterdawn.com/software/source%5Fcodes/paint.net.cfm" rel="nofollow">Paint.NET</a></li>
<li><a href="http://code.google.com/opensource/" rel="nofollow">Google code</a></li>
<li><a href="http://www.sourceforge.net/" rel="nofollow">SourceForge</a></li>
<li><a href="http://github.com/" rel="nofollow">github</a></li>
</ul>
<p>It turns out reading bad code will also help you a lot.</p>
http://stackoverflow.com/questions/560317/transferring-print-jobs-between-printers0Transferring Print Jobs Between PrintersJohn2009-02-18T09:05:15Z2009-08-08T03:05:02Z
<p>We are assigned to develop an application using C# that can transfer print jobs between printers. I have looked on the Windows API, and System.Printing namespace but I can't find a class or function that can do this. Is there a free library out there that is suitable for this? How will you do this using .Net or the Win32 API?</p>
http://stackoverflow.com/questions/9439/what-college-university-courses-you-wish-you-have-taken-more-seriously4What college/university course(s) you wish you have taken more seriously?John2008-08-13T03:26:38Z2009-07-07T21:53:19Z
<p>Admittedly back in college I was only interested on the programming courses. Fortunately that includes the "Data Structures and Algorithms" course. Now that I'm studying compilers I wish I had paid more attention on Automata Theory. How about you?</p>
<p><hr /></p>
<p><strong>Update</strong></p>
<p>Compiled replies:</p>
<ul>
<li>Compilers</li>
<li>Operating systems</li>
<li>Business courses</li>
<li>Statistics</li>
<li>Discrete Mathematics</li>
<li>Advanced Algebra</li>
<li>Algorithms</li>
<li>Automata Theory</li>
<li>Data Structures</li>
<li>Assembler</li>
<li>Digital Design</li>
</ul>
<p>I noticed that most are related to mathematics. Someone pointed out <a href="http://steve-yegge.blogspot.com/2006/03/math-for-programmers.html" rel="nofollow" title="excanvas">Math for Programmers</a> from Steve Yegge. Although most of these are major courses, it doesn't mean that we should ignore the non-majors. It will bite you in the end as experienced by <a href="http://beta.stackoverflow.com/questions/9439/what-collegeuniversity-courses-you-wish-you-have-taken-more-seriously#9458" rel="nofollow">Derek Park</a>.</p>
http://stackoverflow.com/questions/857678/learn-subsonic-before-nhibernate-or-vice-versa1Learn SubSonic before NHibernate or Vice Versa?John2009-05-13T12:27:47Z2009-05-13T14:30:12Z
<p>We've been using our own DAL for our projects in our company and for the passed 2 projects this has causing us problems. Because of this I want to study SubSonic and/or NHibernate. Is it better to study SubSonic first or NHibernate? What are the advantages/disadvantages? From what I have read from related questions here NHibernate is more complex compared to SubSonic so I want to start with the latter.</p>
http://stackoverflow.com/questions/810811/how-to-interact-visual-source-safe-with-visual-studio-2005/810819#8108191Answer by John for How to interact Visual Source Safe with Visual Studio 2005 ?John2009-05-01T09:47:57Z2009-05-01T09:47:57Z<p>You can find SourceSafe related items through the following:</p>
<ul>
<li>File -> Source Control</li>
<li>Tools -> Options -> Source Control</li>
</ul>
http://stackoverflow.com/questions/6703/when-is-oop-better-suited-for6When is OOP better suited for?John2008-08-09T08:51:27Z2009-04-28T14:41:25Z
<p>Since I started studying object-oriented programming, I frequently read articles/blogs saying functions are better, or not all problems should be modeled as objects. From your personal programming adventures, when do you think a problem is better solved by OOP?</p>
http://stackoverflow.com/questions/724791/cant-use-tilewindows-function-properly0Can't use TileWindows function properlyJohn2009-04-07T09:23:52Z2009-04-07T12:12:35Z
<p>I want to tile C# winforms but it seems that the .Net framework does not support this. So I used the Win32 function <a href="http://msdn.microsoft.com/en-us/library/ms633554%28VS.85%29.aspx" rel="nofollow">TileWindows</a>. Here's the code:</p>
<pre><code> GCHandle gcHandle = GCHandle.Alloc(handles, GCHandleType.Pinned);
IntPtr arrayHandle = gcHandle.AddrOfPinnedObject();
TileWindows(IntPtr.Zero,
(uint)(Tile.Vertical | Tile.SkipDisabled),
IntPtr.Zero,
(uint)handles.Length, ref arrayHandle);
gcHandle.Free();
</code></pre>
<p>handles is the array of winforms handles and Tile is just an enum of uints. The problem is after calling this function all of the open windows on my dekstop is affected instead of the passed array handles. Any suggestions?</p>
http://stackoverflow.com/questions/391523/what-are-some-good-free-programming-books/12053#1205334Answer by John for What are some good free programming books?John2008-08-15T07:42:47Z2009-02-25T13:05:30Z<p>Here what's on my bookmarks:</p>
<ul>
<li><a href="http://www.htdp.org/" rel="nofollow">How to Design Programs</a></li>
<li><a href="http://www.gamedev.net/reference/articles/article1698.asp" rel="nofollow">Graphics Programing Black Book</a></li>
<li><a href="http://book.realworldhaskell.org/beta/index.html" rel="nofollow">Real World Haskell</a></li>
<li><a href="http://letoverlambda.com/index.cl/toc" rel="nofollow">Let Over Lambda</a></li>
<li><a href="http://home.iae.nl/users/mhx/sf.html" rel="nofollow">Starting Forth</a></li>
<li><a href="http://linkmingle.com/list/List-of-Free-Online-Python-Books-freebooksandarticles" rel="nofollow">List of Free Online Python Books</a></li>
<li><a href="http://linkmingle.com/list/13-plus-List-of-Free-Great-Perl-Books-available-Online-freebooksandarticles" rel="nofollow">List of Free Online Perl Books</a></li>
<li><a href="http://www.squeakbyexample.org/" rel="nofollow">Squeak by Example</a></li>
<li><a href="http://www.techotopia.com/index.php/C%5FSharp%5FEssentials" rel="nofollow">C# Essentials</a></li>
<li><a href="http://stephane.ducasse.free.fr/FreeBooks.html" rel="nofollow">List of Free Online Smalltalk Books</a></li>
<li><a href="http://psg.com/~dlamkins/sl/contents.html" rel="nofollow">Successful Lisp</a></li>
<li><a href="http://www.cl.cam.ac.uk/teaching/Lectures/funprog-jrh-1996/" rel="nofollow">Introduction to Functional Programming</a></li>
</ul>
<p>All of these are available online (<strong>free and legal</strong>).</p>
http://stackoverflow.com/questions/545029/i-need-to-know-the-date-of-30-days-ago-from-todays-date-in-c/545033#5450335Answer by John for I need to know the date of 30 days ago from today's date in c#John2009-02-13T07:17:59Z2009-02-13T07:17:59Z<pre><code>DateTime.Now.AddDays(-30)
</code></pre>
http://stackoverflow.com/questions/540242/book-or-resource-on-c-concurrency/540321#5403215Answer by John for Book or Resource on C# ConcurrencyJohn2009-02-12T06:55:33Z2009-02-12T06:55:33Z<p>Try <a href="http://www.bluebytesoftware.com/books/winconc/winconc_book_resources.html" rel="nofollow">Concurrent Programming on Windows</a>. From Joe Duffy himself:</p>
<blockquote>
<p>My aim with this book was to write the
book people will buy to understand how
to write concurrent programs on the
Windows and .NET platforms. </p>
</blockquote>
http://stackoverflow.com/questions/7526/if-you-knew-then-what-you-know-now-what-languages-will-you-start-learning-firs4If you knew then what you know now, what language(s) will you start learning first?John2008-08-11T04:54:58Z2009-02-09T13:50:55Z
<p>I will probably start with C and then Lisp. Although I started programming in C, I did not program in it as much as I want. It's fun working with the low level stuff. Learning C helped me a lot when I started working. I've only started learning Lisp now and I found it amazing that the concepts it supported from the very start are still very relevant today. Well I think it's better late than never.</p>
http://stackoverflow.com/questions/430458/how-to-format-an-int-as-currency-in-c/430470#4304706Answer by John for How to format an int as currency in C#?John2009-01-10T03:00:16Z2009-01-10T03:00:16Z<p>Use format "C0".</p>
http://stackoverflow.com/questions/399847/net-memory-profiling-tools/399853#3998535Answer by John for .NET Memory Profiling ToolsJohn2008-12-30T09:23:37Z2008-12-30T09:23:37Z<p><a href="http://memprofiler.com/" rel="nofollow">.Net Memory Profiler</a> helped me a lot on my previous project. It's not free but it's very good. </p>
<blockquote>
<p>.NET Memory Profiler is a powerful
tool for finding memory leaks and
optimizing the memory usage in
programs written in C#, VB.NET or any
other .NET Language.</p>
</blockquote>
http://stackoverflow.com/questions/377117/asp-net-mvc-routing-question/377122#3771221Answer by John for ASP.NET MVC Routing QuestionJohn2008-12-18T07:31:33Z2008-12-18T07:31:33Z<p>Check this question: <a href="http://stackoverflow.com/questions/43243/how-does-web-routing-work#43363">How does Web Routing Work?</a></p>
http://stackoverflow.com/questions/367669/design-pattern-in-c/367676#3676762Answer by John for Design Pattern in C#John2008-12-15T07:24:09Z2008-12-15T07:24:09Z<p>Already answered here: <a href="http://stackoverflow.com/questions/244706/learningimplementing-design-patterns-for-newbies">Learning/Implementing Design Patterns (For Newbies)</a></p>
http://stackoverflow.com/questions/10601/what-are-you-doing-to-become-a-better-developer10What are you doing to become a better developer?John2008-08-14T02:56:31Z2008-12-12T16:05:02Z
<p>These are the things which I do regularly:</p>
<ul>
<li>Read other people's code</li>
<li>Read blogs</li>
<li>Listen to podcasts</li>
<li>Posting to my blog</li>
<li>Read books (mostly technical)</li>
</ul>
<p>I'm curious if there's something which does not seem to be programming related but helps you to become better.</p>
http://stackoverflow.com/questions/274296/money-type/274327#2743273Answer by John for Money TypeJohn2008-11-08T03:54:47Z2008-11-08T03:54:47Z<p>Check this article <a href="http://www.codeproject.com/KB/recipes/MoneyTypeForCLR.aspx" rel="nofollow">A Money type for the CLR</a></p>
<blockquote>
<p>A convenient, high-performance money
structure for the CLR which handles
arithmetic operations, currency types,
formatting, and careful distribution
and rounding without loss.</p>
</blockquote>
http://stackoverflow.com/questions/271690/c-in-linux-environment/271696#27169613Answer by John for C# in linux environmentJohn2008-11-07T10:19:08Z2008-11-07T10:19:08Z<p>Learn <a href="http://www.mono-project.com/Main_Page" rel="nofollow">Mono</a>.</p>
<blockquote>
<p>The Mono Project is an open
development initiative sponsored by
Novell to develop an open source, UNIX
version of the Microsoft .NET
development platform. Its objective is
to enable UNIX developers to build and
deploy cross-platform .NET
Applications. The project implements
various technologies developed by
Microsoft that have now been submitted
to the ECMA for standardization.</p>
</blockquote>
<p>You can use the <a href="http://monodevelop.com/Main_Page" rel="nofollow">MonoDevelop</a> IDE.</p>
<blockquote>
<p>MonoDevelop is a free GNOME IDE
primarily designed for C# and other
.NET languages.</p>
</blockquote>
http://stackoverflow.com/questions/268385/is-there-a-tool-to-measure-pixels-on-a-screen/268516#2685161Answer by John for Is there a tool to measure pixels on a screenJohn2008-11-06T12:33:35Z2008-11-06T12:41:45Z<p>Although not intended for measuring, I use <a href="http://www.codeplex.com/cropper" rel="nofollow">Cropper</a>. It measures the size in pixels but you can also use it for distances.</p>
<p><img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=cropper&DownloadId=8026" alt="alt text" /></p>
http://stackoverflow.com/questions/261054/how-to-see-the-trace-in-a-separate-console/261060#2610603Answer by John for How to see the trace in a separate consoleJohn2008-11-04T06:19:59Z2008-11-04T06:19:59Z<p>If you set the project type of your window application to Console, it will open a console window when you run it.</p>
http://stackoverflow.com/questions/17576/non-public-members-for-c-interfaces3Non Public Members for C# InterfacesJohn2008-08-20T08:14:06Z2008-10-30T19:04:16Z
<p>In C#, when you implement an interface all members are public by default. Do you think it's better if we can specify the accessibility modifier (protected, internal, except private of course) or better use an abstract class instead?</p>
http://stackoverflow.com/questions/246499/database-guy-asks-object-oriented-design-theory/246508#2465081Answer by John for Database Guy Asks: Object-Oriented Design Theory?John2008-10-29T11:51:00Z2008-10-29T11:51:00Z<p>Check the results of <a href="http://stackoverflow.com/questions/tagged/object-oriented-design">this</a>. Learn from each question.</p>
http://stackoverflow.com/questions/232450/applications-using-decimal-versus-double/232453#2324537Answer by John for Applications using Decimal versus double . . . John2008-10-24T04:01:27Z2008-10-24T04:01:27Z<p>We did unfortunately and we regret it. We had to change all doubles to decimals. Decimals are good for financial applications. You can look at this article
<a href="http://www.codeproject.com/KB/recipes/MoneyTypeForCLR.aspx" rel="nofollow">A Money type for the CLR</a>:</p>
<blockquote>
<p>A convenient, high-performance money
structure for the CLR which handles
arithmetic operations, currency types,
formatting, and careful distribution
and rounding without loss.</p>
</blockquote>
http://stackoverflow.com/questions/232357/how-to-do-intra-application-communication-in-net/232364#2323642Answer by John for How to do intra-application communication in .NETJohn2008-10-24T03:07:26Z2008-10-24T03:07:26Z<p><a href="http://stackoverflow.com/questions/232332/interprocess-communication-in-net">Interprocess communication in .NET</a></p>
http://stackoverflow.com/questions/229385/hotkeys-for-previous-and-next-call-stack-frames-in-visual-studio/229400#2294000Answer by John for Hotkeys for Previous and Next call stack frames in Visual StudioJohn2008-10-23T11:32:38Z2008-10-23T11:32:38Z<p>Look in <strong>Tools->Options->Environment->Keyboard</strong>. Enter "stack" or "frame" and related menus will appear. It seems that there's no next and previous call-stack frame.</p>
http://stackoverflow.com/questions/229103/whats-so-great-about-resharper/229111#2291111Answer by John for What's so great about ReSharper?John2008-10-23T09:33:53Z2008-10-23T09:33:53Z<p><a href="http://stackoverflow.com/questions/103307/what-is-your-single-favorite-feature-in-resharper">What is your single favorite feature in Resharper?</a></p>
http://stackoverflow.com/questions/1647811/c-restarting-application-conflicts-with-program-already-running-error/1647865#1647865Comment by John on C# - Restarting application conflicts with "program already running" errorJohn2009-10-30T03:30:47Z2009-10-30T03:30:47ZAhh right. I'm an idiot.http://stackoverflow.com/questions/78955/what-are-the-best-programming-and-development-related-blogs/79310#79310Comment by John on What are the best programming and development related Blogs?John2009-10-14T18:13:33Z2009-10-14T18:13:33ZThis a good one.
http://stackoverflow.com/questions/43180/how-to-get-started-in-operating-system-development/43248#43248Comment by John on How to get started in operating system developmentJohn2009-10-13T03:33:13Z2009-10-13T03:33:13Z@duskwuff You're right but you will learn a lot from it. Then you can go ahead and write your own. http://stackoverflow.com/questions/9603/what-is-some-great-source-code-to-readComment by John on What is some great source code to read?John2009-10-07T23:45:17Z2009-10-07T23:45:17Z@csl That is question no. 304375 and this question is no. 9603. Go figure.http://stackoverflow.com/questions/1530174/will-a-large-number-of-timers-affect-timer-firingComment by John on Will a large number of timers affect timer firing?John2009-10-07T08:03:24Z2009-10-07T08:03:24ZWhy do you need a couple hunred timers?http://stackoverflow.com/questions/98830/modularity-of-classes/1491745#1491745Comment by John on Modularity of ClassesJohn2009-09-29T10:39:21Z2009-09-29T10:39:21ZThis is quite a long answer. I think it's more appropriate to provide a summary and a link to your paper.http://stackoverflow.com/questions/857678/learn-subsonic-before-nhibernate-or-vice-versa/858296#858296Comment by John on Learn SubSonic before NHibernate or Vice Versa?John2009-05-15T16:03:53Z2009-05-15T16:03:53ZThanks for the clarfication.http://stackoverflow.com/questions/857678/learn-subsonic-before-nhibernate-or-vice-versa/857887#857887Comment by John on Learn SubSonic before NHibernate or Vice Versa?John2009-05-13T13:45:50Z2009-05-13T13:45:50ZI think I'm leaning on NHibernate now.http://stackoverflow.com/questions/857678/learn-subsonic-before-nhibernate-or-vice-versa/857777#857777Comment by John on Learn SubSonic before NHibernate or Vice Versa?John2009-05-13T13:11:49Z2009-05-13T13:11:49ZThis very helpful thanks.http://stackoverflow.com/questions/724791/cant-use-tilewindows-function-properly/725371#725371Comment by John on Can't use TileWindows function properlyJohn2009-04-08T01:57:37Z2009-04-08T01:57:37Zmmm.. i have not tried it. http://stackoverflow.com/questions/391523/what-are-some-good-free-programming-books/12053#12053Comment by John on What are some good free programming books?John2009-02-25T02:44:37Z2009-02-25T02:44:37Zits now fixed. thankshttp://stackoverflow.com/questions/560317/transferring-print-jobs-between-printers/560548#560548Comment by John on Transferring Print Jobs Between PrintersJohn2009-02-18T10:41:18Z2009-02-18T10:41:18ZIt's a nice idea. Thank you very much!http://stackoverflow.com/questions/560317/transferring-print-jobs-between-printers/560340#560340Comment by John on Transferring Print Jobs Between PrintersJohn2009-02-18T09:15:58Z2009-02-18T09:15:58ZIt's almost the same.http://stackoverflow.com/questions/545029/i-need-to-know-the-date-of-30-days-ago-from-todays-date-in-cComment by John on I need to know the date of 30 days ago from today's date in c#John2009-02-13T07:21:51Z2009-02-13T07:21:51Zim confused too... http://stackoverflow.com/questions/519125/what-does-it-mean-when-visual-studio-tells-me-my-project-doesnt-support-codeComment by John on What does it mean when Visual Studio tells me my project doesn't support code?John2009-02-06T04:40:37Z2009-02-06T04:40:37ZCan you give more information?