User Rob Burke - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T01:20:10Zhttp://stackoverflow.com/feeds/user/135http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1038843/using-a-global-dumb-error-page-for-all-asp-net-mvc-errors1Using a global (dumb) error page for all ASP.NET MVC errors?Rob Burke2009-06-24T14:47:06Z2009-11-09T14:14:06Z
<p>I've set up and configured ELMAH to log all of my errors on an ASP.NET MVC project I'm working on. It will be used by a small group of users who don't need to know too much so whenever there is <em>any</em> sort of error (404, InvalidOperation, Y2K... anything!) I just want to show them a generic default error view with instructions to call our helpdesk and sit tight.</p>
<p>ELMAH is up and running fine which our helpdesk staff will use to diagnose errors and log / elevate the tickets as necessary. My problem is in getting my global error page to show. I'm using the solution posted <a href="http://danswatik.com/index.php/2009/04/23/how-to-get-elmah-to-work-with-aspnet-mvc-handleerror-attribute/" rel="nofollow">here</a> to ensure that ELMAH and [HandleError] play nice together.</p>
<p>Web.config is set up as so:</p>
<pre><code><customErrors mode="On" />
</code></pre>
<p>If I access <a href="http://application/Home/Index" rel="nofollow">http://application/Home/Index</a> which has a LINQ error (Sequence contains no elements) then I am shown my nice, generic error view from /Shared/Error.aspx but if I try to access <a href="http://application/Fake/Broken" rel="nofollow">http://application/Fake/Broken</a> which is a 404 then I get the usual ASP.NET</p>
<pre><code>Server Error in '/' Application.
The resource cannot be found.
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Requested URL: /Fake/Broken
</code></pre>
<p>Both errors get logged perfectly by ELMAH though.</p>
http://stackoverflow.com/questions/1152208/computing-estimated-times-of-file-copies-movements5Computing estimated times of file copies / movements?Rob Burke2009-07-20T07:56:19Z2009-07-21T11:22:36Z
<p><img src="http://imgs.xkcd.com/comics/estimation.png" alt="They could say "the connection is probably lost," but it's more fun to do naive time-averaging to give you hope that if you wait around for 1,163 hours, it will finally finish." /></p>
<p>Inspired by this <a href="http://xkcd.com/612/" rel="nofollow">xckd cartoon</a> I wondered exactly what is the best mechanism to provide an estimate to the user of a file copy / movement?</p>
<p>The alt tag on xkcd reads as follows:</p>
<blockquote>
<p>They could say "the connection is probably lost," but it's more fun to do naive time-averaging to give you hope that if you wait around for 1,163 hours, it will finally finish.</p>
</blockquote>
<p>Ignoring the funny, is that really how it's done in Windows? How about other OS? Is there a better way?</p>
http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other8Determine if two rectangles overlap each other?Rob Burke2008-11-20T18:21:45Z2009-06-27T14:58:51Z
<p>Hi folks,</p>
<p>I am trying to write a C++ program that takes the following inputs from the user to construct rectangles (between 2 and 5): height, width, x-pos, y-pos. All of these rectangles will exist parallel to the x and the y axis, that is all of their edges will have slopes of 0 or infinity.</p>
<p>I've tried to implement what is mentioned in <a href="http://stackoverflow.com/questions/115426">this</a> question but I am not having very much luck.</p>
<p>My current implementation does the following:</p>
<pre><code>// Gets all the vertices for Rectangle 1 and stores them in an array -> arrRect1
// point 1 x: arrRect1[0], point 1 y: arrRect1[1] and so on...
// Gets all the vertices for Rectangle 2 and stores them in an array -> arrRect2
// rotated edge of point a, rect 1
int rot_x, rot_y;
rot_x = -arrRect1[3];
rot_y = arrRect1[2];
// point on rotated edge
int pnt_x, pnt_y;
pnt_x = arrRect1[2];
pnt_y = arrRect1[3];
// test point, a from rect 2
int tst_x, tst_y;
tst_x = arrRect2[0];
tst_y = arrRect2[1];
int value;
value = (rot_x * (tst_x - pnt_x)) + (rot_y * (tst_y - pnt_y));
cout << "Value: " << value;
</code></pre>
<p>However I'm not quite sure if (a) I've implemented the algorithm I linked to correctly, or if I did exactly how to interpret this?</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/488061/passing-multiple-parameters-to-controller-in-asp-net-mvc-also-generating-on-the6Passing multiple parameters to controller in ASP.NET MVC; also, generating on-the-fly queries in LINQ-to-SQL.Rob Burke2009-01-28T15:34:50Z2009-06-18T16:55:03Z
<p>I'm working on a basic Issue Management System in order to learn ASP.NET MVC. I've gotten it up and running to a fairly decent level but I've run into a problem.</p>
<p>I have a controller named Issue with a view called Open. /Issue/Open lists all of the open issues currently logged on the system. I've defined a route like so:</p>
<pre><code> routes.MapRoute(
"OpenSort", // Route name
"Issue/Open/{sort}", // URL with parameters
new { controller = "Issue", action = "Open", sort = "TimeLogged" } // Parameter defaults
);
</code></pre>
<p>This is working fine so far, using the following code in IssueController.cs:</p>
<pre><code>public ActionResult Open(string sort)
{
var Issues = from i in db.Issues where i.Status == "Open" orderby i.TimeLogged ascending select i;
switch (sort)
{
case "ID":
Issues = from i in db.Issues where i.Status == "Open" orderby i.ID ascending select i;
break;
case "TimeLogged":
goto default;
case "Technician":
Issues = from i in db.Issues where i.Status == "Open" orderby i.Technician ascending select i;
break;
case "Customer":
Issues = from i in db.Issues where i.Status == "Open" orderby i.Customer ascending select i;
break;
case "Category":
Issues = from i in db.Issues where i.Status == "Open" orderby i.Category ascending select i;
break;
case "Priority":
Issues = from i in db.Issues where i.Status == "Open" orderby i.Priority ascending select i;
break;
case "Status":
Issues = from i in db.Issues where i.Status == "Open" orderby i.Status ascending select i;
break;
default:
break;
}
ViewData["Title"] = "Open Issues";
ViewData["SortID"] = sort.ToString();
return View(Issues.ToList());
}
</code></pre>
<p>This is working fine (although, I wonder if there is a better way to handle my definition of the query than a switch?) but now I want to be able to do two things on the Open Issues view:</p>
<ol>
<li>Sort by any of the headings - OK</li>
<li>Filter on certain headings (Technician, Customer, Category, Priority, Status) - ??</li>
</ol>
<p>I can't figure out how to pass two parameters to the Controller so I can organise my queries. I've also just realised that unless I figure out how to generate my queries on the fly I am going to need (number of sort options) * (number of filter options) in my switch.</p>
<p>Argh, can anyone point me in the right direction? Cheers!</p>
http://stackoverflow.com/questions/2125/asp-net-mvc-crud-database-sample3ASP.NET MVC "CRUD" Database SampleRob Burke2008-08-05T11:53:41Z2009-02-24T11:55:00Z
<p>I'm trying to get my head around ASP.NET MVC coming from a LAMP development environment. This isn't for anything production or mission-critical, just a guy trying to learn. I've looked at all I can on <a href="http://asp.net/mvc" rel="nofollow">http://asp.net/mvc</a> but a lot of those videos and tutorials seem to assume you know ASP.NET WebForms (which I don't) although I am quite handy with VB.NET.</p>
<p>My question boils down to, does anyone know of a small tutorial or even have one they made themselves whilst exploring ASP.NET MVC, that literally just shows you how to create, read, update and delete records in an MS SQL database?</p>
http://stackoverflow.com/questions/525701/passing-multiple-result-sets-to-a-view-from-a-controller-in-asp-net-mvc0Passing multiple result sets to a view from a controller in ASP.NET MVC?Rob Burke2009-02-08T13:23:27Z2009-02-08T13:48:53Z
<p>So I have a controller set up as follows:</p>
<pre><code>using NonStockSystem.Models;
namespace NonStockSystem.Controllers
{
[Authorize(Users = "DOMAIN\\rburke")]
public class AdminController : Controller
{
private NonStockSystemDataContext db = new NonStockSystemDataContext();
public ActionResult Index()
{
var enumProducts = from p in db.Products select p;
ViewData["Title"] = "Administration";
return View(enumProducts.ToList());
}
}
}
</code></pre>
<p>The Index view on the Admin controller just lists the products in the system and allows us to click on a product to view / edit / delete it. Really simple. However each product has a CategoryID which tell us which Category it is in which is stored in a separate table.</p>
<p>The (very simplified) current view is this:</p>
<pre><code><%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" AutoEventWireup="true" CodeBehind="Index.aspx.cs" Inherits="NonStockSystem.Views.Home.Admin" %>
<%@ Import Namespace="NonStockSystem.Models" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<%
foreach (Product p in (IEnumerable)ViewData.Model)
{ %>
<%=p.Name.ToString() %> (<a href="/Admin/Edit/<%=p.ID.ToString() %>">Edit</a> - <a href="/Admin/Delete/<%=p.ID.ToString() %>">Delete</a>)<br />
<%
} %>
</asp:Content>
</code></pre>
<p>This is fine at the moment as there are only 10 or 15 products in the system whilst I develop and test it however once I deploy it there will be approx. 300 products in the database. I'm fine with displaying them all on one page however I'd like to use (a href="#category") links much like Wikipedia does so at the top of the page I can have the list of categories and when you click one it brings you to the appropriate section of the page. So, my view in that case will look like so:</p>
<pre><code><%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" AutoEventWireup="true" CodeBehind="Index.aspx.cs" Inherits="NonStockSystem.Views.Home.Admin" %>
<%@ Import Namespace="NonStockSystem.Models" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<ul>
<%
foreach (Category c in (IEnumerable)ViewData.Model)
{ %>
<li><a href="#<%=c.Name.ToString() %>"><%=c.Name.ToString() %></a></li>
<%
} %>
</ul>
<hr />
<%
foreach (Category c in (IEnumerable)ViewData.Model)
{ %>
<% // Display the category name above all products from that category %>
<h2><a name="<%=c.Name.ToString() %>"><%=c.Name.ToString() %></a></h2>
<% // Need to limit the following foreach to grab only products in this category
foreach (Product p in (IEnumerable)ViewData.Model)
{ %>
<%=p.Name.ToString() %> (<a href="/Admin/Edit/<%=p.ID.ToString() %>">Edit</a> - <a href="/Admin/Delete/<%=p.ID.ToString() %>">Delete</a>)<br />
<%
} %>
} %>
</asp:Content>
</code></pre>
<p>Firstly, I'm not entirely sure this is the "right" way to do this so I'm definitely open to suggestions of a different way of doing things but if this is the way to go then I need to know how to (1) pass two result sets to the view (Products and Categories) and (2) loop through a subset of the Products in each foreach loop grabbing only the ones in the appropriate category?</p>
<p>Cheers!</p>
http://stackoverflow.com/questions/491563/implementing-filters-for-a-sql-table-display-on-a-view-in-asp-net-mvc-c-and-li0Implementing filters for a SQL table display on a view in ASP.NET MVC (C#) and LINQ-to-SQL?Rob Burke2009-01-29T13:24:24Z2009-01-29T15:00:16Z
<p>A follow-up from <a href="http://stackoverflow.com/questions/488061/passing-multiple-parameters-to-controller-in-asp-net-mvc-also-generating-on-the/488127#488127">this question</a>, I've changed my controller and routing around so that now the sort value is assigned by ?sort= however I also want to implement the ability for users to filter the table based on a select set of values:</p>
<p>Technician : Tech1, Tech2, Tech3, etc.
Category : Category1, Category2, Category3, etc.
Priority : Priority1, Priority2, Priority3, etc.</p>
<p>I am only using one table at the moment, so the easiest way to get the list of available categories to filter on is to select distinct values of category from the table. They are all input via HTML s so I have control over what gets put in. I don't want to split them all into different tables just yet, I'm trying to do as much as I can with one table for now but if this is the scenario that breaks the one-table-model then fine, I can adjust.</p>
<p>To clarify the use case it is probably best to show a quick screenshot of the view in question:</p>
<p><a href="http://images.robburke.ie/stackoverflow/491563.png" rel="nofollow"><img src="http://images.robburke.ie/stackoverflow/491563.png" width="600"><br />
Click to view full-size.</a></p>
<p>I want to implement a system whereby a user could for example filter "Priority" to only show issues where priority was "Investigative.</p>
<p>I'm looking for suggestions on how to implement this on both the front and back end. I've tried to find a site that does something similar with tables of data but I can't think of one of the top of my head although I'm sure this is a feature that has been implemented a hundred times before!</p>
<p>Can anyone recommend a good way to do this?</p>
http://stackoverflow.com/questions/466752/passing-arguments-to-views-in-asp-net-mvc0Passing arguments to views in ASP.NET MVC?Rob Burke2009-01-21T20:06:48Z2009-01-24T04:43:44Z
<p>Hi,</p>
<p>I've been experimenting with ASP.NET MVC and following <a href="http://www.asp.net/learn/mvc/tutorial-01-cs.aspx" rel="nofollow">this</a> tutorial to create the basic task list application. I've gotten it running fine, everything is working although the video is in VB and I had some trouble getting it "converted" to C# but muddled through thanks to the codesample.</p>
<p>Now, to further my knowledge I've decided to make a small modification to the system. I want to change the Index page so as to display "My Tasks" in red if all tasks are complete, and "My Tasks" in green if there are <em>any</em> incomplete tasks.</p>
<p>I've added the following function to HomeController.cs:</p>
<pre><code> public bool Uncomplete()
{
bool AnyLeft = false;
var tasks = from t in db.Tasks orderby t.EntryDate descending select t;
foreach (Task match in tasks)
{
if (match.IsCompleted == false)
{
AnyLeft = true;
}
}
return AnyLeft;
}
</code></pre>
<p>I then modified the Index() ActionResult to look like this:</p>
<pre><code> public ActionResult Index()
{
bool AnyLeft = Uncomplete();
var tasks = from t in db.Tasks orderby t.EntryDate descending select t;
return View(tasks.ToList());
}
</code></pre>
<p>With my final intent to use the following code in Index.aspx:</p>
<pre><code><% if (AnyLeft == false)
{ %>
<h1 class="green">My Tasks</h1>
<% }
else
{ %>
<h1 class="red">My Tasks</h1>
<% } %>
</code></pre>
<p>However, I can't figure out how to make Index.aspx "aware" of AnyLeft having a value of true or false. I tried</p>
<pre><code>return View(tasks.ToList(), AnyLeft);
</code></pre>
<p>But that throws errors that I can't quite decipher. I have a feeling I'm going about things "the wrong way" but I can't figure it out.</p>
<p>Cheers,
Rob</p>
http://stackoverflow.com/questions/323816/have-i-completed-this-c-pointers-lists-assignment-stackoverflow-code-review0Have I completed this C++ pointers / lists assignment? [StackOverflow Code Review? :)]Rob Burke2008-11-27T13:50:40Z2008-12-18T10:09:34Z
<p>A friend of mine is studying Engineering in college. I've never studied / used C++ as I've always stuck to .NET and web based programming. When I heard her Intro. to Programming course was going to teach them the basics of C++ I decided to get her to send me notes / assignments each week so I would have some definite material to work from for learning. I know there's a hundred thousand tutorials out there but I digress.</p>
<p>Anyway, a few weeks ago there was the following assignment:</p>
<blockquote>
<p>Write a class ListNode which has the following properties:</p>
<ul>
<li>int value;</li>
<li>ListNode *next; </li>
</ul>
<p>Provide the following functions:</p>
<ul>
<li>ListNode(int v, ListNode *l) </li>
<li>int getValue(); </li>
<li>ListNode* getNext(); </li>
<li>void insert(int i); </li>
<li>bool listcontains(int j); </li>
</ul>
<p>Write a program which asks the user to enter some integers and stores them as
ListNodes, and then asks for a number which it should seek in the list.</p>
</blockquote>
<p>Here is my code:</p>
<pre><code>#include <iostream>
using namespace std;
class ListNode
{
private:
struct Node
{
int value;
Node *next;
} *lnFirst;
public:
ListNode();
int Length();
void DisplayList();
void Insert( int num );
bool Contains( int num );
int GetValue( int num );
};
ListNode::ListNode()
{
lnFirst = NULL;
}
int ListNode::Length()
{
Node *lnTemp;
int intCount = 0;
for( lnTemp=lnFirst ; lnTemp != NULL ; lnTemp = lnTemp->next )
{
intCount++;
}
return intCount;
}
void ListNode::DisplayList()
{
Node *lnTemp;
for( lnTemp = lnFirst ; lnTemp != NULL ; lnTemp = lnTemp->next )
cout<<endl<<lnTemp->value;
}
void ListNode::Insert(int num)
{
Node *lnCurrent, *lnNew;
if( lnFirst == NULL )
{
lnFirst = new Node;
lnFirst->value = num;
lnFirst->next = NULL;
}
else
{
lnCurrent = lnFirst;
while( lnCurrent->next != NULL )
lnCurrent = lnCurrent->next;
lnNew = new Node;
lnNew->value = num;
lnNew->next = NULL;
lnCurrent->next = lnNew;
}
}
bool ListNode::Contains(int num)
{
bool boolDoesContain = false;
Node *lnTemp,*lnCurrent;
lnCurrent = lnFirst;
lnTemp = lnCurrent;
while( lnCurrent!=NULL )
{
if( lnCurrent->value == num )
{
boolDoesContain = true;
return boolDoesContain;
}
lnTemp = lnCurrent;
lnCurrent = lnCurrent->next;
}
return boolDoesContain;
}
int ListNode::GetValue(int num)
{
Node *lnTemp;
int intCount = 1;
for( lnTemp=lnFirst; lnTemp != NULL; lnTemp = lnTemp->next )
{
if (intCount == num)
{
return lnTemp->value;
}
intCount++;
}
}
int main()
{
cout << "Input integers below. Input the integer -1 to stop inputting.\n\n";
ListNode lnList;
int intNode = 1, intInput = 0;
while (intInput != -1) {
cout << "Please input integer number " << intNode << ": "; cin >> intInput;
intNode++;
if (intInput != -1) { lnList.Insert(intInput); }
}
lnList.DisplayList();
cout << "\n\n";
int intListLength = lnList.Length();
cout << "Which value do you wish to recall? (Between 1 and " << intListLength << "): "; cin >> intNode;
if ( intNode >= 1 && intNode <= intListLength ) {
cout << "Value at position " << intNode << " is " << lnList.GetValue(intNode) << ".";
} else {
cout << "No such position in the list. Positions run from 1 to " << intListLength << ". You asked for " << intNode << ".";
}
cout << "\n\nCheck if the following value is in the list: "; cin >> intNode;
bool IsThere = lnList.Contains(intNode);
if (IsThere) {
cout << intNode << " is in the list.";
} else {
cout << intNode << " is not in the list.";
}
cout << "\n\n";
system("pause");
return 0;
}
</code></pre>
<p>I'm not going to be submitting this or anything, and I think it works fine and covers all the requirements of the assignment but I was just wondering what you guys thought and if you had any suggestions on how to improve it?</p>
<p>Cheers,
Rob</p>
http://stackoverflow.com/questions/376514/are-there-any-blank-wordpress-designs/376603#3766030Answer by Rob Burke for Are There Any "Blank" Wordpress Designs?Rob Burke2008-12-18T01:11:45Z2008-12-18T01:11:45Z<p><strong><a href="http://www.wpdesigner.com/2007/02/19/so-you-want-to-create-wordpress-themes-huh/" rel="nofollow">This</a> site is an excellent Wordpress theme tutorial.</strong> It guides you right through from scratch about how to build a theme, which parts go where, which files generate what parts of the page, etc. It's really in depth and a fantastic resource that doesn't seem to be well known enough!!</p>
http://stackoverflow.com/questions/350005/algorithm-for-best-suiting-peoples-choices-from-a-definite-list-of-items-where-t5Algorithm for best suiting people's choices from a definite list of items where there is only one of each available?Rob Burke2008-12-08T16:11:13Z2008-12-08T19:34:34Z
<p>Ladies and Gents,</p>
<p>My best friends and I do a "Secret Santa" type gift exchange every year, this year I've been trying to think of a couple of ways to make it interesting. There are six of us involved and I want to design a small program that allows the six of us to rank their preferred gift-recipients from 1 to 5 as well as their preferred gift-givers.</p>
<p>So, let's say we're called A, B, C, D, E and F.</p>
<p>A submits two lists:</p>
<blockquote>
<p>List 1 - People I would most like to give a present to: B, D, C, F, E</p>
<p>List 2 - People I would most like to recieve a present from: F, D, E, B, C</p>
</blockquote>
<p>All six of us will submit both these lists, so I'll have 12 lists all together. I suppose my question is what is the best algorithm to now go ahead and assign each person a gift recipient?</p>
<p>I thought of something like this:</p>
<p>If two people have both selected each other in their opposing lists (i.e. A most wants to give to B, B most wants to get from A) then I immediately assign A to B. So now A is removed from our list of gift-recipients and B is removed from our pool of gift-givers.</p>
<p>Once I've assigned the "perfect matches" I'm kind of lost though, is there an establish algorithm for situations like this? Obviously it's only for entertainment value but surely there must be a "real" application of something similar? Perhaps timetabling or something?</p>
<p>My Google-fu has failed me but I have a feeling it might just be due my own lack of precision in search terms.</p>
<p>Cheers,
(and Happy Holidays I guess),
Rob</p>
<p><hr /></p>
<h2>Update / Part 2</h2>
<p>Okay, <a href="http://stackoverflow.com/users/30202/ying-xiao">Ying Xiao</a> came to the rescue by recommending the <a href="http://en.wikipedia.org/wiki/Stable_marriage_problem" rel="nofollow">Gale Shapley Algorithm</a> for the <a href="http://en.wikipedia.org/wiki/Stable_marriage_problem" rel="nofollow">Stable Marriage Problem</a> and I've implemented that in Python and it works a treat. However, this is just a thought that occurred to me. I guess within our group of six best friends there are three pairings of "extra-best" friends so I have a feeling we'll just end up with three pairs of AB, CD, EF and BA, DC, FE in terms of gift giving and recieving.</p>
<p>Is there an algorithm we could design that did take peoples rankings into account but also restricted two people forming a "closed group"? That is, if A is assigned to buy a gift for B, B <strong>can not</strong> be assigned to buy a gift for A? Perhaps I need to solve the <a href="http://en.wikipedia.org/wiki/Stable_roommates_problem" rel="nofollow">Stable roommates problem</a>?</p>
<p>Related questions:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/273567/secret-santa-algorithm">Secret santa algorithm.</a></li>
<li><a href="http://stackoverflow.com/questions/268682/what-is-the-best-low-tech-protocol-to-simulate-drawing-names-out-of-a-hat-and-e">What is the best low-tech protocol to simulate drawing names out of a hat and ensure secrecy?</a></li>
</ul>
http://stackoverflow.com/questions/339202/php-include-file-strategy-needed/339219#339219-1Answer by Rob Burke for PHP include file strategy neededRob Burke2008-12-04T00:17:34Z2008-12-04T00:17:34Z<p>Why not require it based on it's full path?</p>
<p>For example, /sharedhost/yourdomain.com/apache/www is your document root, so why not use </p>
<pre><code>require('/sharedhost/yourdomain.com/apache/www/dbutils.php');
</code></pre>
<p>This also has the advantage of you being able to store your includes <strong>outside</strong> of your wwwroot so they are far less likely to be inadvertenly exposed via the web.</p>
<p>You could also set up a global variable equal to the /sharedhost/yourdomain.com/apache/ part of it so you can move the site around.</p>
<pre><code>require(WWWROOT . '/dbutils.php');
</code></pre>
http://stackoverflow.com/questions/323816/have-i-completed-this-c-pointers-lists-assignment-stackoverflow-code-review/323975#3239750Answer by Rob Burke for Have I completed this C++ pointers / lists assignment? [StackOverflow Code Review? :)]Rob Burke2008-11-27T14:57:40Z2008-11-27T14:57:40Z<p>@everyone, cheers for the answers guys. Obvious that I need to rethink my understanding of this question. Assuming I implement litb's ListNode class how do I go about instantiating a new node?</p>
http://stackoverflow.com/questions/306316/determine-if-two-rectangles-overlap-each-other/306403#3064030Answer by Rob Burke for Determine if two rectangles overlap each other?Rob Burke2008-11-20T18:42:44Z2008-11-20T18:42:44Z<p>@Charles Bretana:</p>
<p>Assuming our rectangle is shaped like so:</p>
<pre><code>d---------c
| |
| |
a---------b
</code></pre>
<p>RectA.X1 is the X value at point a?
RectA.X2 is the X value at point b?</p>
<p>Similar for RectB. Or am I mistaken?</p>
http://stackoverflow.com/questions/261904/matching-domains-with-regex-for-lighttpd-modevhost-www-domain-com-domain-com1Matching domains with regex for lighttpd mod_evhost (www.domain.com / domain.com / sub.domain.com)Rob Burke2008-11-04T13:32:05Z2008-11-06T03:08:25Z
<p>Hi,</p>
<p>I'm playing about with <a href="http://en.wikipedia.org/wiki/Lighttpd" rel="nofollow">lighttpd</a> on a small virtual private server. I two domains pointing to the server. I am using the latest version of lighttpd and mod_evhost on Ubuntu 8.10.</p>
<ol>
<li><p>I'm trying to set up a rule such that if anyone requests <strong>domain.com</strong> or <strong>www.domain.com</strong> they get served from <em>/webroot/domain.com/www/</em></p></li>
<li><p>Similarly, if anyone requests <strong>sub.domain.com</strong> they get served from <em>/webroot/domain.com/sub/</em></p></li>
<li><p>If people requests <strong>fake.domain.com</strong> (where <em>/webroot/domain.com/fake/</em> does not exist) I would like them served from <em>/webroot/domain.com/www/</em></p></li>
</ol>
<p>The third requirement isn't quite so important, I can deal with people requesting subdomains that don't exist being served from the server document root of <em>/webroot/server.com/www/</em> even if they requested <strong>fake.domain.com</strong></p>
<p>I've included the relevant parts of my lighttpd.conf file below:</p>
<pre><code>server.document-root = "/webroot/server.com/www/"
// regex to match sub.domain.com
$HTTP["host"] =~ "\b[a-zA-Z]\w*\.\b[a-zA-Z]\w*\.\b[a-zA-Z]\w*" {
evhost.path-pattern = "/webroot/%0/%3/"
}
// regex to match domain.com
$HTTP["host"] =~ "\b[a-zA-Z]\w*\.\b[a-zA-Z]\w*" {
evhost.path-pattern = "/webroot/%0/www/"
}
</code></pre>
<p>So where am I going wrong? At the moment, all requests to <strong>*.domain.com</strong> and <strong>domain.com</strong> are being served from <em>/webroot/domain.com/www/</em></p>
<p>I'd appreciate any help you guys could offer and if I've left anything relevant out please tell me!</p>
<p>Cheers,
Rob</p>
http://stackoverflow.com/questions/261904/matching-domains-with-regex-for-lighttpd-modevhost-www-domain-com-domain-com/261968#2619680Answer by Rob Burke for Matching domains with regex for lighttpd mod_evhost (www.domain.com / domain.com / sub.domain.com)Rob Burke2008-11-04T13:56:24Z2008-11-04T13:56:24Z<p>@Anders, cheers for your input mate. You're right in that I will need to handle the fake subdomains outside of the mod_evhost environment.</p>
<p>@Tomalak, that worked perfectly for matching <strong>www.domain.com</strong> and <strong>domain.com</strong> to serve from <em>/webroot/domain.com/www</em> and it works for all subdomains that actually exists too (points <strong>sub.domain.com</strong> to <em>/webroot/domain.com/sub/</em>)</p>
<p>I'm getting 404 errors when I try to go to <em>fake.domain.com</em> but I can write a custom error page that reroutes *.domain.com 404 errors to www.domain.com</p>
<p>Thanks a million guys!</p>
http://stackoverflow.com/questions/2432/have-you-ever-encountered-a-query-that-sql-server-could-not-execute-because-it-re/2470#24700Answer by Rob Burke for Have you ever encountered a query that SQL Server could not execute because it referenced too many tables?Rob Burke2008-08-05T15:30:01Z2008-08-05T15:30:01Z<p>I agree with modesty, posting the query [sanitized] could help in us suggesting improvements to your specific case rather than a general" fix the DB".</p>http://stackoverflow.com/questions/2432/have-you-ever-encountered-a-query-that-sql-server-could-not-execute-because-it-re/2458#24580Answer by Rob Burke for Have you ever encountered a query that SQL Server could not execute because it referenced too many tables?Rob Burke2008-08-05T15:15:50Z2008-08-05T15:15:50Z<p>@chopeen: Man, I work for a large videogames retailer's European headquarters in Dublin. We have hundreds of thousands of SKUs and I don't think we even have 256 tables in our database! Well, we do... but we sure as hell could never need to reference them all at once. What software is used to manage all of this?</p>http://stackoverflow.com/questions/361/generate-list-of-all-possible-permutations-of-a-string/399#3991Answer by Rob Burke for Generate list of all possible permutations of a stringRob Burke2008-08-02T10:30:29Z2008-08-02T10:30:29Z<p>Why generate another dictionary when there are so many freely available? Not a sarcastic or condescending question, but a genuine enquiry as to why you needed a custom one?</p>http://stackoverflow.com/questions/395/how-do-you-migrate-a-large-app-from-vb6-to-vb-net/398#3983Answer by Rob Burke for How do you migrate a large app from VB6 to VB .net ?Rob Burke2008-08-02T10:27:27Z2008-08-02T10:27:27Z<p>Okay... large app... but are we talking a whole boatload of WinForms and some ADO code for DB access or does it include a heap of ASP web pages as well as some custom commercial controls you bought 7 years ago? What's the installed base? Support from Microsoft is gone, and although that sounds dramatic, how many times did <em>Microsoft themselves</em> provide you with support in the last 24 months?</p>http://stackoverflow.com/questions/72/how-do-i-add-existing-comments-to-rdoc-in-ruby/397#3970Answer by Rob Burke for How do I add existing comments to RDoc in Ruby?Rob Burke2008-08-02T10:22:41Z2008-08-02T10:22:41Z<p>RDoc uses SimpleMarkup so it's fairly simple to create lists, etc. using *, - or a number. It also treats lines that are indented at the same column number as part of the same paragraph until there is an empty line which signifies a new paragraph. Do you have a few examples of comments you want RDoc'ed so we could show you how to do them and then you could extrapolate that for the rest of your comments?</p>http://stackoverflow.com/questions/525701/passing-multiple-result-sets-to-a-view-from-a-controller-in-asp-net-mvc/525736#525736Comment by Rob Burke on Passing multiple result sets to a view from a controller in ASP.NET MVC?Rob Burke2009-02-08T14:10:44Z2009-02-08T14:10:44ZCheers for the response Tim; I've implemented it and now I'm having problems doing the Products foreach loop inside the Categories foreach - how can I loop through products in the specific category using IEnumerable?http://stackoverflow.com/questions/498698/white-light-vs-black-dark-backgrounds-health-effects/498726#498726Comment by Rob Burke on White (Light) vs. Black (Dark) Backgrounds: Health EffectsRob Burke2009-01-31T14:34:59Z2009-01-31T14:34:59ZI find Maddox's views on most subjects compelling.http://stackoverflow.com/questions/491563/implementing-filters-for-a-sql-table-display-on-a-view-in-asp-net-mvc-c-and-li/491582#491582Comment by Rob Burke on Implementing filters for a SQL table display on a view in ASP.NET MVC (C#) and LINQ-to-SQL?Rob Burke2009-01-29T13:45:18Z2009-01-29T13:45:18ZI changed the initial question to include the use case information. Cheers!http://stackoverflow.com/questions/466752/passing-arguments-to-views-in-asp-net-mvc/466774#466774Comment by Rob Burke on Passing arguments to views in ASP.NET MVC?Rob Burke2009-01-21T20:17:13Z2009-01-21T20:17:13ZThanks for the input man! -Robhttp://stackoverflow.com/questions/466752/passing-arguments-to-views-in-asp-net-mvc/466776#466776Comment by Rob Burke on Passing arguments to views in ASP.NET MVC?Rob Burke2009-01-21T20:16:37Z2009-01-21T20:16:37ZAwesome man, worked perfectly! Cheers -Robhttp://stackoverflow.com/questions/350005/algorithm-for-best-suiting-peoples-choices-from-a-definite-list-of-items-where-tComment by Rob Burke on Algorithm for best suiting people's choices from a definite list of items where there is only one of each available?Rob Burke2008-12-08T16:41:02Z2008-12-08T16:41:02ZLisa, chances are we'll do exactly that. Although traditionally we've all put our phones into a bag and pulled them out, noted whose phone we got and then returned them. We've been doing it for years though so wanted some way to spice things up!http://stackoverflow.com/questions/339202/php-include-file-strategy-needed/339219#339219Comment by Rob Burke on PHP include file strategy neededRob Burke2008-12-04T09:22:52Z2008-12-04T09:22:52Z@Clyde, surely it can be set in a config file as and when you deploy it on each machine?
@staticsan, again, something that is remedied by defining WWWROOT just once during the deployment / install phase?http://stackoverflow.com/questions/323816/have-i-completed-this-c-pointers-lists-assignment-stackoverflow-code-review/323848#323848Comment by Rob Burke on Have I completed this C++ pointers / lists assignment? [StackOverflow Code Review? :)]Rob Burke2008-11-27T14:55:46Z2008-11-27T14:55:46Z@litb, I think I'm understanding you now. But how do I instantiate a node using this class? I can't get my head around it.