User Dana Robinson - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T07:25:54Zhttp://stackoverflow.com/feeds/user/3161http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/314736/asp-net-gridview-second-header-row-to-span-main-header-row6ASP.NET GridView second header row to span main header rowDana Robinson2008-11-24T16:46:10Z2009-11-19T01:24:50Z
<p>I have an ASP.NET GridView which has columns that look like this:</p>
<pre><code>| Foo | Bar | Total1 | Total2 | Total3 |
</code></pre>
<p>Is it possible to create a header on two rows that looks like this?</p>
<pre><code>| | Totals |
| Foo | Bar | 1 | 2 | 3 |
</code></pre>
<p>The data in each row will remain unchanged as this is just to pretty up the header and decrease the horizontal space that the grid takes up. </p>
<p>The entire GridView is sortable in case that matters. I don't intend for the added "Totals" spanning column to have any sort functionality.</p>
<p><strong>Edit:</strong></p>
<p>Based on one of the articles given below, I created a class which inherits from GridView and adds the second header row in.</p>
<pre><code>namespace CustomControls
{
public class TwoHeadedGridView : GridView
{
protected Table InnerTable
{
get
{
if (this.HasControls())
{
return (Table)this.Controls[0];
}
return null;
}
}
protected override void OnDataBound(EventArgs e)
{
base.OnDataBound(e);
this.CreateSecondHeader();
}
private void CreateSecondHeader()
{
GridViewRow row = new GridViewRow(0, -1, DataControlRowType.Header, DataControlRowState.Normal);
TableCell left = new TableHeaderCell();
left.ColumnSpan = 3;
row.Cells.Add(left);
TableCell totals = new TableHeaderCell();
totals.ColumnSpan = this.Columns.Count - 3;
totals.Text = "Totals";
row.Cells.Add(totals);
this.InnerTable.Rows.AddAt(0, row);
}
}
}
</code></pre>
<p>In case you are new to ASP.NET like I am, I should also point out that you need to:</p>
<p>1) Register your class by adding a line like this to your web form:</p>
<pre><code><%@ Register TagPrefix="foo" NameSpace="CustomControls" Assembly="__code"%>
</code></pre>
<p>2) Change asp:GridView in your previous markup to foo:TwoHeadedGridView. Don't forget the closing tag.</p>
<p><strong>Another edit:</strong></p>
<p>You can also do this without creating a custom class.</p>
<p>Simply add an event handler for the DataBound event of your grid like this:</p>
<pre><code>protected void gvOrganisms_DataBound(object sender, EventArgs e)
{
GridView grid = sender as GridView;
if (grid != null)
{
GridViewRow row = new GridViewRow(0, -1,
DataControlRowType.Header, DataControlRowState.Normal);
TableCell left = new TableHeaderCell();
left.ColumnSpan = 3;
row.Cells.Add(left);
TableCell totals = new TableHeaderCell();
totals.ColumnSpan = grid.Columns.Count - 3;
totals.Text = "Totals";
row.Cells.Add(totals);
Table t = grid.Controls[0] as Table;
if (t != null)
{
t.Rows.AddAt(0, row);
}
}
}
</code></pre>
<p>The advantage of the custom control is that you can see the extra header row on the design view of your web form. The event handler method is a bit simpler, though.</p>
http://stackoverflow.com/questions/1725143/how-do-databases-deal-with-data-tables-that-cannot-fit-in-memory3How do databases deal with data tables that cannot fit in memory?Dana Robinson2009-11-12T20:28:57Z2009-11-12T21:33:48Z
<p>Suppose you have a really large table, say a few billion unordered rows, and now you want to index it for fast lookups. Or maybe you are going to bulk load it and order it on the disk with a clustered index. Obviously, when you get to a quantity of data this size you have to stop assuming that you can do things like sorting in memory (well, not without going to virtual memory and taking a massive performance hit).</p>
<p>Can anyone give me some clues about how databases handle large quantities of data like this under the hood? I'm guessing there are algorithms that use some form of smart disk caching to handle all the data but I don't know where to start. References would be especially welcome. Maybe an advanced databases textbook?</p>
http://stackoverflow.com/questions/1219693/can-a-c-dll-compiled-using-visual-studio-2008-be-used-with-visual-studio-20050Can a C++ dll compiled using Visual Studio 2008 be used with Visual Studio 2005?Dana Robinson2009-08-02T19:59:54Z2009-10-26T16:17:01Z
<p>I'm going to be working with a C++ library written in plain C++ (not .NET and without MFC). The library is available compiled using both Visual Studio 2005 / Intel Fortran 9.1 and VS 2008 / Intel Fortran 10.1.</p>
<p>Obviously I'm going to grab the binaries for VS 2008 since that's the environment on my computer but I'm curious if there are reasons why a straight C++ library wouldn't be compatible between VS 2005 and 2008. I'd assume that the name-mangling would be the same but maybe there are other reasons. I haven't used C++ in a long time so I'm a little rusty when it comes to these things.</p>
http://stackoverflow.com/questions/1545213/what-is-a-good-way-to-build-a-lot-of-small-tools-in-visual-studio1What is a good way to build a lot of small tools in Visual Studio?Dana Robinson2009-10-09T17:57:00Z2009-10-09T22:15:18Z
<p>Suppose you have some source code that comes from the unix world. This source consists of a few files which will create a library and a lot of small .c files (say 20 or so) that are compiled into command-line tools, each with their own <code>main()</code> function, that will use the library.</p>
<p>On unixy systems you can use a makefile to do this easily but the most naive transformation to the windows / Visual Studio world involves making a separate project for each tool which, although it works, is a lot of work to set up and synchronize and more difficult to navigate at both the filesystem and project/solution level. I've thought about using different configurations where all but one .c file are excluded from the build but that would make building all the tools at once impossible.</p>
<p>Is there a nice way of building all the tools from a single "thing" (project, msbuild file, etc.)?</p>
<p>I'm really not interested in using cygwin's gcc/mingw or NAnt. I'd like to stick with the standard Windows toolchain as much as possible.</p>
http://stackoverflow.com/questions/309035/asp-net-gridview-css-issue-when-sorting-turned-on3ASP.NET GridView CSS issue when sorting turned onDana Robinson2008-11-21T15:03:16Z2009-09-30T21:57:13Z
<p>I created a GridView in an ASP.NET application and used the Auto Format tool to apply an attractive style. Now I'm moving the style markup to the CSS sheet and I'm having a weird problem where the text in the header row isn't the correct color (it should be white but it shows up a bright blue). <strong>This problem only shows up when I turn sorting on.</strong> </p>
<p>Everything else works fine. For example, I can change the header background to red and it turns red and the rest of the grid styles are applied appropriately.</p>
<p>Anybody have any clues about what the deal is? I've included code snippets below. I'm also fairly new to CSS. If anyone has any tips to make my CSS markup better in some way, let me know.</p>
<p>Thanks!</p>
<p>Here is the ASP.NET code. I can add ForeColor="White" to the HeaderStyle and everything works normally.</p>
<pre><code><asp:GridView ID="GridView1" runat="server" CssClass="grid"
AutoGenerateColumns="False" DataKeyNames="ID" DataSourceID="SqlDataSource1"
EmptyDataText="There are no data records to display." AllowSorting="True"
CellPadding="4" GridLines="Both">
<FooterStyle CssClass="grid-footer" />
<RowStyle CssClass="grid-row" />
<Columns>
<asp:BoundField DataField="Kingdom" HeaderText="Kingdom"
SortExpression="Kingdom" />
<asp:BoundField DataField="Phylum" HeaderText="Phylum"
SortExpression="Phylum" />
<asp:BoundField DataField="GenusSpeciesStrain" HeaderText="Genus species (strain)"
SortExpression="GenusSpeciesStrain" />
<asp:BoundField DataField="Family" HeaderText="Family"
SortExpression="Family" />
<asp:BoundField DataField="Subfamily" HeaderText="Subfamily"
SortExpression="Subfamily" />
<asp:BoundField DataField="ElectronInput" HeaderText="Electron Input"
SortExpression="ElectronInput" />
<asp:BoundField DataField="OperonLayout" HeaderText="Operon Layout"
SortExpression="OperonLayout" />
</Columns>
<PagerStyle CssClass="grid-pager" />
<SelectedRowStyle CssClass="grid-selected-row" />
<HeaderStyle CssClass="grid-header" />
<EditRowStyle CssClass="grid-row-edit" />
<AlternatingRowStyle CssClass="grid-row-alternating" />
</code></pre>
<p></p>
<p>And this is the content from style sheet I'm using:</p>
<pre><code>body {
}
.grid
{
color: #333333;
}
.grid-row
{
background-color: #EFF3FB;
}
.grid-row-alternating
{
background-color: White;
}
.grid-selected-row
{
color: #333333;
background-color: #D1DDF1;
font-weight: bold;
}
.grid-header, .grid-footer
{
color: White;
background-color: #507CD1;
font-weight: bold;
}
.grid-pager
{
color: White;
background-color: #2461BF;
text-align: center;
}
.grid-row-edit
{
background-color: #2461BF;
}
</code></pre>
http://stackoverflow.com/questions/832353/vs2008-insists-on-defaulting-to-itanium-for-active-solution-platform-in-c/1479844#14798441Answer by Dana Robinson for VS2008 insists on defaulting to "Itanium" for Active Solution Platform in C++Dana Robinson2009-09-25T22:32:30Z2009-09-28T17:16:43Z<p>I have looked everywhere to see if I can find an answer to this and I don't think it can be done (which seems odd, really). I've tried reordering the entries in the solution (sln) file but as far as I can tell it works like this:</p>
<p>1) If you have a solution options file (suo) it will use the last selected configuration.</p>
<p>2) If there is no suo file it will use Debug as a default configuration, if the Debug configuration exists.</p>
<p>3) Otherwise it will sort your configurations alphanumerically and use the first one.</p>
<p>So you can probably trick VS into using a different one if you are so inclined. Just rename the debug configuration to something like "Debug All" and prepend your preferred configuration with an underscore or other punctuation mark. e.g. "_Release All"</p>
<p>I only have Win32 set up for platforms so I can't test for those settings but it might work the same way.</p>
http://stackoverflow.com/questions/414591/how-can-i-learn-about-proprietary-hardware-communication7How can I learn about proprietary hardware communication?Dana Robinson2009-01-05T21:30:30Z2009-09-23T15:12:27Z
<p>If I have two pieces of hardware (say a PC with a custom ISA or PCI card connected to a piece of hardware using some crazy cable) and want to see as much as possible about the conversations between them, how would I go about doing so? In particular, I'm interested in old scientific hardware connected to Windows PCs (old and new). Any references would be appreciated.</p>
<p>I'm not interested in thieving anyone's IP. I'm a scientific programmer in academia and we have to deal with orphan hardware all the time. It really sucks to have to throw away perfectly good hardware because the company went out of business and their software runs on Windows 3.1 and uses a proprietary ISA card. It would just be nice to save some of that stuff (some things are expensive or impossible to replace) by writing my own code using a modern data acquisition card and spliced cable.</p>
http://stackoverflow.com/questions/875134/cant-find-peopleware-anywhere/1466619#14666190Answer by Dana Robinson for Can't find Peopleware anywhere?Dana Robinson2009-09-23T15:08:37Z2009-09-23T15:08:37Z<p>I got it used from Barnes and Noble. Shop around if you go the used route as prices can vary widely. I think I got mine for $20 but I often see it for a lot more.</p>
http://stackoverflow.com/questions/1460798/is-there-a-list-of-visual-studio-environment-variables0Is there a list of Visual Studio environment variables?Dana Robinson2009-09-22T15:31:47Z2009-09-22T15:36:50Z
<p>Visual Studio has a lot of environment variables like $(TargetFileName) but I can't seem to find a list of all of them on MSDN or via Google.</p>
<p>Does such a list exist?</p>
http://stackoverflow.com/questions/1447604/is-there-a-best-practices-guide-to-distributing-native-c-libraries-for-windows2Is there a best practices guide to distributing native C libraries for Windows?Dana Robinson2009-09-19T03:01:52Z2009-09-19T05:12:26Z
<p>Does anyone know of a best practices guide for deploying native (no COM, no .NET) ANSI C Windows shared libraries?</p>
<p>Our product uses zlib and we distribute pre-built binaries on our downloads page that differ from those on the official zlib page. I'm guessing that the reason for this is <a href="http://msdn.microsoft.com/en-us/library/ms235460.aspx" rel="nofollow">to avoid mixing C runtimes</a>. The official ones are built against msvcrt using VC++ 6.0 and VS.NET/2005/2008 will use msvcrt71/80/90.</p>
<p>What I want to do is to create VS2005/8 solutions and projects that will properly build the zlib for us and distribute them in place of what we have now. I'd like to do this carefully and distribute a properly useful package that I could also then send off to the curators of zlib for inclusion in their source distribution. Finding reliable information has proven troublesome, though. I have a bunch of books on Win32 programming and I've found a lot of articles on the web but none of this seems to do a thorough job of describing what you <em>really</em> need to distribute.</p>
<p>For example, zlib distributes the .exp, .lib stub and .def files where the fftw distributes the .def files but not the .lib stubs and .exp files. I guess I could just dump everything that looks useful in there (or just mirror what the official zlib currently has) but I'd like to know <em>why</em> it has to be there and in what directories it belongs.</p>
<p>Are there good examples of well-maintained Windows distributions of libraries that originated in the unix world?</p>
<p><a href="http://www.zlib.net/" rel="nofollow">Official zlib binary distributions (scroll down)</a></p>
<p><a href="http://www.hdfgroup.org/ftp/lib-external/zlib/1.2/bin/windows/" rel="nofollow">Our windows distributions</a></p>
<p>TO CLARIFY:</p>
<p>We distribute a library and provide the zlib to (mostly) Windows users since they typically don't have it available. I want our build of the zlib to be useful as a component in general, not just as a .dll that our product consumes. We're open source and widely used so we do want to make our entire build environment available and easily adaptable to any compiler you'd like to use.</p>
http://stackoverflow.com/questions/1364741/does-64-bit-windows-use-kernel642Does 64-bit Windows use KERNEL64?Dana Robinson2009-09-01T21:29:32Z2009-09-01T22:06:01Z
<p>I was looking at some libraries with dumpbin and I noticed that all the 64-bit versions were linked to KERNEL32. Is there no KERNEL64 on 64-bit Windows? If not, why?</p>
<p>All my operating systems are 32-bit so I can't just look. A google search brings up nothing worthwhile so I suspect that there is no KERNEL64 but I'm still curious as to why this is.</p>
<p>EDIT: I found this later which is pretty useful. <a href="http://msdn.microsoft.com/en-us/magazine/cc300794%28printer%29.aspx" rel="nofollow">MSDN guide to x64</a></p>
http://stackoverflow.com/questions/480360/problem-getting-selected-text-when-using-a-sprited-button-and-selection-createran2Problem getting selected text when using a sprited button and selection.createRange() in Internet Explorer.Dana Robinson2009-01-26T16:21:41Z2009-08-24T09:06:37Z
<p>I'm working on implementing sprited buttons in Stackoverflow's beloved WMD markdown editor and I've run into an odd bug. On all versions of IE, the selected text is lost upon button clicks, so, say, highlighting a block of text and clicking the code button acts like you placed the cursor at the end of the selection and clicked the button.</p>
<p>e.g. highlighting this:</p>
<pre><code>This
Is
Code
</code></pre>
<p>and clicking the code button give you:</p>
<pre><code>This
Is
Code`enter code here`
</code></pre>
<p>What's really weird is that I left the original non-sprited button bar in <em>and that works just fine.</em> In fact <strong>ALL</strong> buttons and keyboard shortcuts code use the same <code>doClick(button)</code> function!</p>
<ul>
<li>Old-style non-sprited buttons: OK</li>
<li>Keyboard shortcuts: OK</li>
<li>Sprited buttons in non-IE browsers: OK</li>
<li>Sprited buttons in IE: <strong>WTF</strong></li>
</ul>
<p>I've isolated the problem down to a call to <code>selection.createRange()</code> which finds nothing <strong>only</strong> when the sprited button is clicked. I've tried screwing around with focus()ing and making sure as little as possible happens before the <code>doClick()</code> but no joy. The keyboard shortcuts seem to work because the focus is never lost from the input textarea. Can anyone think of a hack that will let me somehow collect the selected text in IE?</p>
<p>The onclick handler looks like this:</p>
<pre><code>button.onmouseout = function(){
this.style.backgroundPosition = this.XShift + " " + normalYShift;
};
button.onclick = function() {
if (this.onmouseout) {
this.onmouseout();
}
doClick(this);
}
</code></pre>
<p>I've tried moving the <code>onmouseout</code> call to after the <code>doClick</code> in case that was causing a loss of focus but that's not the problem.</p>
<p>EDIT:</p>
<p>The only thing that seems to be different is that, in the original button code, you are clicking on an image. In the sprited code, you are clicking on a list item <code><li></code> with a background image set. Perhaps it's trying to select the non-existent text in my list item?</p>
<p>/EDIT</p>
<p>Actual code is located in my wmd repository on <a href="http://github.com/derobins/wmd/tree/master" rel="nofollow">git</a> in the <code>button-cleanup</code> branch.</p>
<p>If you revert to the 0d6d1b32bb42a6bd1d4ac4e409a19fdfe8f1ffcc commit you can see both button bars. The top one is sprited and exhibits the weird behavior. The bottom one contains the remnants of the original button bar and works fine. The suspect code is in the <code>setInputAreaSelectionStartEnd()</code> function in the <code>TextareaState</code> object.</p>
<p>One last thing I should mention is that, for the time being, I'm trying to keep the control in pure Javascript so I'd like to avoid fixing this with an external library like jQuery if that's possible.</p>
<p>Thanks for your help!</p>
http://stackoverflow.com/questions/1220275/where-can-i-get-information-about-the-c-c-linker-in-visual-studio1Where can I get information about the C/C++ linker in Visual Studio?Dana Robinson2009-08-03T00:28:45Z2009-08-03T00:32:29Z
<p>I'd like to learn more about C/C++ linker issues and troubleshooting in Visual Studio. I've had linker problems crop up from time to time and they are really annoying since you get such limited information from the linker error messages. I've seen a few not-so-detailed MSDN articles but nothing in depth.</p>
<p>Where can I find a good source for linker information? Maybe a book, website or some in-depth blog posts? Are there useful utilities to aid linker troubleshooting out there? Browsing around with dumpbin is somewhat less than satisfying.</p>
http://stackoverflow.com/questions/674628/how-do-i-set-a-program-to-launch-at-startup/674683#6746831Answer by Dana Robinson for How do I set a program to launch at startup.Dana Robinson2009-03-23T18:37:08Z2009-03-23T18:37:08Z<p>If your application does something time consuming or resource intensive at startup like checking for updates on the internet, you might want to consider implementing a timer so that your program runs a bit after startup.</p>
<p>One of my pet peeves is the dozen or so programs on my computer that drag everything to a crawl as they all check for updates at startup (yeah I'm especially looking at you, iTunes and Java).</p>
http://stackoverflow.com/questions/597077/is-learning-vim-worth-the-effort/597155#5971551Answer by Dana Robinson for Is learning VIM worth the effort?Dana Robinson2009-02-28T00:09:16Z2009-02-28T00:09:16Z<p>I learned to like vi after watching someone who was very skilled with it navigate around to make edits at an insanely fast clip. You really can code quickly with it. Another reason I like it is that sometimes I find that mousing around in an IDE really hurts my hands after a while and vi provides a nice change. As others have mentioned it's also almost always available on unix systems and works well even over lousy connections.</p>
<p>One thing that I haven't seen mentioned is that knowing vi has the added benefit of "geek cred" in some circles. I can think of at least a few people who chuckle when they see a new programmer fire up nedit to make some changes to a file.</p>
http://stackoverflow.com/questions/585234/how-to-read-and-write-into-file-using-javascript/585283#5852832Answer by Dana Robinson for how to read and write into file using javascriptDana Robinson2009-02-25T09:17:55Z2009-02-25T09:17:55Z<p>If you are using JScript (Microsoft's Javascript) to do local scripting using WSH (NOT in a browser!) you can use <code>Scripting.FileSystemObject</code> to access the file system.</p>
<p>I think you can access that same object in IE if you turn a lot of security settings off, but that would be a very, very bad idea.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/6kxy1a51%28VS.85%29.aspx" rel="nofollow">MSDN here</a></p>
http://stackoverflow.com/questions/562303/the-definitive-c-book-guide-and-list/579795#5797951Answer by Dana Robinson for The Definitive C Book Guide and ListDana Robinson2009-02-23T23:07:39Z2009-02-23T23:07:39Z<p>I'd like to make an anti-recommendation. Under no circumstances should you read any books by <a href="http://catb.org/~esr/jargon/html/B/bullschildt.html" rel="nofollow">Herbert Schildt</a>. In particular, you should stay away from <a href="http://rads.stackoverflow.com/amzn/click/0072121246" rel="nofollow">C: The Complete Reference</a>.</p>
http://stackoverflow.com/questions/572608/ie-and-its-problem-no-firebug-like-debug-tool/572695#5726953Answer by Dana Robinson for IE and its problem (No Firebug-like Debug tool)Dana Robinson2009-02-21T09:43:24Z2009-02-21T09:43:24Z<p>Internet Explorer 8 has a debugging toolkit that is very similar to Firebug's. Just press F12 to bring it up. Since you can force IE8 to use the IE7 rendering engine you'd be able to debug both of them using it.</p>
http://stackoverflow.com/questions/256592/how-do-you-keep-focus-reduce-interruptions-at-the-workplace/572300#5723001Answer by Dana Robinson for How do you keep focus / reduce interruptions at the workplace?Dana Robinson2009-02-21T05:00:14Z2009-02-21T05:00:14Z<p>I have a friend who has noise-canceling headphones which he wears when he doesn't want to be disturbed. It works pretty well for him.</p>
<p>I find a quiet coffee shop with WiFi access in which to hide. I tuck into a corner and face the wall so I'm not distracted. If there's too much ambient noise I play some environmental sounds from my iPod with the volume down low.</p>
http://stackoverflow.com/questions/555696/put-javascript-in-one-js-file-or-break-it-out-into-multiple-js-files/555755#5557550Answer by Dana Robinson for Put javascript in one .js file or break it out into multiple .js files?Dana Robinson2009-02-17T07:04:13Z2009-02-17T07:04:13Z<p>If you like the code in separate files for development you can always write a quick script to concatenate them into a single file before minification.</p>
<p>One big file is better for reducing HTTP requests as other posters have indicated.</p>
http://stackoverflow.com/questions/554847/what-is-the-best-way-to-learn-c-if-i-have-a-bit-of-other-programming-experience/554872#5548721Answer by Dana Robinson for What is the best way to learn C++ if I have a bit of other programming experience?Dana Robinson2009-02-16T22:41:10Z2009-02-16T22:41:10Z<p>Also be sure to check out <a href="http://rads.stackoverflow.com/amzn/click/1886411956" rel="nofollow">How Not to Program in C++</a></p>
http://stackoverflow.com/questions/543047/how-do-i-directly-read-and-write-database-files-in-vb2008/543220#5432200Answer by Dana Robinson for How do I directly read and write database files in vb2008?Dana Robinson2009-02-12T20:59:30Z2009-02-12T20:59:30Z<p>In general, most database-aware software writes to the database using a software library adapter. Like <a href="http://en.wikipedia.org/wiki/Odbc" rel="nofollow">ODBC</a>.</p>
<p>What you might be looking for is the file format that a bulk loader can understand. Something like <a href="http://www.classes.cs.uchicago.edu/archive/2005/fall/23500-1/mysql-load.html" rel="nofollow">this</a> (MySQL example).</p>
http://stackoverflow.com/questions/541870/is-it-possible-manage-developers-with-high-turnover-if-you-cant-lower-the-turnov/542066#5420663Answer by Dana Robinson for Is it possible manage developers with high turnover if you can't lower the turnover rate?Dana Robinson2009-02-12T16:12:59Z2009-02-12T16:18:13Z<p>Why don't you ask the students what they find difficult and make cheat sheets, lectures, etc. for the parts of the job that they have trouble with? Maybe you need to create some introductory Perl lectures or purchase some dead trees. How about a Safari subscription at O'Reilly? I'd ask the students how they prefer to learn, though, before embarking on a training project. Everyone has different learning styles.</p>
<p>I'd also spend some time and capital creating a culture of professional software development at work. It'll be tough since academic programmers are often neophytes and used to kludging up solutions (I'm an academic programmer, btw) but the students will thank you in the long run. Maybe you can all go out to lunch once a week to discuss programming and other topics. You might also want to take some time to do code reviews so people can learn from each other.</p>
<p>With high turnover you definitely need to ensure that knowledge transfer occurs. Make sure you are using source code control and that your students understand proper commenting. I'd also make the students create brief documentation for posterity. If they are getting credit, make them turn in a writeup of their progress once a semester. You can put this in a directory in the project's repository for anyone who inherits it. As mentioned in other posts, a group wiki can really help with knowledge transfer. We use Mediawiki in our group and like it a lot.</p>
<p>One last thing I should add is that I find it helps to keep a list of projects for new developers that relatively easy and can be completed in a month or so. They are a great way for new people to get acclimated to your development environment.</p>
http://stackoverflow.com/questions/510278/is-there-a-way-to-test-a-web-site-on-the-iphone-without-an-iphone2Is there a way to test a web site on the iPhone without an iPhone?Dana Robinson2009-02-04T06:29:09Z2009-02-07T05:57:49Z
<p>I want to test a website to see how it works with the iPhone but I don't own an iPhone or an iPod touch. Is there a way I can test how the site works on them without owning one?</p>
<p>What I'm really after is fixing how Stackoverflow's WMD markdown editor works on the iPhone. I hear that the hyperlink and image prompts are created too high. I think I know how to fix that but it's pretty tough to develop blind.</p>
http://stackoverflow.com/questions/518985/why-is-movie-jumpy-when-i-play-simultaneously-in-2-cocoa-views/519153#5191530Answer by Dana Robinson for Why is movie jumpy when I play simultaneously in 2 Cocoa views?Dana Robinson2009-02-06T04:54:06Z2009-02-06T04:54:06Z<p>You are probably overtaxing a resource - CPU and/or disk I/O are your most likely culprits.</p>
<p>If you open two Quicktime windows can you play the movies at the same time without stuttering? Is your CPU maxed out (especially on a single-core machine)? Can you stream from a second source and fix the stuttering? You might try playing one of the movies off a USB hard drive or flash drive if you don't have two hard drives.</p>
<p>I'm not a quicktime or Objective-C programmer, but I'd start by looking at mirroring the content instead of opening two movie instances. Maybe you can capture a section of the screen, shrink the contents and dump it to a smaller preview window.</p>
http://stackoverflow.com/questions/315091/interleave-row-column-colors-in-a-gridview3Interleave row/column colors in a GridViewDana Robinson2008-11-24T19:05:28Z2009-01-28T23:23:50Z
<p>Suppose you have a GridView with a few columns like:</p>
<p>| Foo | Bar | Total |</p>
<p>and you use a style sheet to make the alternating rows different colors, say light blue and white.</p>
<p>Is there a good way to make a particular column alternate in a different color? For example, I might want the Total column to alternate in medium and light red to bring attention to it in a large grid.</p>
<p>BTW, I know you can programmatically change the color of a cell. I'd like to stick to CSS if it all possible, however, so all my style stuff is in one place. I also don't see an easy way to tell if I'm in an alternating row when I'm inside the event handler.</p>
http://stackoverflow.com/questions/480360/problem-getting-selected-text-when-using-a-sprited-button-and-selection-createran/480765#4807654Answer by Dana Robinson for Problem getting selected text when using a sprited button and selection.createRange() in Internet Explorer.Dana Robinson2009-01-26T18:07:59Z2009-01-27T00:22:45Z<p>I know what the answer to my own question is.</p>
<p>The sprited buttons are implemented using an HTML list and CSS, where all the list items have a background image. The background image is moved around using CSS to show different buttons and states (like mouseover highlights). Standard CSS button spriting stuff.</p>
<p>This works fine in IE with one exception: IE tries to select the empty list text when you click on the background image "button". The selection in the input textarea goes away and the current selection (which will be returned by document.selection.createRange()) is moved to the empty text in the list item.</p>
<p>The fix for this is simple - I created a variable to cache the selection and a flag. In IE I cache the selection and set the flag in a mousedown event handler. In the text processing, I check for the presence of the flag - if it's set I use the cached range instead of querying document.selection.createRange().</p>
<p>Here are some code snippets:</p>
<pre><code>wmd.ieCachedRange = null;
wmd.ieRetardedClick = false;
if(global.isIE) {
button.onmousedown = function() {
wmd.ieRetardedClick = true;
wmd.ieCachedRange = document.selection.createRange();
};
}
var range;
if(wmd.ieRetardedClick && wmd.ieCachedRange) {
range = wmd.ieCachedRange;
wmd.ieRetardedClick = false;
}
else {
range = doc.selection.createRange();
}
</code></pre>
<p>The solution is only a few lines of code and avoids messing around with the DOM and potentially creating layout engine issues.</p>
<p>Thanks for your help, Cristoph. I came up with the answer while thinking and googling about your answer.</p>
http://stackoverflow.com/questions/474483/how-to-exercise-and-feel-well-when-you-are-programming/474507#4745076Answer by Dana Robinson for How to exercise and feel well when you are programmingDana Robinson2009-01-23T21:03:17Z2009-01-23T21:03:17Z<p>I chase my puppy around the house. It keeps us both sane.</p>
<p>I also like to squeeze a stress ball to keep my fingers warmed up and I take breaks and walk around. Walking is good for both thinking and physical exercise.</p>
http://stackoverflow.com/questions/471300/git-switch-branch-without-detaching-head3git: switch branch without detaching headDana Robinson2009-01-22T23:37:05Z2009-01-23T02:01:54Z
<p>I have a repository on github with a main branch (master) and a branch for some experimental work. I made some commits and pushed to the experimental branch and everything was fine.</p>
<p>Now, on a different machine, I try to clone my repository (git clone <em>repository</em>) and then switch to the experimental branch (git checkout <em>branchname</em>) but every time I do this my head gets detached and I can't push my changes. What am I doing wrong? I get the feeling I'm missing a fundamental git concept someplace but reading random git man pages isn't giving me any clues.</p>
<p>I'm new to git so I'm sorry if I'm being an idiot but I can't find anything in the docs that will help me reattach my head.</p>
<p><strong>EDIT</strong></p>
<p>The concept of a tracking branch is what I was missing. Now that I grok that concept everything is clear. Personally, I find the <code>git branch --track</code> syntax to be much more intuitive than <code>git checkout -b branch-name origin/branch-name</code>.</p>
<p>Thanks for the help!</p>
http://stackoverflow.com/questions/425731/how-to-approach-structuring-functions-procedures-for-a-newbie/425776#4257763Answer by Dana Robinson for How to approach structuring functions / procedures for a newbieDana Robinson2009-01-08T20:30:11Z2009-01-08T20:30:11Z<p>Just from reading your post I can tell you are well on your way to becoming a good programmer. Keep up the good work!</p>
<p>The process of refining your code is called refactoring and there are a lot of books on it out there. The classic is Martin Fowler's book Refactoring.</p>
<p>I try to do my best at removing redundancies in my code in both the design and implementation phases, but I don't go nuts about it. You are right in that you can endlessly refactor your code which is a common criticism of software engineering methods which encourage it (see Extreme Programming Refactored by Stephens and Rosenberg for a critique). Finishing projects usually trumps 'polishing' though. As long as you reduce the major sources of redundancy you'll be fine.</p>
<p>And I personally would use three functions instead of one uber-function. It's a lot cleaner.</p>
http://stackoverflow.com/questions/1725143/how-do-databases-deal-with-data-tables-that-cannot-fit-in-memory/1725238#1725238Comment by Dana Robinson on How do databases deal with data tables that cannot fit in memory?Dana Robinson2009-11-12T21:08:51Z2009-11-12T21:08:51ZI want to assume that we run out of RAM, regardless of whether compression is used or not.http://stackoverflow.com/questions/1725143/how-do-databases-deal-with-data-tables-that-cannot-fit-in-memory/1725238#1725238Comment by Dana Robinson on How do databases deal with data tables that cannot fit in memory?Dana Robinson2009-11-12T20:46:08Z2009-11-12T20:46:08ZNo, that's 4 GB of RAM. And we want this to run on higher-end desktops so server/cluster tricks are not an option. And the KIND of index doesn't matter - I want to know how to handle moving data around that can't fit in memory. That's the fundamental problem.http://stackoverflow.com/questions/1725143/how-do-databases-deal-with-data-tables-that-cannot-fit-in-memory/1725193#1725193Comment by Dana Robinson on How do databases deal with data tables that cannot fit in memory?Dana Robinson2009-11-12T20:41:39Z2009-11-12T20:41:39ZYeah, I get that but certainly there are algorithms for things like this.http://stackoverflow.com/questions/1725143/how-do-databases-deal-with-data-tables-that-cannot-fit-in-memory/1725185#1725185Comment by Dana Robinson on How do databases deal with data tables that cannot fit in memory?Dana Robinson2009-11-12T20:38:40Z2009-11-12T20:38:40ZLike in this link? <a href="http://www.cs.aau.dk/~simas/aalg04/esort.pdf" rel="nofollow">cs.aau.dk/~simas/aalg04/esort.pdf</a>http://stackoverflow.com/questions/1725143/how-do-databases-deal-with-data-tables-that-cannot-fit-in-memory/1725168#1725168Comment by Dana Robinson on How do databases deal with data tables that cannot fit in memory?Dana Robinson2009-11-12T20:36:48Z2009-11-12T20:36:48ZReally? They just malloc() away? There must be some algorithms that try to handle this problem.http://stackoverflow.com/questions/1725143/how-do-databases-deal-with-data-tables-that-cannot-fit-in-memory/1725167#1725167Comment by Dana Robinson on How do databases deal with data tables that cannot fit in memory?Dana Robinson2009-11-12T20:35:19Z2009-11-12T20:35:19ZAnd before anyone asks, using a commercial DBMS is not an option.http://stackoverflow.com/questions/1725143/how-do-databases-deal-with-data-tables-that-cannot-fit-in-memory/1725167#1725167Comment by Dana Robinson on How do databases deal with data tables that cannot fit in memory?Dana Robinson2009-11-12T20:34:06Z2009-11-12T20:34:06ZEssentially I am doing just this.http://stackoverflow.com/questions/1219693/can-a-c-dll-compiled-using-visual-studio-2008-be-used-with-visual-studio-2005/1625708#1625708Comment by Dana Robinson on Can a C++ dll compiled using Visual Studio 2008 be used with Visual Studio 2005?Dana Robinson2009-10-26T18:59:24Z2009-10-26T18:59:24ZYou should ask this as a separate question. Nobody will see it down here.http://stackoverflow.com/questions/1545213/what-is-a-good-way-to-build-a-lot-of-small-tools-in-visual-studio/1545245#1545245Comment by Dana Robinson on What is a good way to build a lot of small tools in Visual Studio?Dana Robinson2009-10-09T18:33:55Z2009-10-09T18:33:55ZI deal with the Unix->Windows transition all the time and a lot of the software I see is built like this (1 makefile = lib + a bunch of command line and test tools). And yes, I know I can make MSBuild do pretty much anything but it appears to have a steep learning curve and I'd really like to focus on my project, not hacking crazy MSBuild scripts. Why can't MS just let me build a bunch of executables from one project?http://stackoverflow.com/questions/1545213/what-is-a-good-way-to-build-a-lot-of-small-tools-in-visual-studio/1545245#1545245Comment by Dana Robinson on What is a good way to build a lot of small tools in Visual Studio?Dana Robinson2009-10-09T18:20:58Z2009-10-09T18:20:58ZA default Win32 project adds Source, Include and Resource folders which are just noise when your project is one .c file. And yeah, I know you can munge all that stuff as much as you want (directories, etc.) The point is that I'm trying to avoid doing it 20 times.http://stackoverflow.com/questions/1545213/what-is-a-good-way-to-build-a-lot-of-small-tools-in-visual-studio/1545245#1545245Comment by Dana Robinson on What is a good way to build a lot of small tools in Visual Studio?Dana Robinson2009-10-09T18:11:34Z2009-10-09T18:11:34ZI mentioned that I was trying to AVOID this. Clicking through the wizard and deleting the extraneous folders that VS makes is really annoying for 20ish tools.http://stackoverflow.com/questions/1507294/how-to-end-a-loop-early-in-c/1507329#1507329Comment by Dana Robinson on How to end a loop early in C?Dana Robinson2009-10-02T01:17:08Z2009-10-02T01:17:08ZIt would be better to use break since the intent of the code would be more apparent.http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/1192756#1192756Comment by Dana Robinson on What non-programming books should programmers read?Dana Robinson2009-09-30T17:04:11Z2009-09-30T17:04:11ZKurzweil is optimistic to the point of insanity. His predictions are just flat-out silly.http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/103761#103761Comment by Dana Robinson on What non-programming books should programmers read?Dana Robinson2009-09-30T16:57:33Z2009-09-30T16:57:33ZYou can save some time and money by reading the Wikipedia page for it.http://stackoverflow.com/questions/1460798/is-there-a-list-of-visual-studio-environment-variables/1460840#1460840Comment by Dana Robinson on Is there a list of Visual Studio environment variables?Dana Robinson2009-09-22T15:40:57Z2009-09-22T15:40:57ZI found that list myself. It is not what I'm looking for.