User Rich B - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T16:33:28Zhttp://stackoverflow.com/feeds/user/5640http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/121724/where-can-i-find-free-wpf-controls-and-control-templates7Where can I find free WPF controls and control templates?Rich B2008-09-23T15:26:22Z2009-11-10T13:23:29Z
<p>I am looking for some recommendations on good places to find libraries of controls/templates/styles for WPF. I know about the usual places like Infragistics, but it seems to me that there should be some kind of community effort by now to share nice, clean, well written controls for WPF controls.</p>
<p>I am not big on the design side, and it would be nice to fill out my personal libraries with some nice examples from people who are better at design.</p>
<p>Any ideas/recommendations?</p>
http://stackoverflow.com/questions/122107/checkout-one-file-from-subversion/122142#1221421Answer by Rich B for Checkout one file from subversionRich B2008-09-23T16:30:01Z2009-11-10T01:47:57Z<blockquote>
<p>If you want to view readme.txt in your
repository without checking it out:</p>
<p>$ svn cat
<a href="http://svn.red-bean.com/repos/test/readme.txt" rel="nofollow">http://svn.red-bean.com/repos/test/readme.txt</a><br>
This is a README file. You should read
this.</p>
<p>Tip:
If your working copy is out of date
(or you have local modifications) and
you want to see the HEAD revision of a
file in your working copy, svn cat
will automatically fetch the HEAD
revision when you give it a path:</p>
<p>$ cat foo.c<br>
This file is in my local
working copy and has changes that
I've made.</p>
<p>$ svn cat foo.c<br>
Latest revision fresh
from the repository!</p>
</blockquote>
<p><a href="http://svnbook.red-bean.com/en/1.0/re03.html" rel="nofollow">Source</a></p>
http://stackoverflow.com/questions/1472410/how-can-i-retrieve-an-image-from-sql-server-using-asp-net-mvc-with-the-ef1How can I retrieve an image from SQL Server using ASP.NET MVC with the EF?Rich B2009-09-24T15:23:20Z2009-11-03T21:41:15Z
<p>I have seen other questions about this, but I have not seen a complete solution for this.</p>
<p>I am using ASP.NET MVC with the Entity Framework, and I have a SQL Server database using an image datatype.</p>
<h3>View:</h3>
<pre><code><% foreach (var v in (IEnumerable<MyNamespace.Models.MyObject>)ViewData.Model) { %>
<span>
<%= v.Name %>
</span>
<br />
<span>
<%= v.Description %>
</span>
<br />
<!-- Display image here -->
<% } %>
</code></pre>
<h3>Controller:</h3>
<pre><code>public ActionResult Index() {
ViewData.Model = _db.MyObject.ToList();
return View();
}
</code></pre>
<p>What do I need to do in my view and in my controller to insert my image while doing my best to stay with the principles of ASP.NET MVC?</p>
<p><hr /></p>
<h3>What I have so far:</h3>
<p><br ></p>
<h3>View:</h3>
<pre><code><img src="<%= Url.Action( "ShowImage", "Controller", new { id = v.ID } ) %>" />
</code></pre>
<h3>Controller:</h3>
<pre><code>public ActionResult ShowImage(int id) {
}
</code></pre>
<p>This is what I have so far, but I could be way off. It seems like there should be a much easier method to do this.</p>
http://stackoverflow.com/questions/863565/how-can-i-get-my-driver-whql-signed-for-vista-641How can I get my driver WHQL signed for Vista 64?Rich B2009-05-14T14:14:33Z2009-10-21T01:49:29Z
<p>I have a driver that my company has been using for a few years for our customers. The driver can no longer be installed under Vista 64. I believe I need to get the driver signed, but I am not sure how I can get started.</p>
<ul>
<li>What is the best place to get started? </li>
<li>How long does this typically take? </li>
<li>What will I need to send to Microsoft? </li>
<li>Are there third parties who are willing to do this all for us? </li>
<li>What does the process (with or without third parties) usually cost?</li>
</ul>
http://stackoverflow.com/questions/1472410/how-can-i-retrieve-an-image-from-sql-server-using-asp-net-mvc-with-the-ef/1472786#1472786-1Answer by Rich B for How can I retrieve an image from SQL Server using ASP.NET MVC with the EF?Rich B2009-09-24T16:25:53Z2009-09-24T21:03:43Z<p>Using Lazurus' answer, I have come up with the following solution. I like his approach, but for simplicity's sake, I am using this to get started and I think it is the best (for now) to help other's understand it.</p>
<p>Any better answers are welcome, as well as criticisms about this code since I know it is not very elegant at all.</p>
<pre><code>public FileContentResult ShowImage(long ID) {
return File( _db.Vehicles.First(m => m.ID == ID).Picture, MediaTypeNames.Image.Jpeg);
}
</code></pre>
http://stackoverflow.com/questions/66776/opc-in-net0OPC in .NETRich B2008-09-15T20:46:31Z2009-09-22T08:14:45Z
<p>Where is a good place to start with making an application in .NET that communicates through <a href="http://www.opcfoundation.org/Default.aspx/01_about/01_whatis.asp" rel="nofollow">OPC</a>?</p>
http://stackoverflow.com/questions/1279613/what-is-an-orm-and-where-can-i-learn-more-about-it/1279633#1279633-1Answer by Rich B for What is an ORM and where can I learn more about it?Rich B2009-08-14T19:07:11Z2009-08-14T19:07:11Z<p><a href="http://stackoverflow.com/questions/53428/">What are some good Python ORM solutions?</a></p>
http://stackoverflow.com/questions/140774/ways-to-prepare-your-mind-before-coding/140807#140807-1Answer by Rich B for Ways to prepare your mind before coding?Rich B2008-09-26T17:28:04Z2009-07-20T23:31:30Z<p><a href="http://www.bose.com/controller?event=view%5Fproduct%5Fpage%5Fevent&product=qc2%5Fheadphones%5Findex" rel="nofollow">Bose noise cancelling headphones</a> and <a href="http://www.pandora.com/" rel="nofollow">Pandora</a>.</p>
http://stackoverflow.com/questions/1122206/how-can-i-implement-rss-2-in-code-igniter/1122402#1122402-1Answer by Rich B for How can I implement RSS 2 in Code Igniter?Rich B2009-07-13T22:19:27Z2009-07-13T22:19:27Z<p>Try these links:</p>
<blockquote>
<p><a href="http://www.derekallard.com/blog/post/building-an-rss-feed-in-code-igniter/" rel="nofollow">http://www.derekallard.com/blog/post/building-an-rss-feed-in-code-igniter/</a></p>
<p><a href="http://codeigniter.com/forums/viewthread/45813/P15/" rel="nofollow">http://codeigniter.com/forums/viewthread/45813/P15/</a></p>
<p><a href="http://en.wikipedia.org/wiki/RSS" rel="nofollow">http://en.wikipedia.org/wiki/RSS</a></p>
<p><a href="http://validator.w3.org/feed/" rel="nofollow">http://validator.w3.org/feed/</a></p>
</blockquote>
http://stackoverflow.com/questions/1033570/what-are-the-differences-between-a-web-service-and-a-windows-service/1033597#10335973Answer by Rich B for What are the differences between a web service and a Windows service?Rich B2009-06-23T16:09:58Z2009-06-26T02:13:01Z<p>You are asking us to compare apples and oranges. I am posting definitions as well as links to further reading for you so you can see why these two things are exclusive and cannot be compared like you are trying to do.</p>
<p><a href="http://en.wikipedia.org/wiki/Web%5Fservice" rel="nofollow">Web service</a>:</p>
<blockquote>
<p>Web services are frequently just Internet application programming interfaces (API) that can be accessed over a network, such as the Internet, and executed on a remote system hosting the requested services</p>
</blockquote>
<p><a href="http://en.wikipedia.org/wiki/Windows%5Fservice" rel="nofollow">Windows service</a>:</p>
<blockquote>
<p>A Windows service is a long-running executable that performs specific functions and which is designed not to require user intervention. </p>
</blockquote>
http://stackoverflow.com/questions/1027788/how-can-i-make-an-iphone-app-that-responds-to-the-onring-event/1027885#10278851Answer by Rich B for How can I make an iPhone app that responds to the OnRing event?Rich B2009-06-22T15:36:43Z2009-06-25T23:48:09Z<p>This is not possible unless you have a jailbroken phone.</p>
http://stackoverflow.com/questions/1020581/how-can-i-programmatically-determine-my-processor-type/1020584#1020584-1Answer by Rich B for How can I programmatically determine my processor type?Rich B2009-06-19T17:04:39Z2009-06-19T17:04:39Z<p>In C#:</p>
<pre><code>using System;
using Microsoft.Win32;
class Class1
{
static void Main(string[] args)
{
RegistryKey RegKey = Registry.LocalMachine;
RegKey = RegKey.OpenSubKey("HARDWARE\\DESCRIPTION\\System\\CentralProcessor\\0");
Object cpuSpeed = RegKey.GetValue("~MHz");
Object cpuType = RegKey.GetValue("VendorIdentifier");
Console.WriteLine("You have a {0} running at {1} MHz.",cpuType,cpuSpeed);
}
}
</code></pre>
http://stackoverflow.com/questions/997144/should-i-first-learn-perl-or-php-for-open-source-web-development/997171#997171-1Answer by Rich B for Should I first learn Perl or PHP for Open source web development?Rich B2009-06-15T16:53:04Z2009-06-15T17:15:58Z<p>Why not continue on the Microsoft stack if you want to get into Open Source?</p>
<p>Try here:</p>
<blockquote>
<p><a href="http://www.codeplex.com" rel="nofollow">http://www.codeplex.com</a></p>
</blockquote>
<p>As pointed out in the comments by <a href="http://stackoverflow.com/users/51752/frakkle">Frakkle</a>, you can even try other 'Open Source' languages while continuing on the Microsoft stack.</p>
<p><hr /></p>
<h3>Perl:</h3>
<blockquote>
<p><a href="http://www.activestate.com/activeperl/" rel="nofollow">ActivePerl</a></p>
</blockquote>
<p><hr /></p>
<h3>Python:</h3>
<blockquote>
<p><a href="http://www.codeplex.com/Wiki/View.aspx?ProjectName=IronPython" rel="nofollow">IronPython</a></p>
</blockquote>
<p><hr /></p>
<h3>Edit:</h3>
<p>Since you changed your question, I will add you could also use a LAMC# stack:</p>
<blockquote>
<p><a href="http://www.mono-project.com/" rel="nofollow">The Mono Project</a></p>
</blockquote>
http://stackoverflow.com/questions/965777/what-is-the-best-way-for-my-application-to-get-user-input-in-vb-net/965806#9658062Answer by Rich B for What is the best way for my application to get user input in VB.NET?Rich B2009-06-08T16:38:31Z2009-06-08T16:50:16Z<p>Why not use a numeric up/down control (spinner)?</p>
<p>Something like this would work well:</p>
<blockquote>
<p><a href="http://visualbasic.about.com/od/usingvbnet/l/aa082103a.htm" rel="nofollow">http://visualbasic.about.com/od/usingvbnet/l/aa082103a.htm</a></p>
</blockquote>
<p>You can embed this in a custom field in a datagrid or repeater if necessary.<br />
You can also just use a <code>combobox</code>:</p>
<blockquote>
<p><a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.combobox.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.windows.forms.combobox.aspx</a></p>
</blockquote>
<p>Depending on what you are using this for, you might also be able to use something like this:</p>
<blockquote>
<p><a href="http://www.codeproject.com/KB/miscctrl/cs_star_rating_control.aspx" rel="nofollow">http://www.codeproject.com/KB/miscctrl/cs_star_rating_control.aspx</a></p>
</blockquote>
<p>Then the user can just click the value.</p>
<p>With either of these options at least your user wont have to enter a value manually and you can set bounds in the control instead of having to validate their input. Your last option should be the user entering a number into a <code>textbox</code> really.</p>
http://stackoverflow.com/questions/956428/what-kind-of-safeguards-do-you-use-to-avoid-accidentally-making-unintended-change/956439#9564395Answer by Rich B for What kind of safeguards do you use to avoid accidentally making unintended changes to your production environment?Rich B2009-06-05T15:18:52Z2009-06-05T15:18:52Z<p>The most direct answer is: "Don't do that."</p>
http://stackoverflow.com/questions/955504/how-do-i-run-dot-as-a-command-from-python/956429#9564292Answer by Rich B for How do I run "dot" as a command from Python?Rich B2009-06-05T15:15:33Z2009-06-05T15:15:33Z<p>Try this: </p>
<pre><code># -*- coding: utf-8 -*-
import os
import sys
print os.environ['PATH']
os.environ['PATH'] += ":"+"/usr/local/bin"
print os.environ['PATH']
print os.getcwd()
from subprocess import check_call
print check_call(["dot", "-o9.png", "-Tpng", "./6.dot"])
</code></pre>
<p>Taken from the question to try and maintain some sort of sanity here.</p>
http://stackoverflow.com/questions/177974/how-can-i-make-email-go-to-a-local-folder-during-testing/178072#1780725Answer by Rich B for How can I make email go to a local folder during testing?Rich B2008-10-07T11:41:58Z2009-05-28T19:10:21Z<p>Yes there is a way.</p>
<blockquote>
<p>You can alter web.config like this so
that when you send email it will
instead be created as an .EML file in
c:\LocalDir.</p>
</blockquote>
<pre><code> <configuration>
<system.net>
<mailSettings>
<smtp deliveryMethod="SpecifiedPickupDirectory">
<specifiedPickupDirectory pickupDirectoryLocation="c:\LocalDir"/>
</smtp>
</mailSettings>
</system.net>
</configuration>
</code></pre>
<p>You can also create an instance of the <a href="http://msdn.microsoft.com/en-us/library/system.net.mail.smtpclient.aspx" rel="nofollow"><code>SmtpClient</code></a> class with these same settings, if you don't want to/can't change the web.config. In C# that looks something like this:</p>
<pre><code>var smtpClient = new SmtpClient();
smtpClient.DeliveryMethod = SmtpDeliveryMethod.SpecifiedPickupDirectory;
var emailPickupDirectory = HostingEnvironment.MapPath("~/EmailPickup");
if (!Directory.Exists(emailPickupDirectory)) {
Directory.CreateDirectory(emailPickupDirectory)
}
smtpClient.PickupDirectoryLocation = emailPickupDirectory;
</code></pre>
http://stackoverflow.com/questions/920556/how-can-i-read-an-in-memory-excel-file-with-ado-net/920579#920579-1Answer by Rich B for How can I read an in memory excel file with ADO.NET?Rich B2009-05-28T12:23:15Z2009-05-28T12:23:15Z<p>I don't think it is possible to do this via just a connection string.</p>
<p>If you want help with an Excel file on disk: <a href="http://connectionstrings.com/excel-2007" rel="nofollow">http://connectionstrings.com/excel-2007</a></p>
<p>In general: <a href="http://connectionstrings.com/" rel="nofollow">http://connectionstrings.com/</a></p>
http://stackoverflow.com/questions/916441/how-can-i-integrate-a-jabber-server-into-my-web-application/917322#9173220Answer by Rich B for How can I integrate a Jabber server into my web application?Rich B2009-05-27T18:34:25Z2009-05-27T18:34:25Z<blockquote>
<p><a href="http://www.igniterealtime.org/projects/openfire/index.jsp" rel="nofollow">Openfire</a> is a real time
collaboration (RTC) server licensed
under the Open Source GPL. It uses the
only widely adopted open protocol for
instant messaging, XMPP (also called
Jabber). Openfire is incredibly easy
to setup and administer, but offers
rock-solid security and performance.</p>
</blockquote>
http://stackoverflow.com/questions/883118/what-can-i-use-to-determine-similar-words-or-keywords/883143#8831436Answer by Rich B for What can I use to determine similar words or keywords?Rich B2009-05-19T14:30:54Z2009-05-19T14:38:40Z<p>Why not send a search query out to Google and parse what it returns?</p>
<p>Also, check out <a href="http://labs.google.com/sets" rel="nofollow">Google Sets</a>.</p>
http://stackoverflow.com/questions/864688/where-can-i-find-a-syntax-highlighting-library-for-java/864757#864757-1Answer by Rich B for Where can I find a syntax highlighting library for Java?Rich B2009-05-14T17:48:27Z2009-05-14T17:48:27Z<p>You should check Google's <a href="http://code.google.com/p/google-code-prettify/" rel="nofollow">prettify.js</a> out. Some pretty neat tricks in there, and you might get a more robust feel for syntax highlighting.</p>
http://stackoverflow.com/questions/269003/how-can-i-make-the-format-document-shortcut-work-for-c-source-files-in-vs20081How can I make the format document shortcut work for C source files in VS2008?Rich B2008-11-06T15:03:12Z2009-05-12T20:20:24Z
<p>How can I make ctrl k,d work in a pure C file?
I really enjoy the auto formatting in C#, and I would like to have the same functionality in C as well.</p>
<p>I am using VS2008, but it would probably be helpful if this worked in VS2005 as well.</p>
http://stackoverflow.com/questions/184456/is-there-an-equivalent-to-sha1-in-ms-sql3Is there an equivalent to SHA1() in MS-SQL?Rich B2008-10-08T19:30:02Z2009-05-12T20:19:46Z
<p>Converting a couple stored procedures from MySQL to Microsoft SQL server. Everything is going well, except one procedure used the MySQL <code>SHA1()</code> function. I cannot seem to find an equivalent to this in MS-SQL.</p>
<p>Does anyone know a valid equivalent for <code>SHA1()</code> on MS-SQL?</p>
http://stackoverflow.com/questions/682855/how-can-i-keep-a-connection-open-when-performing-multiple-queries/682871#68287112Answer by Rich B for How can I keep a Connection open when performing multiple queries?Rich B2009-03-25T18:28:47Z2009-03-25T18:42:39Z<p>Although you may not yet know it, you are doing it correctly.</p>
<p>Open the connection, do your query, close it. Preferably using a <code>using</code> block or <code>try</code>/<code>finally</code>.</p>
<p>This may sound like a lot of overhead, but the connection pool in the .NET Framework Data Provider for SQL Server will actually optimize this for you.</p>
<p>In fact closing the connection is recommended.
Here is a quote from the documentation:</p>
<blockquote>
<p>It is recommended that you always
close the Connection when you are
finished using it in order for the
connection to be returned to the pool.
This can be done using either the
Close or Dispose methods of the
Connection object. Connections that
are not explicitly closed might not be
added or returned to the pool. For
example, a connection that has gone
out of scope but that has not been
explicitly closed will only be
returned to the connection pool if the
maximum pool size has been reached and
the connection is still valid.</p>
</blockquote>
<p>Here is an example of some code that does this:</p>
<pre><code>try {
conn.Open();
// Perform query here
} finally {
conn.Close();
}
</code></pre>
<p>For reference: </p>
<p><a href="http://msdn.microsoft.com/en-us/library/8xx3tyca%28VS.71%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/8xx3tyca(VS.71).aspx</a></p>
http://stackoverflow.com/questions/678178/how-can-i-convert-a-list-to-a-multi-dimensional-array/678207#678207-1Answer by Rich B for How can I convert a list<> to a multi-dimensional array?Rich B2009-03-24T16:34:35Z2009-03-24T16:50:15Z<p>To be blunt, the answer is no, not easily.</p>
<p>Perhaps you would like to edit your question to give us more background about why these declarations are needed and we can help you with your root problem?</p>
<p><hr /></p>
<h3>Re your update:</h3>
<p>I assume you cannot change the function you need to pass this into.</p>
<p>I don't see why you cannot just use an <code>object[,]</code> to begin with. This is my recommendation. </p>
<p>I doubt this will help you in your situation, but it might make some of the array working easier on you to start with. Do you know about the <a href="http://msdn.microsoft.com/en-us/library/x303t819.aspx" rel="nofollow"><code>.ToArray()</code></a> method on a <code>List</code>?</p>
http://stackoverflow.com/questions/678049/optimal-data-size/678111#6781114Answer by Rich B for Optimal Data SizeRich B2009-03-24T16:09:33Z2009-03-24T16:16:05Z<p>This question is usually answered by careful engineering based on the specific problem. There is no universal rule.</p>
<p>If you need to only use static allocations (which is pretty rare, I would say) and need to be absolutely optimized, you would calculate exactly what you will need.</p>
<p>Your question seems to be looking for a magical pill, a way to universally solve this problem. So the plain and simple answer is: There is none. You must do the work, or let the computer/library/language do the work for you.</p>
<p>That being said, if you have some specifics to a specific problem, I am sure we could provide a lot more help.</p>
<p>You might find these interesting if you are truly interested in this field:</p>
<blockquote>
<p><a href="http://en.wikipedia.org/wiki/Slab_allocation" rel="nofollow">http://en.wikipedia.org/wiki/Slab_allocation</a></p>
<p><a href="http://www.springerlink.com/content/d0042q1187686683/" rel="nofollow">http://www.springerlink.com/content/d0042q1187686683/</a></p>
<p><a href="http://www.boost.org/doc/libs/1_38_0/doc/html/interprocess/allocators_containers.html" rel="nofollow">http://www.boost.org/doc/libs/1_38_0/doc/html/interprocess/allocators_containers.html</a></p>
</blockquote>
http://stackoverflow.com/questions/674232/could-stackoverflow-work-for-other-fields/674239#6742393Answer by Rich B for Could stackoverflow work for other fields?Rich B2009-03-23T17:00:11Z2009-03-23T17:00:11Z<p>Yes, and it is being <a href="http://blog.stackoverflow.com/2009/03/it-stack-overflow-update-naming-is-hard/" rel="nofollow">implemented</a> for IT generalized stuff.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114359#1143594Answer by Rich B for What are Code Smells? What is the best way to correct them?Rich B2008-09-22T11:39:50Z2009-03-20T20:24:29Z<p>Interface overuse. Any time anyone thinks that interfaces are the answer to all their problems and decides to use the same pattern everywhere, there is something wrong at a low level.</p>
<p>Time to sit these people down and make them understand that they can code simple, clear classes without interfaces too.</p>
http://stackoverflow.com/questions/88490/throwing-exceptions-in-asp-net-c/88502#8850211Answer by Rich B for throwing exceptions in asp.net c#Rich B2008-09-17T22:55:37Z2009-03-18T18:38:54Z<p><code>throw ex;</code> will erase your stacktrace. Don't do this unless you mean to clear the stacktrace. Just use <code>throw;</code></p>
http://stackoverflow.com/questions/569698/what-is-the-best-way-to-access-a-serial-port-from-vba1What is the best way to access a serial port from VBA?Rich B2009-02-20T14:19:13Z2009-03-18T13:18:48Z
<p>What is the best way to access a serial port from VBA?</p>
<p>I have a need for some of our sales reps to be able to send a simple string over the serial port from an action button in PowerPoint. I don't commonly use VBA, especially for anything like this. Normally I would turn it into an application of some sort, but I actually don't think the idea is that bad. It will be a handy tool for them to demo this device with while on a projector and talking to other sales guys and non technical people. Also, this sales guy will have no problem making small modifications to the VBA or PowerPoint presentation, but would not do as well with recompiling a .NET application.</p>
<p>I know we could do it through a batch file run from the presentation on the action, but that doesn't make me very happy. I figure we could probably access a COM object and run from there, but again I am not real up on the latest and greatest libraries to use in VBA, and it would also be nice to get a quick little primer in how to easily open, send and close the connection.</p>
<p>Since this will need to be run on multiple people's computers, it would be nice if it would be easily transportable to other machines. I should be able to say it has to run on Office 2007 and Windows XP. Compatibility with anything else would be a nice bonus though.</p>
<p>How should I go about handling this? Any good tips or tricks? Library recommendations?</p>
http://stackoverflow.com/questions/1785560/why-does-twitter-limit-the-message-length-to-140-charactersComment by Rich B on Why does Twitter limit the message length to 140 characters?Rich B2009-11-23T20:35:01Z2009-11-23T20:35:01ZCW is not an excuse to post garbage.http://stackoverflow.com/questions/1785560/why-does-twitter-limit-the-message-length-to-140-charactersComment by Rich B on Why does Twitter limit the message length to 140 characters?Rich B2009-11-23T20:08:59Z2009-11-23T20:08:59Z@pesto: How write less. plz 2 explain? kthxbye!http://stackoverflow.com/questions/1785560/why-does-twitter-limit-the-message-length-to-140-characters/1785564#1785564Comment by Rich B on Why does Twitter limit the message length to 140 characters?Rich B2009-11-23T20:04:05Z2009-11-23T20:04:05ZIt even says that in the wiki article you link. How can you fail this hard?http://stackoverflow.com/questions/1520985/what-is-a-command-line-compiler/1521132#1521132Comment by Rich B on What is a command line compiler?Rich B2009-11-23T19:30:24Z2009-11-23T19:30:24ZI disagree. I feel no need to credit anyone.http://stackoverflow.com/questions/1676794/questions-about-game-development-from-web-developpers-point-of-viewComment by Rich B on questions about game development from web developper's point of view.Rich B2009-11-04T21:46:34Z2009-11-04T21:46:34ZSlow down there fella, one question at a time. http://stackoverflow.com/questions/1676702/what-is-the-magic-behind-the-search-engines/1676717#1676717Comment by Rich B on What Is The "Magic" Behind The Search EnginesRich B2009-11-04T21:27:11Z2009-11-04T21:27:11ZThis is a comment, not an answer.http://stackoverflow.com/questions/363591/why-do-programmers-have-such-ridiculously-prickly-personalitiesComment by Rich B on Why do programmers have such ridiculously prickly personalities? Rich B2009-11-04T20:50:30Z2009-11-04T20:50:30ZPROTIP: This is not reddit. Keep this garbage there.http://stackoverflow.com/questions/1675811/how-do-i-plant-a-seed-rather-than-try-to-win-an-argumentComment by Rich B on How do I plant a seed rather than try to win an argument?Rich B2009-11-04T19:59:32Z2009-11-04T19:59:32Z@leeand: Guess what? I don't care. Nor should I. This doesn't belong here, it means nothing to me where you take it.http://stackoverflow.com/questions/1675811/how-do-i-plant-a-seed-rather-than-try-to-win-an-argumentComment by Rich B on How do I plant a seed rather than try to win an argument?Rich B2009-11-04T19:56:04Z2009-11-04T19:56:04Z@leeand: No. I am not google. Try googling for 'discussion forum'.http://stackoverflow.com/questions/1675811/how-do-i-plant-a-seed-rather-than-try-to-win-an-argumentComment by Rich B on How do I plant a seed rather than try to win an argument?Rich B2009-11-04T19:43:42Z2009-11-04T19:43:42Z@Darthcoder: And no, meta discussions are clearly not welcome on SO. That is in the FAQ. There is even a separate site for meta discussions. This wouldn't even fit there.http://stackoverflow.com/questions/1675811/how-do-i-plant-a-seed-rather-than-try-to-win-an-argumentComment by Rich B on How do I plant a seed rather than try to win an argument?Rich B2009-11-04T19:42:35Z2009-11-04T19:42:35Z@darthcoder: Read the FAQ. If you don't agree with it, go elsewhere.http://stackoverflow.com/questions/1675811/how-do-i-plant-a-seed-rather-than-try-to-win-an-argumentComment by Rich B on How do I plant a seed rather than try to win an argument?Rich B2009-11-04T19:10:12Z2009-11-04T19:10:12Z@Lee: The part where it says this is a programming site and to ask programming questions here.http://stackoverflow.com/questions/1675811/how-do-i-plant-a-seed-rather-than-try-to-win-an-argumentComment by Rich B on How do I plant a seed rather than try to win an argument?Rich B2009-11-04T18:58:56Z2009-11-04T18:58:56Z@Leeand: Don't flatter yourself. Read the FAQ.http://stackoverflow.com/questions/1675811/how-do-i-plant-a-seed-rather-than-try-to-win-an-argumentComment by Rich B on How do I plant a seed rather than try to win an argument?Rich B2009-11-04T18:46:03Z2009-11-04T18:46:03Z@Kena: No it really shouldn't. CW is not an excuse to post garbage.http://stackoverflow.com/questions/1674923/why-wont-my-client-server-code-work-outside-of-my-local-machine/1674953#1674953Comment by Rich B on Why won't my client/server code work outside of my local machine?Rich B2009-11-04T16:32:09Z2009-11-04T16:32:09ZThis is a comment, not an answer.