User Rob - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T18:28:33Z http://stackoverflow.com/feeds/user/1185 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1846885/gradient-for-selected-row-in-asp-net-gridview/1847937#1847937 0 Answer by Rob for gradient for selected row in asp.net gridview Rob 2009-12-04T16:05:07Z 2009-12-04T16:05:07Z <p>I'm not sure if you could do a gradient color per se, but there are ways to assign a color to a given row in a table.</p> <p>If you are using the ASP.NET GridView and just wish to have a way of distinguishing between rows you can use the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.alternatingrowstyle.aspx" rel="nofollow">AlternatingRowStyle</a> property to alternate the colors which makes it easier to distinguish between the fields. </p> <p>Another option is to just return a fairly generic table and then use <a href="http://jquery.com/" rel="nofollow">jQuery</a> to manipulate it on the client side. If you go this route, then there are techniques describe that allow you to set a row color on click, <a href="http://www.exforsys.com/tutorials/jquery/jquery-row-highlighting.html" rel="nofollow">as described in this tutorial</a>.</p> http://stackoverflow.com/questions/1681330/downloaded-word-file-displaying-incorrectly/1763489#1763489 1 Answer by Rob for Downloaded word file displaying incorrectly Rob 2009-11-19T14:05:21Z 2009-11-19T14:05:21Z <p>I've been using Office XML with Excel for awhile now and this is very similar to the code that I'm using to send it down to the client. You might want to try and see if it works for you.</p> <pre><code>Dim xml As XmlDocument = New XmlDocument() xml.Load("report.doc") Response.ContentType = "application/vnd.ms-word" Response.AppendHeader("CONTENT-DISPOSITION", "attachment; filename=report.doc") Response.Write(xml.OuterXml) </code></pre> http://stackoverflow.com/questions/1742552/storing-record-lock-tokens-in-asp-net 1 Storing Record Lock Tokens in ASP.NET Rob 2009-11-16T14:37:04Z 2009-11-16T15:06:10Z <p>In the application that I'm currently working on, it is possible for multiple users to want to edit something at the same time which means that we need to implement optimistic locking. However, for this application, the item being edited is a scientific protocol that contains records from multiple different tables in the database. </p> <p>As such, we want to be able to indicate the entire protocol has been locked for editing by a single user which leads to my question: would the preferred method of doing this be to event the edits at the database level (e.g. have a table with the unique id of the protocol and check to see if it has been locked) or would it be accepted to track the currently locked protocols on the web server itself in memory? </p> <p>Currently we only anticipate around 100 users (20 or so simultaneous) for the application, but that number may increase in the future so we are looking to use the most scalable option.</p> http://stackoverflow.com/questions/1137241/why-is-the-xslt-disable-output-escaping-not-implemented-in-firefox 1 Why is the XSLT disable-output-escaping not implemented in Firefox? Rob 2009-07-16T12:32:16Z 2009-10-24T21:39:26Z <p>This is an issue that recently came up for me while writing a new XSLT for some XML generated by an application with XTHML embedded using CDATA. Normally I've been able to use <a href="http://www.w3.org/TR/xslt#disable-output-escaping" rel="nofollow">disable-escape-output</a> to render the results correctly.</p> <p>However, in Firefox, everything was being displayed as escaped (i.e. &amp;amp;) as opposed to rendering as expected, since Firefox tends to be my primary browser when developing this resulted me losing some time trying to figure out what I was doing wrong before finding <a href="https://bugzilla.mozilla.org/show%5Fbug.cgi?id=98168" rel="nofollow">Firefox Bug 98168</a> describing the issue.</p> <p>Right now it looks like this issue is not slated to be implemented in Firefox and I've been reading through the bug's comments and it looks like the decision was made back in 2001. As such, I was hoping someone might be able to explain what the issue is and if it still applies now in 2009? Also, if this is never going to be fixed in Firefox, is there a workaround for it besides using another browser?</p> http://stackoverflow.com/questions/1537018/iphone-sdk-on-powerpc/1537513#1537513 0 Answer by Rob for iPhone SDK on PowerPC? Rob 2009-10-08T12:31:13Z 2009-10-08T12:31:13Z <p>As noted by Will, since the SDK only supports the Intel processors, you are limited to a newer Mac unless you build a Hackintosh which may or may not be legal. However, you also don't need the latest and greatest machine to write software with, although better hardware does help! So you have a couple of options if you are looking to save money in that you could get a <a href="http://store.apple.com/us/browse/home/specialdeals/mac" rel="nofollow">refurbished Mac from Apple</a> or check around on eBay or Craigslist to see if you could get one.</p> http://stackoverflow.com/questions/1536218/where-can-i-get-free-certification-online-for-php-javascript-css-etc/1537457#1537457 0 Answer by Rob for Where can i get free certification online for php, javascript, css etc Rob 2009-10-08T12:17:48Z 2009-10-08T12:17:48Z <p><a href="http://www.brainbench.com/xml/bb/individuals/individuals.xml" rel="nofollow">Brainbench</a> has certification tests that you can take online and some of them are free; however, they tend to be of limited use as there really isn't much stopping people from looking up the answers while they are working on them. </p> http://stackoverflow.com/questions/1503969/how-do-you-remove-shared-status-from-a-file-in-visual-source-safe 0 How do you remove "shared" status from a file in Visual Source Safe? Rob 2009-10-01T13:28:18Z 2009-10-01T14:02:18Z <p>Currently, I am working on a file that is shared between multiple projects in Visual Source Safe and we have come to a point where we need to update it to be specific to a certain project. Is there a way to safely remove the shared status from the file file?</p> http://stackoverflow.com/questions/1480023/code-golf-lasers/1489010#1489010 4 Answer by Rob for Code Golf: Lasers Rob 2009-09-28T19:50:16Z 2009-09-29T19:38:05Z <p><strong>JavaScript - 265 Characters</strong></p> <p><strong>Update IV</strong> - Odds are this will be the last round of updates, managed to save a couple more characters by switching to a do-while loop and rewriting the movement equation.</p> <p><strong>Update III</strong> - Thanks to the suggestion by strager in regards to removing Math.abs() and putting the variables in the global name space, that coupled with some rearranging of the variable assignments got the code down to 282 characters.</p> <p><strong>Update II</strong> - Some more updates to the code to remove the use of != -1 as well as some better use of variables for longer operations.</p> <p><strong>Update</strong> - When through and made some changes by creating a reference to the indexOf function (thanks LiraNuna!) and removing parenthesis that were not needed. </p> <p>This is my first time doing a code golf so I'm not sure how much better this could be, any feed back is appreciated.</p> <p>Fully minimized version:</p> <pre><code>a;b;c;d;e;function f(g){a=function(a){return g.indexOf(a)};b=a("\n")+1;a=g[c=e=a("v")&gt;0?e:e=a("^")&gt;0?e:e=a("&lt;")&gt;0?e:a("&gt;")];d=a=="&lt;"?-1:a=="&gt;"?1:a=="^"?-b:b;do{e=d==-1|d==1;a=g[c+=d=a=="\\"?e?b*d:d&gt;0?1:-1:a=="/"?e?-b*d:d&gt;0?1:-1:d];e=a=="x"}while(a!="#"^e);return e} </code></pre> <p>Original version with comments:</p> <pre><code>character; length; loc; movement; temp; function checkMaze(maze) { // Use a shorter indexOf function character = function(string) { return maze.indexOf(string); } // Get the length of the maze length = character("\n") + 1; // Get the location of the laser in the string character = maze[loc = temp = character("v") &gt; 0 ? temp : temp = character("^") &gt; 0 ? temp : temp = character("&lt;") &gt; 0 ? temp : character("&gt;")]; // Get the intial direction that we should travel movement = character == "&lt;" ? -1 : character == "&gt;" ? 1 : character == "^" ? -length : length; // Move along until we reach the end do { // Get the current character temp = movement == -1 | movement == 1; character = maze[loc += movement = character == "\\" ? temp ? length * movement : movement &gt; 0 ? 1 : -1 : character == "/" ? temp ? -length * movement : movement &gt; 0 ? 1 : -1 : movement]; // Have we hit a target? temp = character == "x"; // Have we hit a wall? } while (character != "#" ^ temp); // temp will be false if we hit the target return temp; } </code></pre> <p>Web page to test with:</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;Code Golf - Lasers&lt;/title&gt; &lt;script type="text/javascript"&gt; a;b;c;d;e;function f(g){a=function(a){return g.indexOf(a)};b=a("\n")+1;a=g[c=e=a("v")&gt;0?e:e=a("^")&gt;0?e:e=a("&lt;")&gt;0?e:a("&gt;")];d=a=="&lt;"?-1:a=="&gt;"?1:a=="^"?-b:b;do{e=d==-1|d==1;a=g[c+=d=a=="\\"?e?b*d:d&gt;0?1:-1:a=="/"?e?-b*d:d&gt;0?1:-1:d];e=a=="x"}while(a!="#"^e);return e} &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;textarea id="maze" rows="10" cols="10"&gt;&lt;/textarea&gt; &lt;button id="checkMaze" onclick="alert(f(document.getElementById('maze').value))"&gt;Maze&lt;/button&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/13222/how-many-people-actually-read-the-art-of-computer-programming-books/13252#13252 10 Answer by Rob for How many people actually read "The Art Of Computer Programming" books? Rob 2008-08-16T17:45:52Z 2009-09-28T21:55:59Z <p>I have the first three volumes on the shelf along with a slowly building collection of the fascicles as well. However, like many others I really haven't opened them up and read them cover to cover, most of the time I just use them to look-up a particular topic that I am working on.</p> <p>As a reference I have found the <em>Fundamental Algorithms</em> and <em>Sorting and Searching</em> books to be of great use and the fascicles to be useful on some specific problems I have been working on.</p> <p>I have also heard the arguments that they tend to be too low level for most people to find them useful, but I tend to disagree. While the examples in MMIX assembly (FYI - <a href="http://en.wikipedia.org/wiki/MMIX" rel="nofollow">MMIX has not been implemented in hardware</a>) tend to be of dubious use at times and I would like to see some C like examples, I have come to notice that if I can understand the concept being explained and the associated MMIX code, I can generally implement it in the language of my choice. </p> http://stackoverflow.com/questions/1431670/underestimate-and-therefore-undercharge-your-clients-what-would-you-do/1465693#1465693 0 Answer by Rob for Underestimate and therefore undercharge your clients-- what would you do? Rob 2009-09-23T12:30:27Z 2009-09-23T12:30:27Z <p>If you are billing based upon a completed project basis, there really isn't much you can do if you underestimate how long the project will take. You might try discussing it with the client to see if they would be willing to renegotiate the cost, but they are under no obligation to actually pay you more and it might in fact hurt your future chances for business if they talk with others about it. </p> <p>Your best bet for the future is to work on improving your project estimation skills that you use when estimating how long the project will take. While it applies a bit more to larger projects with teams, <a href="http://rads.stackoverflow.com/amzn/click/0735605351" rel="nofollow">Software Estimation: Demystifying the Black Art</a> might be a book worth picking up.</p> http://stackoverflow.com/questions/1448562/how-to-get-every-character-in-a-string/1448584#1448584 3 Answer by Rob for How to get every character in a string Rob 2009-09-19T13:48:34Z 2009-09-19T13:56:23Z <p>It looks like the NSString defines the function <a href="http://developer.apple.com/mac/library/DOCUMENTATION/Cocoa/Reference/Foundation/Classes/NSString%5FClass/Reference/NSString.html#//apple%5Fref/occ/instm/NSString/characterAtIndex%3A" rel="nofollow">characterAtIndex</a> which allows you to access a given character based upon the index value. So just setup a loop over the length of the string and use that to get the individual character at the given index, thus:</p> <pre><code>for (int ndx = 0; ndx &lt; [ myString length ]; ndx++) { theChar = [ myString characterAtIndex:ndx ]; } </code></pre> http://stackoverflow.com/questions/554111/how-can-i-hide-weekends-when-using-the-asp-net-calendar-control 0 How can I hide weekends when using the ASP.NET Calendar control? Rob 2009-02-16T18:29:40Z 2009-09-17T22:57:24Z <p>Sometimes when displaying a calendar it is necessary to prevent the weekend days and the weekend names in the day header from showing, is there a way to do this using the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.calendar.aspx" rel="nofollow">ASP.NET Calendar control</a>?</p> http://stackoverflow.com/questions/554111/how-can-i-hide-weekends-when-using-the-asp-net-calendar-control/554150#554150 2 Answer by Rob for How can I hide weekends when using the ASP.NET Calendar control? Rob 2009-02-16T18:43:30Z 2009-09-17T22:57:24Z <p>As the control is provided, there is no way to do this without overriding the control. One way of doing this is to is to override the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.calendar.ondayrender.aspx" rel="nofollow">OnDayRender</a> and <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.calendar.render.aspx" rel="nofollow">Render</a> methods to remove the information from the output prior to sending it back to the client. </p> <p>The following is a screen shot of what the control looks like when rendered:</p> <p><img src="http://img15.imageshack.us/img15/1204/weekdaycalendarpf6.png" alt="Example of weekday calendar" /></p> <p>The following is a basic control override that demonstrates removing the weekend day columns from the control.</p> <pre><code>/*------------------------------------------------------------------------------ * Author - Rob (http://stackoverflow.com/users/1185/rob) * ----------------------------------------------------------------------------- * Notes * - This might not be the best way of doing things, so you should test it * before using it in production code. * - This control was inspired by Mike Ellison's article on The Code Project * found here: http://www.codeproject.com/aspnet/MellDataCalendar.asp * ---------------------------------------------------------------------------*/ using System; using System.Web.UI; using System.Web.UI.WebControls; using System.Text; using System.IO; using System.Xml; namespace DataControls { /// &lt;summary&gt; /// Example of a ASP.NET Calendar control that has been overriden to force /// the weekend columns to be hidden on demand. /// &lt;/summary&gt; public class DataCalendar : Calendar { private bool _hideWeekend; /// &lt;summary&gt;Constructor&lt;/summary&gt; public DataCalendar() : base() { // Default to showing the weekend this._hideWeekend = false; } /// &lt;summary&gt; /// Indicate if the weekend days should be shown or not, set to true /// if the weekend should be hidden, false otherwise. This field /// defaults to false. /// &lt;/summary&gt; public bool HideWeekend { get { return this._hideWeekend; } set { this._hideWeekend = value; } } /// &lt;summary&gt; /// Render the day on the calendar with the information provided. /// &lt;/summary&gt; /// &lt;param name="cell"&gt;The cell in the table.&lt;/param&gt; /// &lt;param name="day"&gt;The calendar day information&lt;/param&gt; protected override void OnDayRender(TableCell cell, CalendarDay day) { // If this is a weekend day and they should be hidden, remove // them from the output if (day.IsWeekend &amp;&amp; this._hideWeekend) { day = null; cell.Visible = false; cell.Text = string.Empty; } // Call the base render method too base.OnDayRender(cell, day); } /// &lt;summary&gt; /// Render the calendar to the HTML stream provided. /// &lt;/summary&gt; /// &lt;param name="html"&gt;The output control stream to write to.&lt;/param&gt; protected override void Render(HtmlTextWriter html) { // Setup a new HtmlTextWriter that the base class will use to render StringBuilder sb = new StringBuilder(); StringWriter sw = new StringWriter(sb); HtmlTextWriter calendar = new HtmlTextWriter(sw); // Call the base Calendar's Render method allowing OnDayRender() // to be executed. base.Render(calendar); // Check to see if we need to remove the weekends from the header, // if we do, then remove the fields and use the new verison for // the output. Otherwise, just use what was previously generated. if (this._hideWeekend &amp;&amp; this.ShowDayHeader) { // Load the XHTML to a XML document for processing XmlDocument xml = new XmlDocument(); xml.Load(new StringReader(sw.ToString())); // The Calendar control renders as a table, so navigate to the // second TR which has the day headers. XmlElement root = xml.DocumentElement; XmlNode oldNode = root.SelectNodes("/table/tr")[1]; XmlNode sundayNode = oldNode.ChildNodes[0]; XmlNode saturdayNode = oldNode.ChildNodes[6]; XmlNode newNode = oldNode; newNode.RemoveChild(sundayNode); newNode.RemoveChild(saturdayNode); root.ReplaceChild(oldNode, newNode); // Replace the buffer html.WriteLine(root.OuterXml); } else { html.WriteLine(sw.ToString()); } } } } </code></pre> http://stackoverflow.com/questions/10412/creating-a-word-doc-in-c-net/10423#10423 10 Answer by Rob for Creating a Word doc in C#.NET Rob 2008-08-13T22:19:48Z 2009-08-25T05:23:37Z <p>The answer is going to depend slightly upon if the application is running on a server or if it is running on the client machine. If you are running on a server then you are going to want to use one of the XML based office generation formats as there are know issues when <a href="http://support.microsoft.com/kb/257757" rel="nofollow">using Office Automation on a server</a>.</p> <p>However, if you are working on the client machine then you have a choice of either <a href="http://msdn.microsoft.com/en-us/office/default.aspx" rel="nofollow">using Office Automation</a> or using the Office Open XML format (see links below), which is supported by Microsoft Office 2000 and up either natively or through service packs. One draw back to this though is that you might not be able to embed some kinds of graphs or images that you wish to show. </p> <p>The best way to go about things will all depend sightly upon how much time you have to invest in development. If you go the route of Office Automation there are quite a few good tutorials out there that can be found via Google and is fairly simple to learn. However, the Open Office XML format is fairly new so you might find the learning curve to be a bit higher.</p> <p>Office Open XML Iinformation</p> <ul> <li>Office Open XML - <a href="http://en.wikipedia.org/wiki/Office%5FOpen%5FXML" rel="nofollow">http://en.wikipedia.org/wiki/Office%5FOpen%5FXML</a></li> <li>OpenXML Developer - <a href="http://openxmldeveloper.org/default.aspx" rel="nofollow">http://openxmldeveloper.org/default.aspx</a></li> <li>Introducing the Office (2007) Open XML File Formats - <a href="http://msdn.microsoft.com/en-us/library/aa338205.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa338205.aspx</a></li> </ul> http://stackoverflow.com/questions/1299808/in-xslt-how-do-you-test-to-see-if-a-variable-exists 2 In XSLT how do you test to see if a variable exists? Rob 2009-08-19T13:04:39Z 2009-08-22T12:14:47Z <p>When using XSLT how do you test to see if a locally scoped variable exists, or is this even possible? </p> http://stackoverflow.com/questions/1229333/how-to-implement-reuseable-html-navigation-menus/1229369#1229369 0 Answer by Rob for How to implement reuseable HTML Navigation menus? Rob 2009-08-04T19:13:52Z 2009-08-04T19:13:52Z <p>So far one of the best solutions I have found is to model the menus after the <a href="http://www.htmldog.com/articles/suckerfish/dropdowns/" rel="nofollow">Son of Suckerfish</a> XHTML/CSS solution that is pretty well documented on the internet now combined with some logic on the server to render the unordered list. By using unordered lists you have a couple different options on how to output the results, but as long as the menu has some basic hierarchy you can generate it. Then for the actual page all you need to do is include a reference to the menu generating function.</p> http://stackoverflow.com/questions/208293/when-to-throw-out-old-programming-books/1229117#1229117 0 Answer by Rob for When to Throw Out Old Programming Books? Rob 2009-08-04T18:26:27Z 2009-08-04T18:26:27Z <p>Generally, books have gone to charity after they have either a) out lived their usefulness or b) out grew the size of the dedicated bookcase. For books that are still mildly relevant you might want to ask around at work or on a social networking site where you know people as they might still have a use for an older book that you are not using. </p> <p>Also, before getting rid of books I tend to go through them one last time to make sure there isn't anything useful in them. While I may not need a book on the Windows 95 API, some of the older books on computer graphics are surprisingly still relevant as an algorithm reference.</p> http://stackoverflow.com/questions/262255/why-isnt-all-government-sponsored-software-open-source/1216816#1216816 1 Answer by Rob for Why isn't all government sponsored software open source? Rob 2009-08-01T15:26:18Z 2009-08-01T16:19:55Z <p>The question mentions security briefly, but it can be a major reason that government produced or government sponsored software can't be open sourced. As a whole, the military runs a lot of software that is custom and written for a specific purpose and exposure of the source code would expose classified information. Granted you could make and argument that relevant information could be redacted but that isn't always possible as if you know what the software is for, you can derive information about that without having to know the exact name (i.e. actual operation envelops for airframes). </p> http://stackoverflow.com/questions/15057/find-orphaned-methods-in-codebase/15065#15065 4 Answer by Rob for find orphaned methods in codebase Rob 2008-08-18T18:40:59Z 2009-07-30T12:46:05Z <p>As it turns out, one of the things that <a href="http://blogs.msdn.com/fxcop/" rel="nofollow">FxCop</a> does is identify unused bits of code, but it sometimes misses stuff. However, your best bet would likely be <a href="http://www.jetbrains.com/resharper/" rel="nofollow">ReSharper</a>.</p> http://stackoverflow.com/questions/462219/xkcd-random-number/462593#462593 30 Answer by Rob for XKCD - Random Number Rob 2009-01-20T18:56:19Z 2009-07-21T21:56:47Z <p>The comment implies that who ever wrote it just rolled dice to get the number and is having it return the results of a dice roll. While the results of the dice roll are going to be truly random as opposed to <a href="http://en.wikipedia.org/wiki/Pseudorandom%5Fnumber%5Fgenerator" rel="nofollow">pseudorandom</a>, it misses the spirit of what a random number function is.</p> <p>Thus, it is a joke.</p> http://stackoverflow.com/questions/1144703/what-should-the-penalty-response-for-missing-a-deadline-be/1144989#1144989 0 Answer by Rob for What should the penalty/response for missing a deadline be? Rob 2009-07-17T18:38:43Z 2009-07-17T18:38:43Z <p>Two obvious questions come to mind when a deadline was missed:</p> <ol> <li>Was the deadline feasible? </li> <li>Did external factors impact performance?</li> </ol> <p>Obviously, if someone presents you with a deadline that doesn't make sense then there shouldn't be any penalty for missing the deadline. Also, if someone misses a deadline because they were called up for jury duty that also shouldn't be held against them as well.</p> <p>In the event those questions don't apply then the next thing to do is to figure out what went wrong. If you based your estimate for how long something would take, and thus the deadline, on the developers estimation of how long it would take them to write the code then perhaps they were too optimistic in their responses. </p> http://stackoverflow.com/questions/1143124/does-open-source-translate-to-anyone-can-take-my-work-and-host-it-wherever-and/1143247#1143247 0 Answer by Rob for Does "open-source" translate to "anyone can take my work and host it wherever and however they like"? Rob 2009-07-17T13:24:44Z 2009-07-17T13:31:08Z <p>I am not a lawyer, but my understanding is that it depends upon the license that you are using. If you release your copyright to the code then there might not be much you an do in regards to the code itself. However, if you are just saying that anyone may simply view the code then you may be able to demand that it is removed from their site.</p> <p>However, all of the additional information associated with the code may or may not be covered by the same license that is on the code. You might need to double check the original website, but if you don't have some notice saying that your copyright on the additional information has been released, they shouldn't be able to take all of it without your permission. If that is the case you should be able to go after them to remove all information supplementary to the source code itself.</p> <p>My understanding of the open source license has always been that making the code itself open source doesn't mean that all work you do for that software is now under that same license as well. For example, say I write an application and release it free and open source. I would still be within my rights to separate write and extensive user's manual for the application and I would be able to sell that independent of the software and even go so far as to include the software with the book. As long as you could also download the software without buying the book there wouldn't be a conflict with most of the free and open source licenses.</p> http://stackoverflow.com/questions/549912/value-of-a-s-degree-in-programming/1131671#1131671 1 Answer by Rob for Value of A.S. Degree in Programming Rob 2009-07-15T14:15:22Z 2009-07-15T14:15:22Z <p>I actually took the route of getting an Associate of Applied Science degree and then getting my Bachelors degree in Computer Science and I think the degree in and of itself is useful to opening some doors but ultimately you are going to want to get the Bachelors degree if you want to work at a larger company. </p> <p>At a minimum having the degree is going to keep your resume from getting filtered out by anyone that is doing keyword searches and it also shows that you have at least a minimum level of knowledge. This could be enough to get you a junior developer position or even some contract work if you know something that is a bit more specialized. </p> <p>From a long term standpoint, the Bachelors degree tends to be mandatory at bigger companies and at some point you are going to want to get that degree. However, one of the nice things about having an Associates is that you can usually get a lot of credits towards the Bachelors transferred in based upon that degree. This in turn means that you don't have to start form scratch when it comes time to work on that degree. Remember that community colleges also tend to cost less in terms of tuition so that will be that much less money you have to pay when it comes time for the Bachelors degree as well.</p> http://stackoverflow.com/questions/7301/higher-pay-for-advanced-degrees/1093892#1093892 0 Answer by Rob for Higher pay for advanced degrees? Rob 2009-07-07T18:11:42Z 2009-07-07T18:11:42Z <p>Looking back through some of the questions here I think there might be a little bit of apples or oranges comparison going on in that <a href="http://stackoverflow.com/questions/7301/higher-pay-for-advanced-degrees/7532#7532">one of the posters</a> pointed out, and correctly so, that someone with an advanced degree is unlikely to be doing "code-monkey" work. Also, as <a href="http://stackoverflow.com/questions/7301/higher-pay-for-advanced-degrees/990163#990163">someone else</a> pointed out, just having a Ph.D. doesn't mean that people are going to line up to give you large salaries and you still have to have the talent to command that salary. </p> <p>In general though, you can usually expect an advanced degree to lead to more income, but you may also find that the salary difference is not worth the time and money you invest in getting the degree. Usually, the bigger difference is that the advanced degree is going to open doors that might otherwise be closed to you if you only have an undergraduate degree. </p> http://stackoverflow.com/questions/19019/ideal-computer-for-software-development 2 Ideal Computer for Software Development Rob 2008-08-20T22:45:54Z 2009-06-23T20:04:48Z <p>What would you consider the ideal computer configuration for software development? Also, what upgrades would you look at for a development computer?</p> http://stackoverflow.com/questions/15111/do-you-have-any-recommended-code-snippets-for-microsoft-visual-studio 7 Do you have any recommended code-snippets for Microsoft Visual Studio? Rob 2008-08-18T19:26:36Z 2009-06-22T17:32:12Z <p>What are some macros that you have found useful in Visual Studio for code manipulation and automation? Since good code can be useful in all languages, this question is not language specific.</p> http://stackoverflow.com/questions/891643/twitter-image-encoding-challenge/929768#929768 8 Answer by Rob for Twitter image encoding challenge Rob 2009-05-30T14:02:25Z 2009-06-18T13:28:34Z <p>The following is my approach to the problem and I must admit that this was quite an interesting project to work on, it is definitely outside of my normal realm of work and has given me a something new to learn about. </p> <p>The basic idea behind mine is as follows:</p> <ol> <li>Down-sample the image gray-scale such that there were a total of 16 different shades</li> <li>Preform RLE on the image</li> <li>Pack the results into the UTF-16 characters</li> <li>Preform RLE on the packed results to remove any duplication of characters</li> </ol> <p>It turns out that this does work, but only to a limited extent as you can see from the sample images below. In terms of output, what follows is a sample tweet, specifically for the Lena image shown in the samples.</p> <blockquote> <p>乤乤万乐唂伂倂倁企儂2企倁3企倁2企伂8企伂3企伂5企倂倃伂倁3企儁企2伂倃5企倁3企倃4企倂企倁企伂2企伂5企倁企伂쥹皗鞹鐾륶䦽阹럆䧜椿籫릹靭욶옷뎷歩㰷歉䴗鑹㞳鞷㬼獴鏙돗鍴祳㭾뤶殞焻�乹Ꮛ靆䍼</p> </blockquote> <p>As you can see, I did try and constrain the character set a bit; however, I ran into issues doing this when storing the image color data. Also, this encoding scheme also tends to waste a bunch of bits of data that could be used for additional image information.</p> <p>In terms of run times, for small images the code is extremely fast, about 55ms for the sample images provided, but the time does increase with larger images. For the 512x512 Lena reference image the running time was 1182ms. I should note that the odds are pretty good that the code itself isn't very optimized for performance (e.g. everything is worked with as a <a href="http://msdn.microsoft.com/en-us/library/system.drawing.bitmap.aspx" rel="nofollow">Bitmap</a>) so the times could go down a bit after some refactoring.</p> <p>Please feel free to offer me any suggestions on what I could have done better or what might be wrong with the code. The full listing of run times and sample output can be found at the following location: <a href="http://code-zen.info/twitterimage/" rel="nofollow">http://code-zen.info/twitterimage/</a></p> <p><strong>Update One</strong></p> <p>I've updated the the RLE code used when compressing the tweet string to do a basic look back and if so so use that for the output. This only works for the number value pairs, but it does save a couple of characters of data. The running time is more or less the same as well as the image quality, but the tweets tend to be a bit smaller. I will update the chart on the website as I complete the testing. What follows is one of the example tweet strings, again for the small version of Lena:</p> <blockquote> <p>乤乤万乐唂伂倂倁企儂2企倁3企倁ウ伂8企伂エ伂5企倂倃伂倁グ儁企2伂倃ガ倁ジ倃4企倂企倁企伂ツ伂ス倁企伂쥹皗鞹鐾륶䦽阹럆䧜椿籫릹靭욶옷뎷歩㰷歉䴗鑹㞳鞷㬼獴鏙돗鍴祳㭾뤶殞焻�乹Ꮛ靆䍼</p> </blockquote> <p><strong>Update Two</strong></p> <p>Another small update, but I modified the code to pack the color shades into groups of three as opposed to four, this uses some more space, but unless I'm missing something it should mean that "odd" characters no longer appear where the color data is. Also, I updated the compression a bit more so it can now act upon the entire string as opposed to just the color count block. I'm still testing the run times, but they appear to be nominally improved; however, the image quality is still the same. What follows is the newest version of the Lena tweet:</p> <blockquote> <p>2乤万乐唂伂倂倁企儂2企倁3企倁ウ伂8企伂エ伂5企倂倃伂倁グ儁企2伂倃ガ倁ジ倃4企倂企倁企伂ツ伂ス倁企伂坹坼坶坻刾啩容力吹婩媷劝圿咶坼妛啭奩嗆婣冷咛啫凃奉佶坍均喳女媗决兴宗喓夽兴唹屹冷圶埫奫唓坤喝奎似商嗉乃</p> </blockquote> <p><img src="http://code-zen.info/twitterimage/images/stackoverflow-logo.bmp" alt="StackOverflow Logo" /> <img src="http://code-zen.info/twitterimage/images/cornell-box.bmp" alt="Cornell Box" /> <img src="http://code-zen.info/twitterimage/images/lena.bmp" alt="Lena" /> <img src="http://code-zen.info/twitterimage/images/mona-lisa.bmp" alt="Mona Lisa" /></p> http://stackoverflow.com/questions/997817/oracle-ocienvnlscreate-error-when-connecting-from-windows-service 0 Oracle OCIEnvNlsCreate error when connecting from Windows service Rob 2009-06-15T19:09:02Z 2009-06-15T20:34:10Z <p>As noted by the question's title, I'm trying to connect to an Oracle database from a Windows service and I am getting the following error message:</p> <blockquote> <p>System.Exception: OCIEnvNlsCreate failed with return code -1 but error message text was not available.</p> </blockquote> <p>Other applications on the same computer are connecting to Oracle without any issues and I have tried running the service both as the Local System and using my own user credentials. Any ideas how to resolve this situation?</p> http://stackoverflow.com/questions/825247/what-are-some-techniques-for-generating-powerpoint-presentations-without-using-of 3 What are some techniques for generating PowerPoint presentations without using Office Automation? Rob 2009-05-05T14:53:07Z 2009-06-08T12:46:33Z <p>While it is possible to <a href="http://support.microsoft.com/kb/303717" rel="nofollow">generate PowerPoint presentations automatically using Office Automation</a>, this is <a href="http://support.microsoft.com/kb/257757" rel="nofollow">not recommended for use on a server</a>. How can you go about generating a PowerPoint presentation without using Office Automation?</p> http://stackoverflow.com/questions/825247/what-are-some-techniques-for-generating-powerpoint-presentations-without-using-of/964749#964749 1 Answer by Rob for What are some techniques for generating PowerPoint presentations without using Office Automation? Rob 2009-06-08T12:44:43Z 2009-06-08T12:44:43Z <p>Another option that didn't get mentioned, which was the route we ultimately took, is to make use of the <a href="http://msdn.microsoft.com/en-us/library/aa338205.aspx" rel="nofollow">Open XML</a> file formats that are supported naively in Office 2007 and in Office XP via a <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=941B3470-3AE9-4AEE-8F43-C6BB74CD1466&amp;displaylang=en" rel="nofollow">compatibility pack</a>. Using the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=AD0B72FB-4A1D-4C52-BDB5-7DD7E816D046&amp;displaylang=en" rel="nofollow">Open XML SDK 1.0</a> getting something working turned out to be surprisingly straightforward.</p> <p>First, a generic template file was prepared with tokens put in place of the content that would need to be replaced. Next, a reference to DocumentFormat.OpenXml needs to be added to the project. The code itself will reference the DocumentFormat.OpenXml and DocumentFormat.OpenXml.Packaging namespaces. Finally, the code to loop through the slides looks like the following:</p> <pre><code>// Open the presentation PresentationDocument presentation = PresentationDocument.Open(fileName, true); // Loop through all of the slides in the presentation foreach (SlidePart slide in presentation.PresentationPart.SlideParts) { // Read the XML out of the slide XmlDocument xml = new XmlDocument(); xml.Load(slide.GetStream()); // TODO: Your XML manipulation code here // Save the updated slide xml.Save(slide.GetStream()); } // Save the updated presentation presentation.Close(); </code></pre> http://stackoverflow.com/questions/1847159/setup-entourage-for-exchange-via-http-communication Comment by Rob on Setup Entourage for Exchange via HTTP communication Rob 2009-12-04T14:16:47Z 2009-12-04T14:16:47Z This question looks like it might be better suited for Super User or Server Fault. http://stackoverflow.com/questions/1842773/website-backgrounds Comment by Rob on website backgrounds Rob 2009-12-03T20:44:34Z 2009-12-03T20:44:34Z I'm not sure that this is the right forum for this question. Also, in regards to the &quot;flash&quot; due to the twinkle effect, Flash actually refers to Adobe Flash which is used to write advanced features for sites or games (e.g. how YouTube or Hulu works). It seems that you are just referring to an animated image which isn't the same and Google will work fine with. That said, using an animated image for your background on a site really isn't recommended. http://stackoverflow.com/questions/1763182/prime-number-in-vba-excel-2003 Comment by Rob on prime number in vba excel 2003 Rob 2009-11-19T15:31:25Z 2009-11-19T15:31:25Z Have you tried stepping through the code while watching the locals to see what is going on yet? http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454 Comment by Rob on RegEx match open tags except XHTML self-contained tags Rob 2009-11-17T20:16:30Z 2009-11-17T20:16:30Z When are the t-shirts going to be on the market? http://stackoverflow.com/questions/1742552/storing-record-lock-tokens-in-asp-net/1742596#1742596 Comment by Rob on Storing Record Lock Tokens in ASP.NET Rob 2009-11-16T14:46:44Z 2009-11-16T14:46:44Z Makes sense, why pessimistic as opposed to optimistic though? http://stackoverflow.com/questions/1742552/storing-record-lock-tokens-in-asp-net/1742590#1742590 Comment by Rob on Storing Record Lock Tokens in ASP.NET Rob 2009-11-16T14:45:19Z 2009-11-16T14:45:19Z I was actually considering the same thing with the modification of a user id as well. http://stackoverflow.com/questions/1742552/storing-record-lock-tokens-in-asp-net/1742583#1742583 Comment by Rob on Storing Record Lock Tokens in ASP.NET Rob 2009-11-16T14:43:13Z 2009-11-16T14:43:13Z We are using ASP.NET MVC and all of the protocol edits are indeed going to be routed through a single controller. http://stackoverflow.com/questions/71199/what-makes-you-lose-motivation/73339#73339 Comment by Rob on What makes you lose motivation? Rob 2009-10-16T12:38:26Z 2009-10-16T12:38:26Z @Phil - I didn't ask the original question. http://stackoverflow.com/questions/1503969/how-do-you-remove-shared-status-from-a-file-in-visual-source-safe/1504156#1504156 Comment by Rob on How do you remove "shared" status from a file in Visual Source Safe? Rob 2009-10-01T14:16:29Z 2009-10-01T14:16:29Z That did the trick, thanks for the help. http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19957#19957 Comment by Rob on What interview question weeds out 'bad' applicants? Rob 2009-09-30T11:50:04Z 2009-09-30T11:50:04Z @Jonathan - It would have to be specific to the person and the position that they are interviewing for. For example, a web developer could reasonably be expected to have at least read an article or two about a language such as Ruby on Rails even if they haven't actually used it yet. http://stackoverflow.com/questions/1480023/code-golf-lasers/1489010#1489010 Comment by Rob on Code Golf: Lasers Rob 2009-09-28T23:31:35Z 2009-09-28T23:31:35Z @strager- Just saw your comment, looks like you posted it up while I was updating the code, down to 300 characters. I'll see what I can do with the elimination of Math.abs(). http://stackoverflow.com/questions/1480023/code-golf-lasers/1489010#1489010 Comment by Rob on Code Golf: Lasers Rob 2009-09-28T22:44:16Z 2009-09-28T22:44:16Z @LiraNuna - Good point on the indexOf minimization. http://stackoverflow.com/questions/1466062/who-owns-the-code-i-write Comment by Rob on Who owns the code I write? Rob 2009-09-23T14:08:39Z 2009-09-23T14:08:39Z Voted to close as too localized as this really depends upon what the local laws are and what your employment agreement says. http://stackoverflow.com/questions/1454721/bypassing-popup-blocker Comment by Rob on Bypassing popup blocker Rob 2009-09-21T14:33:54Z 2009-09-21T14:33:54Z The question itself is/was valid from a technical standpoint (although the reasons for doing it might be suspect); however, not getting an answer back that you like isn't a valid reason to start using profanity and being hostile towards site users. Also, it looks like one of the answers might be the solution that you are looking for - <a href="http://stackoverflow.com/questions/1454721/bypassing-popup-blocker/1454746#1454746" rel="nofollow" title="bypassing popup blocker">stackoverflow.com/questions/1454721/&hellip;</a> http://stackoverflow.com/questions/1403884/unable-to-export-5000-rows Comment by Rob on unable to export 5000 rows Rob 2009-09-11T14:47:34Z 2009-09-11T14:47:34Z Have you tried generating and saving the document on the server then downloading it? That might give you some insight into what is going on.