User George Stocker - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T07:48:45Zhttp://stackoverflow.com/feeds/user/16587http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/369366/good-lamp-books-for-asp-net-developer/369449#3694492Answer by George Stocker for Good LAMP book(s) for ASP.NET developer?George Stocker2008-12-15T19:31:19Z2009-12-17T13:43:25Z<p>I recommend <a href="http://my.safaribooksonline.com/9781590598627" rel="nofollow">Beginning PHP and MySQL: From Novice to Professional, Third Edition</a> published by Apress; It'll get you started on the newest stable iterations of mySQL and PHP. For <a href="http://www.debian.org/" rel="nofollow">Linux</a>/<a href="http://www.apache.org/" rel="nofollow">Apache</a>, your best bet is the online documentation and searching Google as you come across problems.</p>
http://stackoverflow.com/questions/426396/how-much-memory-does-a-c-net-object-use/426409#4264093Answer by George Stocker for How much memory does a C#/.NET object use?George Stocker2009-01-08T23:05:17Z2009-12-16T16:02:49Z<p>The <a href="http://www.red-gate.com/products/ants%5Fmemory%5Fprofiler/index.htm" rel="nofollow">ANTS memory profiler</a> will tell you exactly how much is allocated for each object/method/etc.</p>
http://stackoverflow.com/questions/1904127/in-asp-mvc-can-i-dynamically-generate-javascript/1904155#19041550Answer by George Stocker for in asp mvc, can I dynamically generate javascript?George Stocker2009-12-14T23:05:57Z2009-12-14T23:05:57Z<p>Yes, that's possible.</p>
<p>If the JavaScript code is in your view, then simply doing the: <code><%= Model.pathname %></code> would work.</p>
http://stackoverflow.com/questions/383848/f-open-source-projects/384037#3840378Answer by George Stocker for F# open source projectsGeorge Stocker2008-12-21T02:58:47Z2009-12-11T16:36:45Z<p>List of Open Source F# Projects (Compiled):</p>
<ul>
<li><a href="http://through-the-interface.typepad.com/through%5Fthe%5Finterface/2007/11/a-mathematical-.html" rel="nofollow">A Mathematical Application in F# that integrates Autocad via .NET</a></li>
<li><a href="http://code.google.com/p/fssamples/" rel="nofollow">Calculator</a></li>
<li><a href="http://code.google.com/p/fs-gamedev/" rel="nofollow">Game Development Tutorials</a></li>
<li><a href="http://code.google.com/p/fsunit/" rel="nofollow">FsUnit</a></li>
<li><a href="http://www.codeplex.com/storm" rel="nofollow">Storm</a> (a tool for testing Web Services)</li>
<li><a href="http://www.quanttec.com/fparsec/" rel="nofollow">FParsec</a> - F# Parser Combinator Library</li>
<li><a href="http://code.msdn.microsoft.com/DownloadStockPrices" rel="nofollow">DownloadStockPrices</a> - Written in F#</li>
<li><a href="http://blogs.technet.com/apg/archive/2008/04/05/trueskill-through-time.aspx" rel="nofollow">Truskill</a> - Xbox Live Player Rater (Written in F#)</li>
<li><a href="http://github.com/robertpi/fscollintelli/tree/master" rel="nofollow">F# Collective Intelligence Implementation</a></li>
<li><a href="http://ndjango.org" rel="nofollow">NDjango</a></li>
</ul>
http://stackoverflow.com/questions/624425/phonetically-memorable-password-generation-algorithms20Phonetically Memorable Password Generation AlgorithmsGeorge Stocker2009-03-08T22:19:07Z2009-12-10T02:04:35Z
<h3>Background</h3>
<p>While at the Gym the other day, I was working with my combination lock, and realized something that would be useful to me as a programmer. To wit, my combination is three seperate sets of numbers that either sound alike, or have some other relation that makes them easy to remember. For instance, 5-15-25, 7-17-2, 6-24-5. These examples <em>seem</em> easy to remember. </p>
<h3>Question</h3>
<p>How would I implement something similar for passwords? Yes, they ought to be hard to crack, but they also should be easy for the end user to remember. Combination Locks do that with a mix of numbers that have similar sounds, and with numbers that have similar properties (7-17-23: All Prime, 17 rolls right off the tongue after 7, and 23 is another prime, and is (out of that set), the 'hard' one to remember).</p>
<h3>Criteria</h3>
<ul>
<li>The Password should be easy to remember. <code>Dog!Wolf</code> is easy to remember, but once an attacker knows that your website gives out that combination, it makes it infinitely easier to check.</li>
<li>The words or letters should mostly follow the same sounds (for the most part).</li>
<li>At least 8 letters</li>
<li>Not use <code>!@#$%^&*();'{}_+<>?,./</code> These punctuation marks, while appropriate for 'hard' passwords, do not have an 'easy to remember' sound. </li>
</ul>
<h3>Resources</h3>
<p>This question is language-agnostic, but if there's a specific implementation for C#, I'd be glad to hear of it.</p>
<h3>Update</h3>
<p>A few users have said that 'this is bad password security'. <strong>Don't</strong> assume that this is for a website. This could just be for me to make an application for myself that generates passwords according to these rules. Here's an example. </p>
<blockquote>
<p>The letters
<strong>A</strong>-<strong>C</strong>-<strong>C</strong>-<strong>L</strong>-<strong>I</strong>-<strong>M</strong>-<strong>O</strong>-<strong>P</strong> 'flow', and they happen to be two
regular words put together
(<strong>Acclimate</strong> and <strong>Mop</strong>). Further,
when a user <em>says</em> these letters, or
says them as a word, it's an actual
word for them. Easy to remember, but
hard to crack (dictionary attack,
obviously).</p>
</blockquote>
<p>This question has a two-part goal:</p>
<ol>
<li>Construct Passwords from letters that sound similar (using alliteration) or</li>
<li>Construct Passwords that mesh common words similarly to produce a third set of letters that is not in a dictionary.</li>
</ol>
http://stackoverflow.com/questions/1861627/asp-net-mvc-run-on-part-of-website/1861691#1861691-1Answer by George Stocker for Asp.net mvc run on part of websiteGeorge Stocker2009-12-07T17:50:57Z2009-12-07T17:50:57Z<p>If you <a href="http://rads.stackoverflow.com/amzn/click/0470384611" rel="nofollow">buy the book ASP.NET MVC 1.0</a> (written by members of the ASP.NET MVC team), it goes through exactly how to do it.</p>
http://stackoverflow.com/questions/1849590/badges-page-question/1849602#18496020Answer by George Stocker for Badges page questionGeorge Stocker2009-12-04T20:55:29Z2009-12-04T20:55:29Z<p>What badges is it missing? I see all the badges.</p>
http://stackoverflow.com/questions/1650704/reputation-and-point-system-models/1650760#16507603Answer by George Stocker for Reputation and point system modelsGeorge Stocker2009-10-30T16:09:55Z2009-11-27T23:38:31Z<p>O'Reilly and Associates actually has <a href="http://buildingreputation.com/" rel="nofollow">a blog</a> and a <a href="http://buildingreputation.com/doku.php" rel="nofollow">book</a> coming out about this.</p>
<p>As far as 'systems', there are many:</p>
<ul>
<li><a href="http://www.reddit.com/" rel="nofollow">Reddit</a></li>
<li><a href="http://slashdot.org/" rel="nofollow">Slashdot</a></li>
<li><a href="http://digg.com/" rel="nofollow">Digg</a></li>
<li><a href="http://wikipedia.org/" rel="nofollow">Wikipedia</a> (Implicit with Trusted editors)</li>
<li><a href="http://www.ebay.com/" rel="nofollow">Ebay</a></li>
</ul>
<p>Among many, many others.</p>
http://stackoverflow.com/questions/1798605/how-do-i-automatically-generate-related-articles-for-my-newspaper-site/1798616#17986162Answer by George Stocker for How do I automatically generate "related articles" for my newspaper site?George Stocker2009-11-25T17:33:13Z2009-11-25T17:33:13Z<p>You cannot do this with just HTML and CSS. You'll need something on the server side to tell you how these articles relate. I would suspect that you could do it with Javascript, but I can only imagine at that solution. If you do it on the server side, then it depends on which language you want to use.</p>
http://stackoverflow.com/questions/1785862/what-is-the-value-of-interfaces/1785895#17858957Answer by George Stocker for What is the value of Interfaces?George Stocker2009-11-23T20:56:25Z2009-11-23T21:11:56Z<p>There are two (basic) parts to object oriented programming that give newcomers trouble; the first is <code>inheritance</code> and the second is <code>composition</code>. These are the toughest to 'get'; and once you understand those everything else is just that much easier.</p>
<p>What you're referring to is <code>composition</code> - e.g., what does a class do? If you go the inheritance route, it derives from an abstract class (say <code>Dog</code> IS A <code>Animal</code>) . If you use composition, then you are instituting a contract (A Car HAS A Driver/Loan/Insurance). Anyone that implements your interface must implement the methods of that interface.</p>
<p>This allows for loose coupling; and doesn't tie you down into the inheritance model where it doesn't fit.</p>
<p>Where inheritance fits, use it; but if the relationship between two classes is contractual in nature, or <code>HAS-A</code> vs. <code>IS-A</code>, then use an interface to model that part.</p>
<p><strong>Why Use Interfaces?</strong></p>
<p>For a practical example, let's jump into a business application. If you have a repository; you'll want to make the layer above your repository those of interfaces. That way if you have to change anything in the way the respository works, you won't affect anything since they all obey the same contracts.</p>
<p>Here's our repository:</p>
<pre><code>public interface IUserRepository
{
public void Save();
public void Delete(int id);
public bool Create(User user);
public User GetUserById(int id);
}
</code></pre>
<p>Now, I can implement that Repository in a class:</p>
<pre><code>public class UserRepository : IRepository
{
public void Save()
{
//Implement
}
public void Delete(int id)
{
//Implement
}
public bool Create(User user)
{
//Implement
}
public User GetUserById(int id)
{
//Implement
}
}
</code></pre>
<p>This separates the Interface from what is calling it. I could change this Class from Linq-To-SQL to inline SQL or Stored procedures, and as long as I implemented the <code>IUserRepository</code> interface, no one would be the wiser; and best of all, there are no classes that derive from my class that could potentially be pissed about my change.</p>
<p><strong>Inheritance and Composition: Best Friends</strong></p>
<p>Inheritance and Composition are meant to tackle different problems. Use each where it fits, and there are entire subsets of problems where you use both. </p>
http://stackoverflow.com/questions/1779823/javascript-code-injected-into-my-website-pages/1779860#17798603Answer by George Stocker for JavaScript Code injected into my website pagesGeorge Stocker2009-11-22T20:22:05Z2009-11-22T20:22:05Z<p>Saqib, another poster pointed out that your server his compromised. He's right. He's somehow able to inject JavaScript into your pages.</p>
<p>There are many possibilities: </p>
<ol>
<li>Do you have anywhere where a user can insert text (a textbox, a dropdownlist, anything?) It doesn't even have to allow them to insert text, since <a href="http://technet.microsoft.com/en-us/library/cc512662.aspx" rel="nofollow">they can intercept the request</a> and POST from somewhere other than the form).</li>
<li>Do you <a href="http://ha.ckers.org/xss.html" rel="nofollow">properly encode everything</a> that is sent to your database?</li>
<li>Do you <a href="http://msdn.microsoft.com/en-us/library/ms998271.aspx" rel="nofollow">suffer from SQL injection</a> issues?</li>
<li>Have you changed your password recently?</li>
<li>Do you use <a href="http://it.slashdot.org/article.pl?sid=09/07/13/142210" rel="nofollow">FTP (and not SFTP)</a> for transferring files to your server?</li>
</ol>
<p>If you answered yes to any of these questions, that's a potential hole. No, the problem is <strong>probably</strong> not with ASP.NET or IIS; it's probably a hole in your code.</p>
http://stackoverflow.com/questions/391523/what-are-some-good-free-programming-books/392926#392926141Answer by George Stocker for What are some good free programming books?George Stocker2008-12-25T16:20:07Z2009-11-22T14:30:15Z<p>List of Free Programming books (compiled):</p>
<p><strong>Meta-List</strong></p>
<ul>
<li><a href="http://www.htdp.org/2003-09-26/Book/" rel="nofollow">How to Design Programs: An Introduction to Computing and Programming</a></li>
<li><a href="http://www.coderholic.com/25-free-computer-science-books/" rel="nofollow">25 Free Computer Science Ebooks</a></li>
<li><a href="http://www.freetechbooks.com/" rel="nofollow">Free Tech Books</a></li>
<li><a href="http://www.mindviewinc.com/Books/" rel="nofollow">MindView Inc</a> (List of Free Books)</li>
<li><a href="http://en.wikibooks.org/wiki/Category%3AProgramming" rel="nofollow">Wikibooks: Programming</a></li>
<li><a href="http://refcardz.dzone.com/" rel="nofollow">Cheat Sheets (Free)</a></li>
<li><a href="http://blogs.msdn.com/wriju/archive/2009/01/07/free-ebooks-at-codeplex.aspx" rel="nofollow">CodePlex List of Free E-Books</a></li>
<li><a href="http://www.booktraining.net/" rel="nofollow">Book Training - On Video!</a></li>
<li><a href="http://www.spmn.com/products%5Fguidebooks.html" rel="nofollow">Sofware Program Managers Network - Free EBooks</a></li>
<li><a href="http://www.linbai.info/" rel="nofollow">EBook Share @ linbai.info</a></li>
<li><a href="http://www.freebooksclub.net/" rel="nofollow">FreeBooksClub.Net</a></li>
<li><a href="http://theassayer.org/" rel="nofollow">Theassayer.org</a> (Free Online books)</li>
<li><a href="http://oreilly.com/openbook/" rel="nofollow">O'Reilly's Open Books Project</a></li>
<li><a href="http://www.techbooksforfree.com/" rel="nofollow">TechBooksForFree.com</a></li>
</ul>
<p><strong>Graphics Programming</strong></p>
<ul>
<li>Nvidia <a href="http://http.developer.nvidia.com/GPUGems/gpugems%5Fpart01.html" rel="nofollow">GPU Gems 1</a> </li>
<li>Nvidia <a href="http://http.developer.nvidia.com/GPUGems2/gpugems2%5Fpart01.html" rel="nofollow">GPU Gems 2</a> </li>
<li>Nvidia <a href="http://http.developer.nvidia.com/GPUGems3/gpugems3%5Fpart01.html" rel="nofollow">GPU Gems 3</a></li>
<li><a href="http://www.gamedev.net/reference/articles/article1698.asp" rel="nofollow">Graphics Programming Black Book</a></li>
</ul>
<p><strong>Language Agnostic</strong>:</p>
<ul>
<li><a href="http://www.pragprog.com/titles/ahptl/pragmatic-thinking-and-learning" rel="nofollow">Pragmatic Thinking and Learning: Refactor Your Wetware</a></li>
<li><a href="http://codebetter.com/files/folders/codebetter%5Fdownloads/entry179694.aspx" rel="nofollow">Foundations of Programming</a> by Karl Seguin </li>
<li><a href="http://scpd.stanford.edu/knuth/index.jsp" rel="nofollow">Computer Musings</a> (Lectures by Donald Knuth)</li>
<li><a href="http://www.catb.org/esr/writings/cathedral-bazaar/" rel="nofollow">The Cathedral and the Bazaar</a> (Introduction to Open Source Software)</li>
<li><a href="http://www.codeplex.com/AppArchGuide" rel="nofollow">Patterns and Practices: Application Architecture Guide 2.0</a></li>
<li><a href="http://www.cl.cam.ac.uk/~rja14/book.html" rel="nofollow">Security Engineering</a></li>
<li><a href="http://www.dspguide.com/" rel="nofollow">Digital Signal Processing For Engineers and Scientists</a></li>
<li><a href="http://gettingreal.37signals.com/" rel="nofollow">Getting Real</a> (Courtesy <a href="http://37signals.com" rel="nofollow">37 Signals</a>)</li>
<li><a href="http://mitpress.mit.edu/sicp/" rel="nofollow">Structure and Interpretation of Computer Programs</a></li>
<li><a href="http://www.infoq.com/minibooks/domain-driven-design-quickly" rel="nofollow">Domain Driven Design Quickly</a></li>
<li><a href="http://homepage.mac.com/s%5Flott/books/oodesign.html" rel="nofollow">OO Design</a></li>
<li><a href="http://smartbear.com/codecollab-code-review-book.php" rel="nofollow">Best Kept Secrets of Peer Code Review</a></li>
<li><a href="http://www.scribd.com/doc/7181362/NASA-Software-Measurement-Guidebook" rel="nofollow">NASA Software Measurement Handbook</a></li>
<li><a href="http://homepages.inf.ed.ac.uk/dts/pm/Papers/nasa-manage.pdf" rel="nofollow">NASA Manager Handbook for Software Development</a></li>
<li><a href="http://www.cl.cam.ac.uk/teaching/Lectures/funprog-jrh-1996/" rel="nofollow">Introduction to Functional Programming</a> - Class Lectures and Slides</li>
<li><a href="http://www.htdp.org/" rel="nofollow">How to Design Programs</a> - MIT Press</li>
<li><a href="http://www.swebok.org/stoneman/trial%5F1%5F00.html" rel="nofollow">Guide to the Software Engineering Body of Knowledge</a> - IEEE Computer Society Press</li>
<li><a href="http://ocw.mit.edu/OcwWeb/web/home/home/index.htm" rel="nofollow">Online Course Materials</a> - MIT</li>
<li><a href="http://www.cs.berkeley.edu/~vazirani/algorithms.html" rel="nofollow">Algorithms</a> (Draft Copy)</li>
<li><a href="http://dotnetslackers.com/projects/Data-Structures-And-Algorithms/" rel="nofollow">Data Structures and Algorithms</a></li>
<li><a href="http://www.agileskills.org/download.html.en" rel="nofollow">Essential Skills for Agile Development</a></li>
<li><a href="http://www.cs.brown.edu/~sk/Publications/Books/ProgLangs/" rel="nofollow">Programming Languages: Application and Interpretation</a></li>
<li><a href="http://pine.fm/LearnToProgram/" rel="nofollow">Learn to Program</a></li>
<li><a href="http://www.dreamsongs.com/Files/PatternsOfSoftware.pdf" rel="nofollow">Patterns of Software: Tales from the Software Community</a></li>
<li><a href="http://freeworld.thc.org/root/phun/unmaintain.html" rel="nofollow">How to write Unmaintainable Code</a></li>
<li><a href="http://catb.org/esr/writings/taoup/html/" rel="nofollow">The Art of Unix Programming</a></li>
</ul>
<p><strong>ASP.NET MVC</strong>:</p>
<ul>
<li><a href="http://weblogs.asp.net/scottgu/archive/2009/03/10/free-asp-net-mvc-ebook-tutorial.aspx" rel="nofollow">NerdDinner Walkthrough</a></li>
</ul>
<p><strong>Assembly Language</strong>:</p>
<ul>
<li><a href="http://download.savannah.gnu.org/releases/pgubook/ProgrammingGroundUp-1-0-booksize.pdf" rel="nofollow">ProgrammingGroundUp</a></li>
<li><a href="http://drpaulcarter.com/pcasm/" rel="nofollow">Paul Carter's Tutorial on x86 Assembly</a></li>
</ul>
<p><strong>C/C++</strong></p>
<ul>
<li><a href="http://publications.gbdirect.co.uk/c%5Fbook/" rel="nofollow">The C book</a></li>
<li><a href="http://www.mindview.net/Books/TICPP/ThinkingInCPP2e.html" rel="nofollow">Thinking in C++, Second Edition</a></li>
<li><a href="http://cppannotations.sourceforge.net/" rel="nofollow">C++ Annotations</a></li>
</ul>
<p><strong>C#</strong></p>
<ul>
<li>See <strong>.NET</strong> below</li>
</ul>
<p><strong>Django</strong></p>
<ul>
<li><a href="http://djangobook.com/" rel="nofollow">Djangobook.com</a></li>
</ul>
<p><strong>Forth</strong></p>
<ul>
<li><a href="http://home.iae.nl/users/mhx/sf.html" rel="nofollow">Starting Forth</a></li>
</ul>
<p><strong>Haskell</strong></p>
<ul>
<li><a href="http://learnyouahaskell.com/chapters" rel="nofollow">Learn You a Haskell</a></li>
<li><a href="http://book.realworldhaskell.org/read/" rel="nofollow">Real World Haskell</a></li>
</ul>
<p><strong>Java</strong></p>
<ul>
<li><a href="http://java.sun.com/docs/books/tutorial/" rel="nofollow">Sun's Java Tutorials</a></li>
</ul>
<p><strong>JavaScript</strong></p>
<ul>
<li><a href="http://eloquentjavascript.net/" rel="nofollow">Eloquent JavaScript</a></li>
<li><a href="http://www.crockford.com/javascript/" rel="nofollow">Crockford's JavaScript</a></li>
</ul>
<p><strong>Linux</strong></p>
<ul>
<li><a href="http://www.advancedlinuxprogramming.com/" rel="nofollow">Advanced Linux Programming</a></li>
</ul>
<p><strong>Lisp</strong></p>
<ul>
<li><a href="http://www.gigamonkeys.com/book/" rel="nofollow">Practical Common Lisp</a></li>
<li><a href="http://www.paulgraham.com/onlisp.html" rel="nofollow">On Lisp</a></li>
<li><a href="http://www.paulgraham.com/acl.html" rel="nofollow">ANSI Common Lisp</a></li>
<li><a href="http://www.cs.cmu.edu/Groups/AI/html/cltl/mirrors.html" rel="nofollow">Common Lisp the Language, 2nd Edition</a></li>
<li><a href="http://psg.com/~dlamkins/sl/contents.html" rel="nofollow">Successful Lisp</a></li>
<li><a href="http://letoverlambda.com/index.cl/toc" rel="nofollow">Let Over Lamda - 50 Years of Lisp</a></li>
</ul>
<p><strong>Mercurial</strong></p>
<ul>
<li><a href="http://hgbook.red-bean.com/" rel="nofollow">Mercurial: The Definitive Guide</a></li>
</ul>
<p><strong>.NET (C#)</strong></p>
<ul>
<li><a href="http://www.programmersheaven.com/2/CSharpBook" rel="nofollow">Free C# Book</a> (Courtesy of <a href="http://www.programmersheaven.com/" rel="nofollow">Programmers Heaven</a>)</li>
<li><a href="http://www.infoq.com/minibooks/vsnettt" rel="nofollow">Visual Studio Tips and Tricks</a></li>
<li><a href="http://weblogs.asp.net/zeeshanhirani/archive/2008/12/05/my-christmas-present-to-the-entity-framework-community.aspx" rel="nofollow">Entity Framework</a> (514 pages)</li>
<li><a href="http://www.charlespetzold.com/dotnet/index.html" rel="nofollow">Charles Petzold's .Net Book 0</a></li>
<li><a href="http://www.albahari.com/threading/" rel="nofollow">Threading in C#</a></li>
<li><a href="http://www.csharpcourse.com/" rel="nofollow">C# Yellow Book</a></li>
<li><a href="http://en.wikibooks.org/wiki/C%5FSharp%5FProgramming" rel="nofollow">C# Programming - Wikibook</a></li>
<li><a href="http://www.techotopia.com/index.php/C%5FSharp%5FEssentials" rel="nofollow">C# Essentials</a></li>
<li><a href="http://www.brpreiss.com/books/opus6/" rel="nofollow">Data Structures and Algorithms with Object-Oriented Design Patterns in C# </a></li>
<li><a href="http://downloads.red-gate.com/ebooks/DotNet/illustratedcsharp2008.zip" rel="nofollow">Illustrated C# 2008</a> (Download) (<strong>.ZIP</strong>)</li>
<li><a href="http://www.red-gate.com/products/ants%5Fperformance%5Fprofiler/be%5Fahead%5Fof%5Fthe%5Fgame%5Febook.htm?utm%5Fsource=simpletalk&utm%5Fmedium=email&utm%5Fcontent=nlv%5Faheadofgame-ebook&utm%5Fcampaign=antsperformanceprofiler" rel="nofollow">O'Reilly's C# Pocket Reference Manual</a> (<em>Free Ebook courtesy of <a href="http://red-gate.com" rel="nofollow">Red Gate Software</a></em>)</li>
</ul>
<p><strong>Objective-C</strong></p>
<ul>
<li><a href="http://developer.apple.com/DOCUMENTATION/Cocoa/Conceptual/ObjectiveC/" rel="nofollow">The Objective-C Programming Language</a></li>
</ul>
<p><strong>Perl</strong></p>
<ul>
<li><a href="http://hop.perl.plover.com/book/" rel="nofollow">Higher Order Perl</a></li>
<li><a href="http://www.greenteapress.com/perl/" rel="nofollow">Perl The Hard Way</a></li>
<li><a href="http://www.extremeperl.org/bk/home" rel="nofollow">Extreme Perl</a></li>
<li><a href="http://linkmingle.com/list/13-plus-List-of-Free-Great-Perl-Books-available-Online-freebooksandarticles" rel="nofollow">Perl Free Online EBooks</a> <strong>Meta-List</strong></li>
<li><a href="http://www.masonbook.com/book/" rel="nofollow">The Mason Book</a></li>
<li><a href="http://modperlbook.org/" rel="nofollow">Practical <code>mod_perl</code></a></li>
</ul>
<p><strong>PHP</strong></p>
<ul>
<li><a href="http://www.ipbwiki.com/Practical%5FPHP%5FProgramming%3ATable%5FOf%5FContents" rel="nofollow">Practical PHP Programming</a> (Wiki that contains O'Reilly's <em>PHP In a Nutshell</em>)</li>
<li><a href="http://www.survivethedeepend.com/" rel="nofollow">Zend Framework: Survive the Deep End</a></li>
</ul>
<p><strong>PowerShell</strong></p>
<ul>
<li><a href="http://powershell.com/cs/blogs/ebook/" rel="nofollow">Mastering PowerShell</a></li>
</ul>
<p><strong>Python</strong></p>
<ul>
<li><a href="http://diveintopython.org/" rel="nofollow">Dive Into Python</a></li>
<li><a href="http://diveintopython3.org/" rel="nofollow">Dive Into Python 3</a></li>
<li><a href="http://www.swaroopch.com/notes/Python" rel="nofollow">Byte of Python</a></li>
<li><a href="http://homepage.mac.com/s%5Flott/books/python.html" rel="nofollow">Building Skills in Python Version 2.5</a></li>
<li><a href="http://linkmingle.com/list/List-of-Free-Online-Python-Books-freebooksandarticles" rel="nofollow">Python Free Online Ebooks</a> <strong>Meta-List</strong></li>
<li><a href="http://openbookproject.net/pybiblio/" rel="nofollow">Python Bibliotheca</a></li>
<li><a href="http://www.greenteapress.com/thinkpython/thinkpython.pdf" rel="nofollow">Think Python</a></li>
<li><a href="http://www.brpreiss.com/books/opus7/html/book.html" rel="nofollow">Data Structures and Algorithms in Python</a></li>
<li><a href="http://www.greenteapress.com/thinkpython/thinkCSpy/" rel="nofollow">How to Think Like a Computer Scientist: Learning with Python</a></li>
</ul>
<p><strong>Ruby</strong></p>
<ul>
<li><a href="http://www.ruby-doc.org/docs/ProgrammingRuby/" rel="nofollow">Programming Ruby</a></li>
<li><a href="http://poignantguide.net/ruby/" rel="nofollow">Why's (Poignant) Guide to Ruby</a> (<a href="http://www.scribd.com/doc/2236084/Whys-Poignant-Guide-to-Ruby" rel="nofollow">Mirror</a> via <a href="http://www.scribd.com/" rel="nofollow">Scribd</a>)</li>
</ul>
<p><strong>Scala</strong></p>
<ul>
<li><a href="http://programming-scala.labs.oreilly.com/index.html" rel="nofollow">Programing Scala</a></li>
</ul>
<p><strong>SmallTalk</strong></p>
<ul>
<li><a href="http://stephane.ducasse.free.fr/FreeBooks.html" rel="nofollow">SmallTalk Free Ebooks</a> <em>Courtesy of Stéphane Ducasse</em></li>
<li><a href="http://www.squeakbyexample.org/" rel="nofollow">Squeak By Example</a> (Smalltalk IDE)</li>
</ul>
<p><strong>Subversion</strong></p>
<ul>
<li><a href="http://www.phptr.com/content/images/0131855182/downloads/Nagel%5Fbook.pdf" rel="nofollow">Subversion Version Control: Using the Subversion Version Control System in Development Projects</a></li>
</ul>
http://stackoverflow.com/questions/291455/xml-data-at-root-level-is-invalid3XML - Data At Root Level is InvalidGeorge Stocker2008-11-14T21:14:15Z2009-11-19T17:23:50Z
<p>I have an XSD file that is encoded in UTF-8, and any text editor I run it through doesn't show any character at the beginning of the file, but when I pull it up in Visual Studio's debugger, I clearly see an empty box in front of the file. </p>
<p><img src="http://i294.photobucket.com/albums/mm93/geostock/bom3.jpg" alt="Box in file" /></p>
<p>I also get the error: </p>
<p><strong>Data at the root level is invalid. Line 1, position 1.</strong></p>
<p><img src="http://i294.photobucket.com/albums/mm93/geostock/bom4.jpg" alt="alt text" /></p>
<p>Anyone know what this is?</p>
<p>Update: Edited post to qualify type of file. It's an XSD file created by Microsoft's XSD creator.</p>
http://stackoverflow.com/questions/1756201/how-do-i-move-from-c-asp-to-ruby/1756260#17562603Answer by George Stocker for How do I move from C#/ASP to Ruby?George Stocker2009-11-18T14:10:28Z2009-11-18T14:10:28Z<p>I realize you want to move to Ruby; but you may want to give ASP.NET MVC a shot. It's the MVC framework on the ASP.NET platform.</p>
<p>Coming from ASP, you're going to have to do a lot of conversion to change your code to become more modular. Much more than any one post on Stack Overflow will do justice.</p>
<p>MVC is made up into 'tiers':</p>
<p><strong>Model</strong> - Your Data<br>
<strong>View</strong> - What the user Sees<br>
<strong>Controller</strong> - Handles requests and communicates with the View and Model.</p>
<p>Pick up a book on <a href="http://rads.stackoverflow.com/amzn/click/0470384611" rel="nofollow">ASP.NET MVC 1.0</a>, and do some research on the MVC pattern. It's worth it.</p>
http://stackoverflow.com/questions/1737610/utilizing-less-memory-in-asp-net/1737621#17376219Answer by George Stocker for Utilizing less memory in ASP.NETGeorge Stocker2009-11-15T14:16:17Z2009-11-15T14:16:17Z<p>You have three static pages (mean that pages that do not change), and you're using ASP.NET?</p>
<p>Why not just serve up three static HTML pages?</p>
<p>As far as making ASP.NET use less memory: <strong>Why?</strong> From a server standpoint, 48MB is <strong>nothing</strong>. If that's a constraint, then you have bigger issues than whether or not to use ASP.NET.</p>
http://stackoverflow.com/questions/1634401/what-is-a-good-community-run-venue-for-finding-programming-competitions/1718898#171889810Answer by George Stocker for What is a good community run venue for finding programming competitions? George Stocker2009-11-11T23:49:26Z2009-11-11T23:49:26Z<p><a href="http://stackoverflow.com/questions/505404/what-are-good-programming-competitions/505410#505410">As one of the other answers</a> pointed out, <a href="http://topcoder.com" rel="nofollow">TopCoder</a> is what you're looking for.</p>
http://stackoverflow.com/questions/282566/dealing-with-method-calls-xslt-tranform-in-asp-net-3Dealing with Method Calls/XSLT Tranform in ASP.NETGeorge Stocker2008-11-11T23:55:40Z2009-11-11T18:05:13Z
<p>I've got an ASP.NET page that uses code similar to the following:</p>
<pre><code> <asp: repeater>
<tr><td><b>LabelName</b></td><td><%# SomeMethod(parameter) %></td></tr>
</asp: repeater>
</code></pre>
<p>These Labels are presently hardcoded, but there is an XML document that contains something like the following:</p>
<pre><code><label type="LabelA" name="LabelName" />>
</code></pre>
<p>So what I'd like to do is to use XSLT to transform the XML Document Labels into the HTML needed for the page, so that the label name from the XML document would be used. But obviously I'd have to contend with the <code><%# SomeMethod(parameter) %></code> used to pull other data from the database. My question is, what's the best way to do this?</p>
<p><code>Code deliberately obsfucated to protect the guilty.</code></p>
http://stackoverflow.com/questions/1708044/spelling-suggestor-in-asp-net/1708057#17080572Answer by George Stocker for Spelling Suggestor in ASP.NETGeorge Stocker2009-11-10T13:44:18Z2009-11-10T13:44:18Z<p>The commercial product I work on uses <a href="http://www.codeproject.com/KB/string/netspell.aspx" rel="nofollow">NETSpell Spell Checker</a>, it has a dictionary tool that allows you to add custom dictionaries and words.</p>
http://stackoverflow.com/questions/473087/string-benchmarks-in-c-refactoring-for-speed-maintainability3String Benchmarks in C# - Refactoring for Speed/MaintainabilityGeorge Stocker2009-01-23T14:33:38Z2009-11-10T12:22:18Z
<p>I've been tinkering with small functions on my own time, trying to find ways to refactor them (I recently read Martin Fowler's book <em><a href="http://rads.stackoverflow.com/amzn/click/0201485672" rel="nofollow">Refactoring: Improving the Design of Existing Code</a></em>). I found the following function <code>MakeNiceString()</code> while updating another part of the codebase near it, and it looked like a good candidate to mess with. As it is, there's no real reason to replace it, but it's small enough and does something small so it's easy to follow and yet still get a 'good' experience from.</p>
<pre><code>private static string MakeNiceString(string str)
{
char[] ca = str.ToCharArray();
string result = null;
int i = 0;
result += System.Convert.ToString(ca[0]);
for (i = 1; i <= ca.Length - 1; i++)
{
if (!(char.IsLower(ca[i])))
{
result += " ";
}
result += System.Convert.ToString(ca[i]);
}
return result;
}
static string SplitCamelCase(string str)
{
string[] temp = Regex.Split(str, @"(?<!^)(?=[A-Z])");
string result = String.Join(" ", temp);
return result;
}
</code></pre>
The first function `MakeNiceString()` is the function I found in some code I was updating at work. The purpose of the function is to translate **ThisIsAString** to **This Is A String**. It's used in a half-dozen places in the code, and is pretty insignificant in the whole scheme of things.
I built the second function purely as an academic exercise to see if using a regular expression would take longer or not.
Well, here are the results:
With 10 Iterations:
<blockquote>
<pre>
MakeNiceString took 2649 ticks
SplitCamelCase took 2502 ticks
</pre>
<p></blockquote></p>
<p>However, it changes drastically over the longhaul:</p>
<p>With 10,000 Iterations:</p>
<pre>
MakeNiceString took 121625 ticks
SplitCamelCase took 443001 ticks
</pre>
<p><hr /></p>
<h3>Refactoring <code>MakeNiceString()</code></h3>
<blockquote>
<p>The process of refactoring <code>MakeNiceString()</code> started with simply removing the conversions that were taking place. Doing that yielded the following results:</p>
</blockquote>
<pre>
MakeNiceString took 124716 ticks
ImprovedMakeNiceString took 118486
</pre>
<p>Here's the code after Refactor #1:</p>
<pre><code>private static string ImprovedMakeNiceString(string str)
{ //Removed Convert.ToString()
char[] ca = str.ToCharArray();
string result = null;
int i = 0;
result += ca[0];
for (i = 1; i <= ca.Length - 1; i++)
{
if (!(char.IsLower(ca[i])))
{
result += " ";
}
result += ca[i];
}
return result;
}
</code></pre>
<h3>Refactor#2 - Use <code>StringBuilder</code></h3>
<blockquote>
<p>My second task was to use <code>StringBuilder</code> instead of <code>String</code>. Since <code>String</code> is immutable, unnecessary copies were being created throughout the loop. The benchmark for using that is below, as is the code:</p>
</blockquote>
<pre><code>static string RefactoredMakeNiceString(string str)
{
char[] ca = str.ToCharArray();
StringBuilder sb = new StringBuilder((str.Length * 5 / 4));
int i = 0;
sb.Append(ca[0]);
for (i = 1; i <= ca.Length - 1; i++)
{
if (!(char.IsLower(ca[i])))
{
sb.Append(" ");
}
sb.Append(ca[i]);
}
return sb.ToString();
}
</code></pre>
This results in the following Benchmark:
<blockquote>
<pre>
MakeNiceString Took: 124497 Ticks //Original
SplitCamelCase Took: 464459 Ticks //Regex
ImprovedMakeNiceString Took: 117369 Ticks //Remove Conversion
RefactoredMakeNiceString Took: 38542 Ticks //Using StringBuilder
</pre>
<p></blockquote></p>
<p>Changing the <code>for</code> loop to a <code>foreach</code> loop resulted in the following benchmark result:</p>
<pre><code>static string RefactoredForEachMakeNiceString(string str)
{
char[] ca = str.ToCharArray();
StringBuilder sb1 = new StringBuilder((str.Length * 5 / 4));
sb1.Append(ca[0]);
foreach (char c in ca)
{
if (!(char.IsLower(c)))
{
sb1.Append(" ");
}
sb1.Append(c);
}
return sb1.ToString();
}
</code></pre>
<blockquote>
<pre>
RefactoredForEachMakeNiceString Took: 45163 Ticks
</pre>
<p></blockquote></p>
<p>As you can see, maintenance-wise, the <code>foreach</code> loop will be the easiest to maintain and have the 'cleanest' look. It is slightly slower than the <code>for</code> loop, but infinitely easier to follow. </p>
<h3>Alternate Refactor: Use Compiled <code>Regex</code></h3>
<p>I moved the Regex to right before the loop is begun, in hopes that since it only compiles it once, it'll execute faster. What I found out (and I'm sure I have a bug somewhere) is that that doesn't happen like it ought to:</p>
<pre><code>static void runTest5()
{
Regex rg = new Regex(@"(?<!^)(?=[A-Z])", RegexOptions.Compiled);
for (int i = 0; i < 10000; i++)
{
CompiledRegex(rg, myString);
}
}
static string CompiledRegex(Regex regex, string str)
{
string result = null;
Regex rg1 = regex;
string[] temp = rg1.Split(str);
result = String.Join(" ", temp);
return result;
}
</code></pre>
<h3>Final Benchmark Results:</h3>
<blockquote>
</blockquote>
<pre>
MakeNiceString Took 139363 Ticks
SplitCamelCase Took 489174 Ticks
ImprovedMakeNiceString Took 115478 Ticks
RefactoredMakeNiceString Took 38819 Ticks
RefactoredForEachMakeNiceString Took 44700 Ticks
CompiledRegex Took 227021 Ticks
</pre>
<p>Or, if you prefer milliseconds:</p>
<pre>
MakeNiceString Took 38 ms
SplitCamelCase Took 123 ms
ImprovedMakeNiceString Took 33 ms
RefactoredMakeNiceString Took 11 ms
RefactoredForEachMakeNiceString Took 12 ms
CompiledRegex Took 63 ms
</pre>
<p>So the percentage gains are:</p>
<pre>
MakeNiceString 38 ms Baseline
SplitCamelCase 123 ms 223% slower
ImprovedMakeNiceString 33 ms 13.15% faster
RefactoredMakeNiceString 11 ms 71.05% faster
RefactoredForEachMakeNiceString 12 ms 68.42% faster
CompiledRegex 63 ms 65.79% slower
</pre>
<p>(Please check my math)</p>
<p>In the end, I'm going to replace what's there with the <code>RefactoredForEachMakeNiceString()</code> and while I'm at it, I'm going to rename it to something useful, like <code>SplitStringOnUpperCase</code>.</p>
<h3>Benchmark Test:</h3>
<p>To benchmark, I simply invoke a new <code>Stopwatch</code> for each method call:</p>
<pre><code> string myString = "ThisIsAUpperCaseString";
Stopwatch sw = new Stopwatch();
sw.Start();
runTest();
sw.Stop();
static void runTest()
{
for (int i = 0; i < 10000; i++)
{
MakeNiceString(myString);
}
}
</code></pre>
<p><hr /></p>
<h3>Questions</h3>
<ul>
<li>What causes these functions to be so different 'over the long haul', and </li>
<li>How can I improve this function
a) to be more maintainable or
b) to run faster? </li>
<li>How would I do memory benchmarks on these to see which used less memory?</li>
</ul>
<p><hr /></p>
<p><strong>Thank you for your responses thus far. I've inserted all of the suggestions made by @Jon Skeet, and would like feedback on the updated questions I've asked as a result.</strong></p>
<blockquote>
<p><strong>NB</strong>: This question is meant to explore ways to refactor string handling functions in C#. I copied/pasted the first code <code>as is</code>. I'm well aware you can remove the <code>System.Convert.ToString()</code> in the first method, and I did just that. If anyone is aware of any implications of removing the <code>System.Convert.ToString()</code>, that would also be helpful to know.</p>
</blockquote>
http://stackoverflow.com/questions/1694183/community-license-agreement-for-commercial-saas-software/1694187#16941870Answer by George Stocker for Community License Agreement for Commercial (SaaS) software?George Stocker2009-11-07T19:47:38Z2009-11-07T19:47:38Z<p>I'd pay a lawyer and have him write up the EULA.</p>
<p>You'll forget something, or have some sort of loophole you won't notice. </p>
<p>It's always best to ask for legal advice from a lawyer.</p>
http://stackoverflow.com/questions/1670771/in-apache-if-i-go-to-https-mysite-com-the-page-itself-is-over-https-but-all/1670805#16708053Answer by George Stocker for In apache, if i go to https://mysite.com, the page itself is over https, but all images/links are http://. Is there way to auto rewrite the html so its all https://?George Stocker2009-11-03T23:21:48Z2009-11-03T23:21:48Z<p><a href="http://stackoverflow.com/questions/954327/hidden-features-of-html/960111#960111">Try this</a>:</p>
<blockquote>
<p>Using a protocol-independent absolute
path:</p>
<pre><code><img src="//domain.com/img/logo.png"/>
</code></pre>
<p>If the browser is viewing an page in
SSL through HTTPS, then it'll request
that asset with the https protocol,
otherwise it'll request it with HTTP.</p>
<p>This prevents that awful "This Page
Contains Both Secure and Non-Secure
Items" error message in IE, keeping
all your asset requests within the
same protocol.</p>
</blockquote>
http://stackoverflow.com/questions/1669517/how-would-i-find-a-book-in-a-large-library/1669535#16695357Answer by George Stocker for How would I find a book in a large library?George Stocker2009-11-03T19:15:07Z2009-11-03T19:15:07Z<p>Use <a href="http://en.wikipedia.org/wiki/Binary%5Fsearch%5Falgorithm" rel="nofollow">Binary search</a> type questions to narrow the location of the book.</p>
<p>Each question should narrow the search field by half.</p>
<p><strong><em>"Is the book on this half of the library"?</em></strong> (Point to the right direction).</p>
<p>Would work as an initial question.</p>
<p>You can also use <a href="http://en.wikipedia.org/wiki/Knights%5Fand%5FKnaves" rel="nofollow">The Knight and the Knave</a> as part of your method of questioning the person. Your first 5 questions (to establish a baseline) could be about things you 'know'. You could determine his error rate from there. After that, you can use Binary Search-esque questions to determine where the book is.</p>
http://stackoverflow.com/questions/1618575/web-access-in-visual-studio-2010/1655165#16551650Answer by George Stocker for Web Access in Visual Studio 2010George Stocker2009-10-31T18:22:14Z2009-11-02T14:23:47Z<p>As far as your question about Web Access, <a href="http://blogs.msdn.com/hakane/archive/2009/05/19/where-is-team-system-web-access-in-tfs-2010-beta1.aspx" rel="nofollow">this blog post</a> from Hajan Eskci details what's happening with Web Access:</p>
<p><strong>Team System Web Access in TFS 2010 Beta1</strong></p>
<blockquote>
<p>Until now, Team System Web Access was published as an out of band power tool. In this release and beyond, Web Access is now an integrated part of TFS, and it is installed by default when you install TFS.</p>
</blockquote>
http://stackoverflow.com/questions/1653401/how-to-create-themes-and-skin-in-asp-net-mvc/1653414#16534142Answer by George Stocker for how to create themes and skin in asp.net mvc?George Stocker2009-10-31T04:30:57Z2009-10-31T04:44:18Z<p>For ASP.NET MVC, you don't have the ASP.NET 'Themes' mantra, you <a href="http://www.w3.org/MarkUp/Guide/Style" rel="nofollow">typically use CSS</a>.</p>
http://stackoverflow.com/questions/1650854/javascript-being-injected-in-my-php-pages/1651027#16510275Answer by George Stocker for JavaScript being injected in my PHP PagesGeorge Stocker2009-10-30T16:49:59Z2009-10-30T17:33:00Z<p>Since you mentioned PHP, I'll run through a list of possible ways it could have happened. This list is not all-inclusive; but it will allow you to do a fair amount of investigation into what happened.</p>
<ol>
<li>It's possible your web host was hacked and this was placed into your page through lax security on their part. However, <strong>do not assume this is the case</strong>. This should be your <strong>last resort</strong>. </li>
<li><p>It's probably your fault. I don't say this to point blame; but the sooner we developers realize we're the cause of our problems, the better off we'll all be. The only developer I don't trust is the one that says he doesn't make mistakes.</p></li>
<li><p>Your site was probably hit with an <a href="http://ha.ckers.org/xss.html" rel="nofollow">XSS attack</a>. </p>
<ul>
<li>Do you have <strong>any</strong> way for a user to type in information on your website? Do you use <strong>any</strong> textboxes or anything that would allow input from the user?</li>
</ul></li>
</ol>
<p>If so, then your site is vulnerable to XSS and other attacks. <a href="http://www.owasp.org/index.php?title=XSS%5F%28Cross%5FSite%5FScripting%29%5FPrevention%5FCheat%5FSheet" rel="nofollow">Here's a 'cheat-sheet'</a> that will tell you general things you can do to mitigate this.</p>
<ol>
<li><p>You should not allow any user data to pass to the database <a href="http://stackoverflow.com/questions/60174/best-way-to-stop-sql-injection-in-php">without being parametrized</a>.</p></li>
<li><p>If you're going to allow a user to insert HTML, then you need to <a href="http://cfis.savagexi.com/2007/02/08/a-sane-way-of-sanitizing-html" rel="nofollow">sanitize it</a>. </p></li>
<li><p><a href="http://php.net/manual/en/security.magicquotes.php" rel="nofollow">Don't use magic quotes</a>.</p></li>
</ol>
<p>There are many ways this could have happened, but without more information, I'm going off of what you've written.</p>
<p>Steps:</p>
<ol>
<li>Take the app offline.</li>
<li>Query your database to see how many pages / entries this has been injected into.</li>
<li>Check through your code for the things I mention.</li>
<li>Fix those.</li>
<li>Go through your database and take out any suspect lines (a SQL script would be easiest).</li>
<li>Re-deploy App.</li>
<li>Make sure you keep an eye on your webserver logs. They're a godsend to determining where the attack came from.</li>
</ol>
http://stackoverflow.com/questions/1616693/in-c-should-opening-curly-braces-be-put-on-a-new-line/1616694#16166944Answer by George Stocker for In C#, should opening curly braces be put on a new line?George Stocker2009-10-24T01:48:10Z2009-10-24T02:12:53Z<p>You should have your braces on a new line. That's part of the <a href="http://msdn.microsoft.com/en-us/library/aa291593%28VS.71%29.aspx" rel="nofollow">Microsoft Standard Style Guidelines for C#</a>.</p>
<p>It's also what the IDE (Visual Studio) defaults to; and you have to install StyleCop if you want to change its default* ( *I think, I don't know if there's a way to do it natively or not).</p>
<p>The Mono project <a href="http://mono-project.com/Coding%5FGuidelines" rel="nofollow">uses the first method</a> (Brace on same line), however.</p>
<p>Bottom Line: <strong>Use whatever your team mandates</strong>. But my recommendation is not to fight the IDE, or how C# has been formatted since its inception. Don't go against the grain if you don't have to.</p>
<p>Other style guides that follow the 'Standard' method:</p>
<ul>
<li><a href="http://www.icsharpcode.net/TechNotes/SharpDevelopCodingStyle03.pdf" rel="nofollow">SharpDevelop Coding StyleGuideLines</a></li>
<li><a href="http://www.sourceformat.com/pdf/cs-coding-standard-bellware.pdf" rel="nofollow">C# Style Guide (By Scott Bellware</a></li>
</ul>
http://stackoverflow.com/questions/1616453/mysql-auto-increment-primary-key-ids/1616468#16164681Answer by George Stocker for Mysql auto increment primary key id'sGeorge Stocker2009-10-23T23:36:34Z2009-10-23T23:36:34Z<p>No. </p>
<p>You should keep them; a database always needs something that differentiates a row from another row (a "Key" of some sort).</p>
<p>If you have something that is guaranteed to be unique for each row, then you can use that as a key; otherwise keep the Primary Key and the Auto generated ID.</p>
http://stackoverflow.com/questions/1611232/waterfall-vs-agile/1611267#16112670Answer by George Stocker for Waterfall vs Agile George Stocker2009-10-23T03:42:05Z2009-10-23T03:42:05Z<p>Programming according to specifications is like walking on water: It's easiest if it's frozen.</p>
<p>This is what Agile lacks that Waterfall does not.</p>
http://stackoverflow.com/questions/1607321/how-to-programmatically-impose-printing-restrictions-drm-on-pdf-for-confidential/1607349#16073490Answer by George Stocker for How to programmatically impose printing restrictions/DRM on PDF for confidential documents using Microsoft .NETGeorge Stocker2009-10-22T13:48:46Z2009-10-22T13:48:46Z<p>The answer to your question is a legal one, not a technical solution. Even if they have to take a picture of the computer screen, they'll be able to print out those PDFs. The <kbd>PrtScn</kbd> works well too. </p>
<p>If you introduce DRM, you're just going to upset them and fight a losing battle. Your best bet is to talk to management and have them work up a legal solution, and not a software solution.</p>
http://stackoverflow.com/questions/1604067/asp-net-mvc-vs-asp-net-4-0/1604116#16041162Answer by George Stocker for ASP.NET MVC vs. ASP.NET 4.0George Stocker2009-10-21T22:55:42Z2009-10-21T22:55:42Z<p>If your criteria include this: </p>
<blockquote>
<p>We are aiming for high testability, loose coupling, and "controlled HTML" -- to me that meant ASP.NET MVC. </p>
</blockquote>
<p>Then ASP.NET MVC is a <strong>must</strong>. Even with ASP.NET 4.0, you can't get around the fact that ASP.NET is hard to test for without a lot of extra leg work that just isn't there for MVC.</p>
<p>I use ASP.NET in my 'day job', but at night time I'm ASP.NET MVC all the way. ASP.NET 4.0 still hangs on to the legacy "Code-Behind" and the View/Controller coupling that goes on with ASP.NET Controls. These are things that make it much harder to test, and are 'tightly coupled' by definition.</p>
http://stackoverflow.com/questions/1918109/generating-database-scripts-in-sql-server-expressComment by George Stocker on Generating Database Scripts in SQL Server ExpressGeorge Stocker2009-12-16T22:14:48Z2009-12-16T22:14:48ZI just counted the questions on the front page, and 35 out of 50 summarized the question, the other 15 actually posted the question in the title. That is completely unscientific; but it's a starting point. I'll have to check stackQL for the actual breakdown.http://stackoverflow.com/questions/1918109/generating-database-scripts-in-sql-server-expressComment by George Stocker on Generating Database Scripts in SQL Server ExpressGeorge Stocker2009-12-16T22:12:27Z2009-12-16T22:12:27Z@Robert Harvey : There are multiple camps on whether the title should tell you what the post is about or whether it should ask the question. I believe the title should summarize the post but not ask the question.http://stackoverflow.com/questions/1918109/generating-database-scripts-in-sql-server-expressComment by George Stocker on Generating Database Scripts in SQL Server ExpressGeorge Stocker2009-12-16T22:09:07Z2009-12-16T22:09:07ZIt appears we all edited the question. Let me know what you think about my edits and we'll go from there.http://stackoverflow.com/questions/1916299/new-features-of-c-4-0Comment by George Stocker on New features of C# 4.0George Stocker2009-12-16T17:35:21Z2009-12-16T17:35:21ZDuplicate of: <a href="http://stackoverflow.com/questions/903420/what-are-the-new-features-of-c-v4-0" rel="nofollow" title="what are the new features of c v4 0">stackoverflow.com/questions/903420/…</a> and <a href="http://stackoverflow.com/questions/1540416/what-new-features-are-in-c-4-0-and-visual-studio-2010" rel="nofollow" title="what new features are in c 4 0 and visual studio 2010">stackoverflow.com/questions/1540416/…</a> and <a href="http://stackoverflow.com/questions/292265/new-cool-features-of-c-4-0" rel="nofollow" title="new cool features of c 4 0">stackoverflow.com/questions/292265/…</a>http://stackoverflow.com/questions/304367/will-the-net-entity-framework-work-with-a-mdbComment by George Stocker on Will the .Net Entity Framework work with a .mdb?George Stocker2009-12-16T14:30:54Z2009-12-16T14:30:54ZEvery time you use Microsoft Access in a production application, God kills a kitten.http://stackoverflow.com/questions/1909110/why-is-couchdb-popularComment by George Stocker on Why is CouchDB popular?George Stocker2009-12-15T20:24:49Z2009-12-15T20:24:49Z@micahwittman You didn't see the poster's original question. Before I edited it he even included the word 'voldemort'. It was 1) silly 2) as asked, not a real question or at best subject and argumentative.http://stackoverflow.com/questions/1903181/debugging-what-this-lisp-virus-is-doingComment by George Stocker on Debugging what this LISP Virus is doingGeorge Stocker2009-12-14T20:15:27Z2009-12-14T20:15:27ZThis is very much programming related. This ought to stay on Stack Overflow.http://stackoverflow.com/questions/1895861/how-to-get-the-value-of-usercontrol-in-codebehind-of-pageComment by George Stocker on How to get the value of usercontrol in codebehind of page .George Stocker2009-12-14T14:58:40Z2009-12-14T14:58:40ZWhy'd you edit out the parts of your question that actually make sense? Do you not want an answer?http://stackoverflow.com/questions/1888949/what-is-the-future-of-unmanaged-codeComment by George Stocker on What is the future of unmanaged code?George Stocker2009-12-11T16:19:14Z2009-12-11T16:19:14ZNot to mention requires extended discussion, doesn't have a concrete 'right' answer, and ought to be wiki as such. Of course, I'd still vote to close as S & A.http://stackoverflow.com/questions/1884016/recommendations-for-net-code-analysis-tools-and-code-deployment-toolsComment by George Stocker on Recommendations for .NET code analysis tools and code deployment toolsGeorge Stocker2009-12-10T21:06:58Z2009-12-10T21:06:58ZThis is a duplicate many times over.http://stackoverflow.com/questions/1883956/is-there-a-possibility-of-there-ever-being-a-php-netComment by George Stocker on Is there a possibility of there ever being a PHP.NET?George Stocker2009-12-10T21:06:07Z2009-12-10T21:06:07ZOh God, I hope not. Then there'll be no shutting up the PHP guys about how "Microsoft costs too much."
http://stackoverflow.com/questions/1883492/perl-vs-python-which-is-better-for-a-simple-parsing-programComment by George Stocker on Perl vs Python: Which is better for a simple parsing program?George Stocker2009-12-10T20:20:37Z2009-12-10T20:20:37Z@dsimcha I don't know Spanish or French well, but of the two, I know Spanish better than French. Same thing.http://stackoverflow.com/questions/1883492/perl-vs-python-which-is-better-for-a-simple-parsing-programComment by George Stocker on Perl vs Python: Which is better for a simple parsing program?George Stocker2009-12-10T19:57:19Z2009-12-10T19:57:19ZWhich one do you know better?http://stackoverflow.com/questions/1881462/cost-schedule-quality-pick-twoComment by George Stocker on Cost, schedule, quality: pick twoGeorge Stocker2009-12-10T15:09:37Z2009-12-10T15:09:37ZDuplicate of: <a href="http://stackoverflow.com/questions/1334875/good-cheap-fast-which-two" rel="nofollow" title="good cheap fast which two">stackoverflow.com/questions/1334875/…</a>http://stackoverflow.com/questions/1827403/working-with-state-machine-workflows-in-asp-net-mvcComment by George Stocker on Working with State Machine Workflows in ASP.NET MVCGeorge Stocker2009-12-09T22:38:35Z2009-12-09T22:38:35Z@AnthonyWJones ASP.NET MVC is mostly done with C# - and C# allows a broader swath of developers to lay eyes on this problem that while they don't have direct MVC experience, they do have experience in the problem domain and can assist.