User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T03:20:15Z http://stackoverflow.com/feeds/user/59808 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/892767/c-optimizing-member-variable-order 20 C++: optimizing member variable order? devinb 2009-05-21T12:48:13Z 2009-10-24T21:22:28Z <p>I was reading a <a href="http://forums.introversion.co.uk/defcon/introversion/viewtopic.php?p=79603#79603" rel="nofollow">blog post</a> by a game coder for <a href="http://Introversion.co.uk" rel="nofollow">Introversion</a> and he is busily trying to squeeze every <a href="http://en.wikipedia.org/wiki/Central%5Fprocessing%5Funit" rel="nofollow">CPU</a> tick he can out of the code. One trick he mentions off-hand is to</p> <blockquote> <p>"re-order the member variables of a class into most used and least used."</p> </blockquote> <p>I'm not familiar with C++, nor with how it compiles, but I was wondering if </p> <ol> <li>This statement is accurate?</li> <li>How/Why?</li> <li>Does it apply to other (compiled/scripting) languages?</li> </ol> <p>I'm aware that the amount of (CPU) time saved by this trick would be minimal, it's not a deal-breaker. But on the other hand, in most functions it would be fairly easy to identify which variables are going to be the most commonly used, and just start coding this way by default. </p> http://stackoverflow.com/questions/1468847/gc-collect-on-only-generation-2-large-object-heap 1 GC.Collect on only generation 2 & large object heap devinb 2009-09-23T22:23:47Z 2009-09-23T22:58:04Z <p>In my application there is a specific time when a number of large objects are all released at once. At that time I would like to do a garbage collection on specifically the large object heap (LOH). </p> <p>I'm aware that you cannot do that, you must call <code>GC.Collect(2)</code> because the GC is only invoked on the LOH when it is doing a generation 2 collection. However, I've read in the documentation that calling <code>GC.Collect(2)</code> would still run a GC on generations 1 and 0. </p> <p>Is it possible to force the GC to <em>only</em> collect gen 2, and not include gen 1 or gen 0?</p> <p>If it is not possible, is there a reason for the GC to be designed that way?</p> http://stackoverflow.com/questions/1373090/does-it-make-sense-to-move-to-64-bit-for-a-typical-mac-os-x-application/1373189#1373189 0 Answer by devinb for Does It Make Sense to Move to 64-bit for a "Typical" Mac OS X Application? devinb 2009-09-03T12:41:24Z 2009-09-03T12:41:24Z <p>Generally, the best answer is to know your users. </p> <p>If your users are all primarily on 64bit, then it would be worth the time and effort to convert. If your users are all primarily on 32bit then you would be spending time and effort with negligible reward. </p> <p>If you have the bandwidth, I would suggest that yes, providing a 64bit executable would be best, because at the very least you are widening your possible audience. If you deliver your application through a website, you could attach monitors to see which packages are downloaded most often. That way you are gaining extra information about your users. </p> http://stackoverflow.com/questions/942421/are-endless-loops-in-bad-form/942496#942496 -2 Answer by devinb for Are endless loops in bad form? devinb 2009-06-03T00:01:45Z 2009-09-01T17:29:34Z <p>Endless loops should only be used in the case where you do not have an endcase for your loop. Situations such as that are rare, and so if you find yourself wanting an endless loop, you might want to step back and reconsider what it is that you really want this loop to do.</p> <p><code>while</code> loops should be describable in plain english, such as "While we're not at the end of the file, I want to read the next line in." It is fairly easy to see what while loop would be constructed from that. Endless while loops mean "While this program is running, I want to be doing...." which is usually not the case.</p> <p>Do you really want your <code>while</code> loop to continue on forever? No, you don't. You want it to continue until a certain condition is found, then react to it. So your conditional should contain all the options (or alternately, contain the most common option) that would cause you to stop looping around. Both JaredPar and Jonathan described a better way to clarify this particular loop, but it is something which is accurate across the board. </p> <p>If you ever want a loop to end, then your <code>while(</code> <em>cond</em> <code>)</code> should indicate when it ends. If you never want it to end, (I.E. a loop that runs until your program stops executing) then a <code>while(true)</code> might be needed. But in all other cases, your while condition should describe when the loop stops executing.</p> http://stackoverflow.com/questions/1362753/sharepoint-updatelistitems-list-not-updating/1362835#1362835 0 Answer by devinb for Sharepoint UpdateListItems list not updating devinb 2009-09-01T14:35:28Z 2009-09-01T14:35:28Z <p>The 401 is indicating that you are not logged in, or the user who you are logged in as does not have permissions on that list. Verify that the user 'executing' the batch script can log in to the site and make changes to the list.</p> http://stackoverflow.com/questions/1359184/can-i-put-a-return-statement-inside-a-lock 3 Can I put a return statement inside a lock devinb 2009-08-31T20:09:45Z 2009-08-31T21:38:11Z <p><strong>Dupe:</strong> <a href="http://stackoverflow.com/questions/266681/c-return-statement-in-a-lock-procedure-inside-or-outside">return statement in a lock procedure: inside or outside</a></p> <p>The title is a little misleading. I know that you can do it, but I'm wondering about the performance implications.</p> <p>consider these two blocks of code. (no error handling)</p> <p>This block has the <code>return</code> outside of the lock</p> <pre><code> public DownloadFile Dequeue() { DownloadFile toReturn = null; lock (QueueModifierLockObject) { toReturn = queue[0]; queue.RemoveAt(0); } return toReturn; } </code></pre> <p>This block has the <code>return</code> statement <em>within</em> the lock</p> <pre><code> public DownloadFile Dequeue() { lock (QueueModifierLockObject) { DownloadFile toReturn = queue[0]; queue.RemoveAt(0); return toReturn; } } </code></pre> <p>Is there any difference in the code? I understand that the performance differences (if any) would be minimal, but I am specifically wondering if there would be a difference in the order that the <code>lock</code> gets release.</p> http://stackoverflow.com/questions/1357044/how-do-you-put-an-large-existing-database-schema-under-source-control/1357077#1357077 1 Answer by devinb for How do you put an large existing database (schema) under source control? devinb 2009-08-31T11:49:32Z 2009-08-31T11:49:32Z <p>If your company has an MSDN license, they can use the Visual Studio Database edition. There's a video tutorial of it <a href="http://msdn.microsoft.com/en-us/teamsystem/cc659682.aspx" rel="nofollow">here</a>. </p> <p>I have no power of purchase, so I don't know what the cost breakdowns are. But it has the capability of source controlling all the parts of a DB schema, and includes creating change-scripts as well as auto-deploying straight from VS if you want (I wouldn't recommend that). </p> <p>In general though, it's pretty solid as a database source control option.</p> http://stackoverflow.com/questions/824766/wpf-pathgeometry-rotatetransform-optimization 0 WPF PathGeometry/RotateTransform optimization devinb 2009-05-05T13:05:59Z 2009-08-26T19:59:47Z <p>I am having performance issues when rendering/rotating WPF triangles</p> <p>If I had a WPF triangle being displayed and it will be rotated to some degree around a centrepoint, I can do it one of two ways:</p> <ol> <li><p>Programatically determine the points and their offset in the backend, use XAML to simply place them on the canvas where they belong, it would look like this:</p> <pre><code>&lt;Path Stroke="Black"&gt; &lt;Path.Data&gt; &lt;PathGeometry&gt; &lt;PathFigure StartPoint ="{Binding CalculatedPointA, Mode=OneWay}"&gt; &lt;LineSegment Point="{Binding CalculatedPointB, Mode=OneWay}" /&gt; &lt;LineSegment Point="{Binding CalculatedPointC, Mode=OneWay}" /&gt; &lt;LineSegment Point="{Binding CalculatedPointA, Mode=OneWay}" /&gt; &lt;/PathFigure&gt; &lt;/PathGeometry&gt; &lt;/Path.Data&gt; &lt;/Path&gt; </code></pre></li> <li><p>Generate the 'same' triangle every time, and then use a RenderTransform (Rotate) to put it where it belongs. In this case, the rotation calculations are being obfuscated, because I don't have any access to how they are being done.</p> <pre><code>&lt;Path Stroke="Black"&gt; &lt;Path.Data&gt; &lt;PathGeometry&gt; &lt;PathFigure StartPoint ="{Binding TriPointA, Mode=OneWay}"&gt; &lt;LineSegment Point="{Binding TriPointB, Mode=OneWay}" /&gt; &lt;LineSegment Point="{Binding TriPointC, Mode=OneWay}" /&gt; &lt;LineSegment Point="{Binding TriPointA, Mode=OneWay}" /&gt; &lt;/PathFigure&gt; &lt;/PathGeometry&gt; &lt;/Path.Data&gt; &lt;Path.RenderTransform&gt; &lt;RotateTransform CenterX="{Binding Centre.X, Mode=OneWay}" CenterY="{Binding Centre.Y, Mode=OneWay}" Angle="{Binding Orientation, Mode=OneWay}" /&gt; &lt;/Path.RenderTransform&gt; &lt;/Path&gt; </code></pre></li> </ol> <p>My question is which one is faster?</p> <p>I know I should test it myself but how do I measure the render time of objects with such granularity. I would need to be able to time how long the actual rendering time is for the form, but since I'm not the one that's kicking off the redraw, I don't know how to capture the start time.</p> http://stackoverflow.com/questions/1202633/when-why-and-what-should-one-use-a-logger-for/1203029#1203029 1 Answer by devinb for When, why, and what should one use a logger for? devinb 2009-07-29T21:03:10Z 2009-07-29T21:03:10Z <p>Logging is used to track the execution path of a program. </p> <p>Ideally, using only the logs, you should be able to tell what point an application is currently at. If you are creating a web application, this becomes more difficult, as there will be many users, but the logs should be able to distinguish what kinds of executions are happening. </p> <p>As I mentioned <a href="http://stackoverflow.com/questions/782244/log4net-logging-what-have-you-found-to-be-useful/782693#782693">here</a> there are generally different levels of logging, depending on what development stage you are at.</p> <p>Early in development you are likely to want to log pretty much everything. Later on, you are going to only want to log the major sticking points, so that you app can run smoothly.</p> <p>Logs can therefore be critical to debugging (where did it break), but they can also be used for security purposes (tracking logins and logouts), and usage statistics (how many concurrent users).</p> <p>Logging is something that should be included in every architecture design so that you will be able to identify errors before they occur.</p> http://stackoverflow.com/questions/1200085/how-to-search-for-a-word-in-a-book-programmatically/1200411#1200411 0 Answer by devinb for how to search for a word in a book programmatically? devinb 2009-07-29T13:49:24Z 2009-07-29T13:49:24Z <p>You could look into the <a href="http://en.wikipedia.org/wiki/Boyer%E2%80%93Moore%5Fstring%5Fsearch%5Falgorithm" rel="nofollow">Boyer-Moore</a> (also, <a href="http://www.cs.utexas.edu/~moore/best-ideas/string-searching/" rel="nofollow">this</a> contains a link to their original paper) algorithm </p> <p>Unfortunately, the Boyer-Moore algorithm is much faster on longer strings than it is on short 'keyword' searches. So, for keyword searching you might want to implement some sort of crawler that could index likely search terms. </p> <p>Another troubling consideration is that in most books chapters are contained on only certain pages, whereas with a bible, the chapters and verses could be split across multiple pages, and the pages could contain multiple verses and chapters. </p> <p>This means that if you split up your text by verse, then any search phrases that cross verse boundaries will come up with no results (or incorrect ones). </p> <p>A further consideration is the proximity search, such as whether or not you require exact search phrases, or just groups of keywords. </p> <p>I think the first and most important task is to hammer down and harden your requirements. Then you should figure out what format you will be <em>receiving</em> the books in. Once you know your constraints, you can begin to make your architectural design decisions.</p> http://stackoverflow.com/questions/1165816/how-do-i-programmatically-add-an-apostrophe-before-and-after-a-string-and-add-a-c/1165868#1165868 0 Answer by devinb for How do I programmatically add an apostrophe before and after a string and add a comma inbetween? devinb 2009-07-22T14:51:37Z 2009-07-22T14:51:37Z <p>I would just use find and replace all instances of " " with " ',' " , and then add " (' " at the beginning and " ') " at the end.</p> http://stackoverflow.com/questions/1139583/is-there-value-in-producing-code-so-flexible-that-it-will-never-need-to-be-update/1139676#1139676 3 Answer by devinb for Is there value in producing code so flexible that it will never need to be updated? devinb 2009-07-16T19:06:58Z 2009-07-16T19:15:44Z <p>If possible, you should <em>always</em> err on the side of more configurable. It will save you headaches later. </p> <p><strong>Column Names</strong></p> <p>Specifically in your case, columns in tables are an inherently <em>non-static</em> variable. They will commonly change as your needs change.</p> <p>If you have a "<strong>phonenum</strong>" column, then they add a second phone number, they change the column to "<strong>phonenum1</strong>" and "<strong>phonenum2</strong>". It would need to be changed in the code. Then if they change them to "<strong>Home_Phone</strong>", "<strong>Work_Phone</strong>", "<strong>Cell_Phone</strong>" then the code would again have to be changed. If, however, you had a mapping file (a key/value config file) then all these changes would be extremely simple to make. </p> <p><strong>In General</strong> </p> <p>I disagree with dsimcha that an application can be 'too configurable'. What he is talking about is 'feature bloat', where there are so many intertwining configurables that it becomes impossible to change any one without futzing all the others. This is a <em>very real problem</em>. However, the problem is not the number of configuring options, the problem is how they are presented to the user. </p> <p>If you present all the configuration options in a concise, clear, streamlined manner. There should be comments to explain each one, and how it interacts with the others. In that case, you can have as many configuration variables as you want, because you have been careful to keep them segregated into singles or pairs, and have marked them as such.</p> <p>You should be writing applications so that external (environmental) changes do NOT require code changes. Things such as </p> <ul> <li>Database user password changes</li> <li>Column names change</li> <li>"Temp folder" location changes</li> <li>Target Machine name/ip change</li> <li>App needs to be run twice a day instead of once</li> <li>Logging levels</li> </ul> <p>None of those changes affect the <em>function</em> of the application and so there should be NO CODE CHANGES required. That is the metric you should use if you ever wonder whether hard-coding is all right. </p> <p>If the <strong>fuctionality</strong> needs to change, it should be a code change. Otherwise, make it configurable.</p> http://stackoverflow.com/questions/1119578/any-good-guides-to-give-to-developers-for-documentation/1120177#1120177 0 Answer by devinb for Any good guides to give to developers for documentation? devinb 2009-07-13T15:31:21Z 2009-07-13T15:31:21Z <p>Depending strictly on how much time you have (and stealing vigorously from ConcernedOfTunbridge's excellent answer) also on what state the project is in, here are a few critical things to document.</p> <ul> <li><strong>High Level Overview / Functional Specification</strong></li> </ul> <p><strong>What it is:</strong> This section of your document should be written in '<strong>client-speak</strong>'. That is, it should describe exactly what the application is supposed to do and include (for GUI related apps) "<strong>screenshots</strong>" or <strong>wireframes</strong> (they don't have to be pretty, MSPaint, GIMP, even WordArt would be acceptable) with arrows pointing out the functionality of each piece. It should be unambiguous, and the doc that you hand to the developers should be the exact doc that was signed by the client. </p> <p><strong>Why its good:</strong> This section should (hopefully) highlight any areas that are not fleshed out enough, because if they haven't been designed yet, you'll be forced to leave blanks in this section. Blanks at this stage are bad because they lead to scope creep, missed deliverables, and possibly death.</p> <p>At this point you can <em>choose</em> to elaborate on why certain design decisions were made, but this document should be explicit about what is expected. At this point, you should beyond the stage of having the individual devs asking "<a href="http://stackoverflow.com/questions/1043750/how-concerned-are-you-with-the-why-when-discussing-requirements/1044192#1044192">why does it do that instead of XYZ?</a>". However, for anything that is obscure and/or very unusual in its execution, you may want to add a note that explains why the design decision was made to go against typical functionality.</p> <p><hr /></p> <ul> <li><strong>Architectural Overview</strong></li> </ul> <p><strong>What it is:</strong> The architectural overview is not necessarily client facing. Obviously, you shouldn't make disparaging comments about them, because it IS a professional document, but this is expected to be a much lower level section than the previous one. Again, diagrams are very useful here.</p> <p>This document should be arranged in some consistent format that follows a particular execution flow. A sample for a web application could be. <p> 1. <em>High Level Overview:</em> </p> <p>Front End Tier, Middle Tier (Services), Data Access Layer, Database <p> 2. <em>Overview of Each Tier</em></p> <p>E.g. Front End Tier is split up into four applications. X does x, Y does y, Z does z, and ABBA prints lyrics to screen. You'll want to explain your interfaces at this level, so that the developers know what format their cross-over data will need to be in. <p> 3. <em>Overview of Each Application Within the Tiers</em></p> <p>Detailed breakdown of how each application is expected to work in the back end, and how it is expected to interact with the other tiers. Code samples should be showing up at this level. </p> <p>Across this information you can do depth first or breadth first, but it is critically important that it follow some sort of consistent flow, otherwise the developers will get confused and immediately disregard the document.</p> <p><hr /></p> <ul> <li><strong>Common Test Cases / Uncommon Test Cases</strong></li> </ul> <p>This should be a document which starts with your testing methodology (which should be company wide anyway) and drills down more specifically into how/what you will be testing. This step is often overlooked, even when there are testing structures in place, there usually is not a solid baseline of documentation to refer back to. </p> <p>This should highlight areas that have come out in design discussions about areas that are likely to be more prone to error, as well as the areas that are critically common and will possibly be performance bottlenecks. Even if the picture is not perfect, it is still vitally important that you lay out the type of situations whi http://stackoverflow.com/questions/667553/best-practices-and-etiquette-for-setting-up-email-notifications/667631#667631 6 Answer by devinb for Best Practices and Etiquette for Setting up Email Notifications devinb 2009-03-20T19:30:04Z 2009-07-10T14:12:05Z <p><strong>Frequency Etiquette</strong></p> <p>I think that more important than 'not sent out more than one a week' would be 'sent out as infrequently as possible'</p> <p>If you NEED to send out two in one week, then do so. But if you don't need to send them out, then don't send out anything.</p> <p>Alternatively, you could make it 'newsletter' style, and send it out on a regular (scheduled) basis. But in that case you would need to ensure that you have specific relevant things to say in each message. </p> <p><strong>Ease of use</strong></p> <p>Make it incredibly easy to sign up, and sign out. </p> <p>Make it incredibly easy (and optional) for them to customize it. </p> <p>You mentioned fine-grained control, but keep in mind, when the customers see long lists of checkboxes about what they like and don't like, they know that the more boxes they click, the more mail they'll receive, so they'll tend to click fewer.</p> <p>A method you could use would be similar to Facebook's "I like this" "I don't like this" the only problem being that you need a LOT of data (and complex) logic to implement a schema like that.</p> <p>Short direct emails would be best (unlike this response). Include links to the information, although that could get your emails marked as spam.</p> <p>Many people mentioned not selling the emails, I think that's a given, but the other facet is something Frakkle mentioned. Do not have any way for any person on your mailing list to glean the information about anyone else on the mailing list. Not even bccing people. Always compose individual and direct emails.</p> <p><strong>Programmatically</strong></p> <p>In this case, as with many other programming issues, use whichever service type you are most familiar with. I do not believe the differences between and ASP.NET service and a Windows service would be larger than the difference in your own skill levels. </p> <p><strong>Logging</strong></p> <p>For logging, when using a Windows Service, I've had good experience with Log4Net. In terms of (the much more important) content. You should be logging a few things (if applicable). </p> <ol> <li>Recipient</li> <li>Time Sent</li> <li>Content Tags</li> <li>Current Message Queue</li> </ol> <p>1) <strong>Recipient</strong></p> <p>An integral part to log, because oftentimes errors in the 'service' are <em>actually</em> errors with the recipient. You can imagine the havoc that would occur if your test mailbox fills up and starts rejecting messages.</p> <p>2) <strong>Time sent</strong></p> <p>Very important for obvious reasons. Most loggers time-stamp every message anyway though.</p> <p>3) <strong>Content tags</strong> </p> <p>If you are sending out some sort of customized modular content, then there will likely be a set of content tags based on their preferences ("VideoGames,StackOverflowNews,Lederhosen") this allows you to track in a much more fine-grained manner what could be wrong with a certain class of emails that fail.</p> <p>4) <strong>Current Message Queue</strong></p> <p>Many of the problems can be enlightened by logging this value every time. It shows you the times when your program is wildly slow, and it also shows you when it is curiously faster than normal (suspiciously empty queue). More problems will be illuminated by this one than by any others.</p> http://stackoverflow.com/questions/1080449/reverse-a-sentence-in-c/1080477#1080477 7 Answer by devinb for Reverse a sentence in C?? devinb 2009-07-03T18:57:29Z 2009-07-03T18:57:29Z <p>You could use recursion.</p> <pre><code> int ReverseString(char *rev) { if(*rev!='\0') { ReverseString(rev + 1); putchar(*rev); } return 1; } </code></pre> http://stackoverflow.com/questions/566358/error-handling-logging-strategy/1080190#1080190 1 Answer by devinb for Error handling/Logging strategy devinb 2009-07-03T17:09:22Z 2009-07-03T17:09:22Z <p><a href="http://stackoverflow.com/questions/782244/log4net-logging-what-have-you-found-to-be-useful/782693#782693">Log4net logging: What have you found to be useful?</a></p> <p><a href="http://stackoverflow.com/questions/296150/what-are-the-best-practices-to-log-an-error">What are the best practices to log an error?</a></p> <p><a href="http://stackoverflow.com/questions/576185/logging-best-practices">Logging Best Practices</a></p> <p><a href="http://stackoverflow.com/questions/779989/what-to-write-into-log-file">What To Write Into Log File?</a></p> <p><a href="http://stackoverflow.com/questions/701596/what-should-be-included-in-the-state-of-the-art-error-and-exception-handling-stra">What should be included in the state of the art error and exception handling strategies?</a></p> <p><a href="http://stackoverflow.com/questions/967970/what-information-should-i-be-logging-in-my-web-app">What information should I be logging in my web app?</a></p> <p>Logging is a very critical part of every application, so it is important that you do it well. </p> http://stackoverflow.com/questions/782244/log4net-logging-what-have-you-found-to-be-useful/782693#782693 1 Answer by devinb for Log4net/Logging - What have you found to be useful? devinb 2009-04-23T17:10:22Z 2009-07-03T17:06:03Z <p>I'm basing my response on the excellent response of Robert Kozak, even though I don't quite use my logging the same way</p> <p>I use five types of log statements:</p> <ul> <li><strong>DEBUG</strong></li> <li><strong>INFO</strong></li> <li><strong>WARNING</strong></li> <li><strong>ERROR</strong></li> <li><strong>FATAL</strong></li> </ul> <p><strong>DEBUG</strong> statements are statements which are useful when you are still writing an application, and when you need a complete understanding of what/where your execution flow is. You can use DEBUG statements to measure the queue in front of a lock, or check usernames of users logging in, or even the parameters for a certain SQL call that's been troubling. DEBUG is for statements which are not generally needed to be known.</p> <p><strong>INFO</strong> should be used whenever there is information which will be very useful if something goes wrong, but does not indicate that anything has gone wrong. If you use too many INFO statements, your logs will become bloated and unuseful, so be careful. Use INFO for any critical information which you will need on error, and it is no where near where the error will be throw.</p> <p>Use <strong>WARN</strong> level if you have detected a recoverable, but still unexpected (at least a little expected, because you caught it). It indicates that your application MAY be in an unworkable state, but that you believe you can recover/continue on the current execution path. </p> <p><strong>ERROR</strong> warnings are for whenever you catch an unexpected exception. If you are recovering/retrying the current method, I'd suggest using WARN. If you are canceling/bailing out, use the ERROR. Even if your program can continue, ERROR means that you were attempting to do something and were rejected, and are therefore moving on to other things.</p> <p><strong>FATAL</strong> is for use when you catch something at a level far beneath where it was thrown, and you essentially have no idea what's going on. It means you are not even attempting to continue execution, you are simply going to log every possible bit of information at your disposal and then try to exit gracefully. FATAL errors are infrequently used because generally if you catch an error, you have enough information to try and continue execution. But in the scenarios where corruption might occur if you try and continue, log a FATAL error, and then run away.</p> <p><hr /></p> <p>As for where you're logging to. I usually like to log to a 'shared' folder on my app servers (be careful about permissioning so that they are not public) so that the logs are very easily accessible and they are always my first step for debugging. If possible, set it up so that any errors that are WARNING, ERROR, or FATAL are sent out by email so that you'll have 'advanced' warning.</p> <p>Cheers</p> http://stackoverflow.com/questions/1078975/how-to-understand-microsoft-dynamics-products/1079017#1079017 2 Answer by devinb for How to understand Microsoft Dynamics products? devinb 2009-07-03T11:50:08Z 2009-07-03T11:50:08Z <p>On their "<a href="http://www.microsoft.com/dynamics/purchase/default.mspx?mg%5Fid=10177&amp;wt.svl=10177" rel="nofollow">How To Buy</a>" form, there is a "<a href="http://www.microsoft.com/dynamics/request%5Fmore%5Finfo.mspx" rel="nofollow">Contact Us</a>"</p> <p>and I'm completely certain that if you contacted one of the sales reps, they would go into great detail and great length about the strengths and weaknesses of each product.</p> <p>Keep in mind, they'll be highlighting more strengths than weaknesses, and they'll be highlighting the weaknesses of the lesser priced products. But the sales reps are guaranteed to know the products inside out.</p> <p>Also, <a href="http://en.wikipedia.org/wiki/Microsoft%5FDynamics" rel="nofollow">Wikipedia</a> has little write-ups on each of them.</p> <p>They are mostly similar (sometimes identical) to the blurb on the MS website, but there's also some extra information there.</p> http://stackoverflow.com/questions/1065217/when-should-i-create-a-subsite-in-sharepoint/1065299#1065299 3 Answer by devinb for When should I Create a Subsite in SharePoint devinb 2009-06-30T18:43:57Z 2009-06-30T18:43:57Z <p>Subsites are incredibly useful in all the following scenarios</p> <ul> <li>This site has a different function from the main site.</li> </ul> <p>Assuming you are talking about an internal portal, generally you would want your helpdesk and your social committees to have their own subsite each. Because their information will almost never be relevant to each other, and they are both not commonly used.</p> <ul> <li>The site has a different target audience from the main site.</li> </ul> <p>You could have a portal for all the interns to look at. It isn't private, it doesn't have a separate permissions system, but it has all the "Getting Started at XYZ corporation" stuff, and it has the various training handouts and other information all put in one small place. </p> <ul> <li>The site has information which is not needed elsewhere.</li> </ul> <p>It is very helpful to classify all your information, and usually desirable to split it up as much as possible. If you have weekly status meetings, and someone creates and agenda, and there are minutes, and there are attendances and etc... then you can create a subsite to house only the information that relates to those meetings. You can then add a calendar and etc to it. That way, anyone wondering about the meetings need only go to the "Weekly Meeting" subsite, and all the information is laid out and tailored. </p> <p><hr /></p> <p>In general, you want to use subsites whenever there is a division of information. I would suggest that you fight against the urge to do most things in the root. In fact, I've often seen the root site mostly contain links to all the subsites. Because it is simpler to go to an area that is DEDICATED to the particular information that you need, rather than slog through the tons of information that would be stuck in the root.</p> http://stackoverflow.com/questions/1064447/how-important-is-size-in-an-application/1064504#1064504 1 Answer by devinb for How important is size in an application? devinb 2009-06-30T15:53:25Z 2009-06-30T15:53:25Z <p>As mentioned by Graham Lee, a great deal of this is very dependant on your users. If you are writing something that needs to be optimized to fit on the chip of a 68000 processor, then you'd better believe that program size matters. Assuming you're not programming 30 years ago, you probably won't run across that particular issue.</p> <p>But in general, you should be making your application as small as possible while still achieving the quality you want. That is to say, if your application is likely to be viewed on an 640x480 screen, then you don't need hi-res 6mg pngs for all your images. On the other hand, if your application is designed to be blown up on a big screen at conferences, then you probably want to upsize your images. </p> <p>Another option that is very common is creating installers with separate options ranging from full to minimal. That way you can allow your users to decide whether size matters to them. It allows you to create the pretty pretty version of your app, and a scaled back version that doesn't include tutorials or mp3 files of a soothing woman's voice telling you that you've push the wrong button.</p> <p>Know your users. And if you don't, then let them decide for themselves.</p> http://stackoverflow.com/questions/1063901/why-is-internal-protected-not-more-restrictive-than-internal/1063952#1063952 4 Answer by devinb for Why is internal protected not more restrictive than internal? devinb 2009-06-30T14:20:49Z 2009-06-30T14:20:49Z <p>I would consider this cheating, since Eric Lippert is on SO himself, but he wrote an excellent blog post that considers this issue.</p> <p><a href="http://blogs.msdn.com/ericlippert/archive/2008/04/24/why-can-t-i-access-a-protected-member-from-a-derived-class-part-three.aspx" rel="nofollow">Why Can't I Access A Protected Member From A Derived Class, Part Three</a> </p> <p>Ultimately, his answer is largely the same as those given by the posters here, but he ads some interesting reasoning behind the desgin of the language and the implementation of these features.</p> http://stackoverflow.com/questions/1063352/how-can-i-learn-to-express-myself-better/1063509#1063509 14 Answer by devinb for How can I learn to express myself better? devinb 2009-06-30T12:53:59Z 2009-06-30T13:05:58Z <p>These solutions won't work for everyone, and you won't need them forever, but they're a start.</p> <ul> <li><strong>Always write it out first</strong></li> </ul> <p>This may seem a little pointless when you've just got a quick one off question, but sometimes it will answer your own question for you. Even if it doesn't, once it has been written down, you can check it yourself and try to look for areas that might be unclear or a little vague to you. If a section is even a little foggy to you (the person who wrote it) then it's almost guaranteed to be absolute gibberish to someone else.</p> <ul> <li><strong>Try Using Diagrams</strong></li> </ul> <p>Obviously this depends on the type of concept that you are trying to articulate, but many people respond very strongly to a visual representation of what they are trying to learn. You might also find it easier yourself to articulate your thoughts in relation to a visual diagram of them. Things that seem very obscure when discussed orally become very clear when you relate them to an interconnected diagram. This works well when you are discussing the architecture of a multi-layered enterprize system. There are usually too many parts to do anything WITHOUT diagrams. </p> <ul> <li><strong>Use Examples (or analogies)</strong></li> </ul> <p>The more examples you use, the more chances your target has of understanding you. To use an analogy, if your goal is to climb onto a roof with a ladder, it doesn't matter if they land on every rung of the ladder, but they have to hit enough of them to get to the top. So, even if the person might not understand what you mean initially, if they understand your example then your earlier comments will make more sense. Even if they get lost, the example gives them an opportunity to get back onboard with what you are talking about.</p> <ul> <li><strong>Practice</strong></li> </ul> <p>Start writing more often if possible. Instead of talking to someone over and over until they understand, or repeatedly going to the one person who understands, try writing it out in an email to them instead. Another option would be if you have a company newsletter, try to write some pieces for that. You'll find that after reading what you wrote, (a couple of months later) there are certain things you do in your writing that really anger you. I myself use a lot of commas, and it really bothers me when I read it later.</p> <p>Ultimately, practice is probably the most important one. If you are only trying to articulate yourself in the 5-10 minutes a day when you NEED to, then you'll find that you aren't really getting any better. But if you focusing on articulating every technical problem you come across as if you had to describe it to someone else on your team, then I think you'll see some improvement almost immediately.</p> <p><em>I have a few more, but I need to think about them first =)</em></p> http://stackoverflow.com/questions/1050552/any-good-strategies-for-dealing-with-not-reproducible-bugs/1050693#1050693 15 Answer by devinb for Any good strategies for dealing with 'not reproducible' bugs? devinb 2009-06-26T19:03:11Z 2009-06-26T19:03:11Z <ul> <li><strong>Verify the steps used to produce the error</strong></li> </ul> <p>Oftentimes the people reporting the error, or the people reproducing the error, will do something wrong and not end up in the same state, even if they think they are. Try to walk it through with the reporting party. I've had a user INSIST that the admin privileges were not appearing correctly. I tried reproducing the error and was unable to. When we walked it through together, it turned out he was logging in as a regular user in that case.</p> <ul> <li><strong>Verify the system/environment used to produce the error</strong></li> </ul> <p>I've found many 'irreproducible' bugs and only later discovered that they ARE reproducible on Mac OS (10.4) Running X version of Safari. And this doesn't apply only to browsers and rendering, it can apply to anything; the other applications that are currently being run, whether or not the user is RDP or local, admin or user, etc... Make certain you get your environment as close to theirs as possible before calling it irreproducible.</p> <ul> <li><strong>Gather Screenshots and Logs</strong></li> </ul> <p>Once you have verified that the user is doing everything correctly and still getting a bug, and that you're doing exactly what they do, and you are NOT getting the bug, then it's time to see what you can actually do about it. Screenshots and logs are critical. You want to know exactly what it looks like, and exactly what was going on at the time.</p> <p>It is possible that the logs could contain some information that you can reproduce on your system, and once you can reproduce the exact scenario, you might be able to coax the error out of hiding. </p> <p>Screenshots also help with this, because you might discover that "X piece has loaded correctly, but it shouldn't have because it is dependent on Y" and that might give you a hint. Even if the user can describe what were doing, a screen shot could help even more.</p> <ul> <li><strong>Gather step-by-step description from the user</strong></li> </ul> <p>It's very common to blame the users, and not trust anything that they say (because they call a 'usercontrol' a 'thingy') but even though they might not know the names of what they're seeing, they will still be able to describe some of the behaviour they are seeing. This includes some minor errors that may have occured a few minutes BEFORE the real error occurred, or possibly slowness in certain things that are usually fast. All these things can be clues to help you narrow down which aspect is causing the error on their machine and not yours.</p> <ul> <li><strong>Try Alternate Approachs to produce the error</strong></li> </ul> <p>If all else fails, try looking at the section of code that is causing problems, and possibly refactor or use a workaround. If it is possible for you to create a scenario where you start with half the information already there (hopefully in UAT) ask the user to try that approach, and see if the error still occurs. Do you best to create alternate but similar approaches that get the error into a different light so that you can examine it better.</p> http://stackoverflow.com/questions/854084/production-release-checklist/854350#854350 0 Answer by devinb for Production Release Checklist devinb 2009-05-12T19:10:49Z 2009-06-26T18:32:58Z <p>This system that you have is likely going to still have many problems depending on the size of your application A few step by step notes</p> <ol> <li><p><strong>Backup Production Database</strong> <code>//Good</code></p></li> <li><p><strong>Restore Production Database to UAT</strong> <code>//Good</code></p></li> <li><p><strong>Run Database Alter Scripts</strong> <p> You should not begin your rollout until after you have completed your preparation steps. That means that ensuring you grab your latest Cruise Control build (verify that it built successfully as well) and move it to the locations it is needed, is a requirement BEFORE you begin changing anything. <p> A further step, you need to have a rollback script in place as well. At this point in your deployment, you have the database in a state that it out of sync with your deployed application, and you have not verified that the newest version is ready. Mind you, we're still in a UAT environment, but that doesn't mean we should have sloppy practices. </p></li> <li><p><strong>Grab latest buid from Cruise Control</strong> //As noted, this should be step 3.</p></li> <li><p><strong>Push build to UAT</strong> <p> I mentioned before that the latest build and component should be gathered before the alter scripts are run, but another note is that depending on the type of application you have, you should take the application offline before you run the alter scripts as well. You do not want a period of time in which the application is running against a different version database. Assuming there aren't overt schema changes, there might be data that has not been validated sneaking in, assuming that the validation is <em>about to be deployed</em> in the newest version of the application. <p>So, you should: <p>5.A <strong>Verify that you have a previous successful install handy for rollback purposes</strong> <p>5.B <strong>Take application down</strong> <p>5.C <strong>Run DB scripts</strong> <p>5.D <strong>verify that the DB scripts altered the right things (spot checks)</strong> <p>5.E <strong>install new version of application</strong></p></li> <li><p><strong>Run automated tests with Tool or test manually by hand</strong> <p> This step should take a while. Automated tests, as well as smoketesting by hand should be done by someone other than the person who deployed <em>as well as</em> the person who deployed the application. Unless it is a tiny app, you should leave the application in UAT for I'd say 6 hours or more. Enough time for ALL new features/bug fixes to be checked, as well as a general sense that the application is working.</p></li> <li><p><strong>Push UAT to Production</strong> <p> DO NOT EVER ASSUME THIS WILL GO WELL. Most important thing I have learned. A successful UAT deploy does not mean a successful production deploy. Make sure you have a long enough window to rollout and rollback. <p> e.g. If you have a 5 hour deploy, and a 5 hour rollback process, an 8 hour downtime window is NOT ENOUGH. You also need to identify escalation points if there is someone who needs to be informed/decide about whether or not a rollback will take place.</p></li> </ol> <p>I know that is long, but deployments are heavy business.</p> http://stackoverflow.com/questions/1050429/bug-tracking-for-legacy-physics-models/1050490#1050490 0 Answer by devinb for Bug tracking for legacy physics models devinb 2009-06-26T18:17:48Z 2009-06-26T18:17:48Z <p>This is a similar question.</p> <p><a href="http://stackoverflow.com/questions/936514/whats-the-most-effective-workflow-between-people-who-develop-algorithms-and-deve/937183#937183">What's the Most Effective Workflow Between People Who Develop Algorithsm and Developers?</a></p> <p>It does NOT speak to which bugtracker is best, but it does speak to how to convince the physicists to buy-in.</p> http://stackoverflow.com/questions/1048981/programmatically-cancel-a-sharepoint-workflow/1049203#1049203 1 Answer by devinb for Programmatically Cancel a SharePoint Workflow devinb 2009-06-26T13:40:45Z 2009-06-26T15:02:21Z <p>There are quite a few suggestions at this MSDN Thread:</p> <p><strong><a href="http://social.msdn.microsoft.com/Forums/en-US/sharepointworkflow/thread/e5fc79f8-ca3a-421a-ab8a-78fcb3365b46" rel="nofollow">Terminating a SharePoint Workflow Programatically</a></strong></p> <p>Here's a blog-post that succintly contains the exact same information: <a href="http://www.moss2007.be/blogs/vandest/archive/2007/12/27/cancelling-a-sharepoint-workflow.aspx" rel="nofollow">Cancelling a SharePoint Workflow</a></p> <p>Lastly, and most specifically, you need to use the static method: <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.workflow.spworkflowmanager.cancelworkflow.aspx" rel="nofollow"><code>SPWorkflowManager.CancelWorkflow(SPWorkflow workflowInstanceToBeCancelled)</code></a> </p> <p><strong>EDIT</strong> </p> <p>CancelWorkflow is a static class, so I've amended the call.</p> http://stackoverflow.com/questions/1046262/have-a-webpart-hide-its-self-if-the-user-doesnt-have-proper-permission/1046267#1046267 3 Answer by devinb for Have a webpart hide its self, if the user doesn't have proper permission devinb 2009-06-25T21:05:56Z 2009-06-26T12:09:41Z <p>You are going to want to look into <a href="http://www.sharepointblogs.com/michael/archive/2009/04/05/webparts-and-audiences-part-1-show-or-hide-a-web-part-based-on-audiences.aspx" rel="nofollow">Audience Targeting</a>.</p> <p>Basically audience targeting allows you to customize a page based on the group of the person viewing it, so that a manager will go to "home.aspx" and see a top-sheet results WebPart that includes some statistics, but if a regular developer logs on to the same page, the WebPart won't appear.</p> <p>You should be careful about confusing <a href="http://blog.solanite.com/keith/Lists/Posts/Post.aspx?List=11564265-6153-4557-aee2-72d1f62fa4c1&amp;ID=9" rel="nofollow">Audiences and Permissions</a>. Audience targeting does NOT change the permissions of the users involved. </p> <p><strong>EDIT</strong></p> <p>Thanks to Kirk for pointing out that audience targeting only works in MOSS and not WSS.</p> http://stackoverflow.com/questions/1045334/is-there-any-good-reason-to-convert-an-app-written-in-python-to-c/1045606#1045606 1 Answer by devinb for Is there any good reason to convert an app written in python to c#? devinb 2009-06-25T18:54:54Z 2009-06-25T18:54:54Z <p><strong>IF</strong> you are looking for reasons to convert them, I can think of a few. These don't necessarily mean you <em>should</em>, these are just possible reasons in the "recode" corner.</p> <ul> <li><strong>Maintainability</strong></li> </ul> <p>If you have a dev-shop that is primarily C# focused, then have python applications around may not be useful for maintainability reasons. It would mean that they need to keep python staffers around (assuming it's a complicated app) in order to maintain it. This probably isn't a restriction they want, especially if they don't intend to write <em>anything</em> in python from here on out.</p> <ul> <li><strong>Consistency</strong></li> </ul> <p>This sort of falls under maintainability, but it is of a different flavour. If they wanted to integrate part of this (python) application into a C# application, but not the whole thing, it's possible to write some boilerplate code, but again, that's messy to maintain. Ultimately, you would want to code of P_App to be able to be seamlessly integrated into C#_App, and not have to run them separately. </p> <p><hr /></p> <p>On the other side of the coin, it is fair to point out that you are throwing time and money at converting something which already works. </p> http://stackoverflow.com/questions/1043750/how-concerned-are-you-with-the-why-when-discussing-requirements/1044192#1044192 1 Answer by devinb for How concerned are you with the "why" when discussing requirements? devinb 2009-06-25T14:14:06Z 2009-06-25T14:14:06Z <p>First of all, there's two important and critical parts of <strong>WHY</strong> that are somewhat vague in your question. And there are very different answers to each of them.</p> <p><em>This answer is mostly for consultants, and people developing software for other companies rather than your own</em></p> <ul> <li><strong>"Why Are you Doing This?" (Who is it helping??)</strong></li> </ul> <p>This <strong>is not</strong> a question a coder should be concerned with. As was mentioned in a different answer, this is a question for a business analyst. You can discuss this if you wish, but you need to be aware that your 'programmer knows best' attitude is actually WRONG in this case.</p> <p>The world doesn't work the way that we see it working. Programmers frequently think in a fundamentally different way that the users of this product may think, and unless you have studied the user base, then the client is likely far more knowledgeable in this area. </p> <p>If you are curious, you can ask. But this isn't something to be fighting against. It doesn't matter if you think the feature is pointless, if they are firm in the requirements, it is your job to do it.</p> <ul> <li><strong>Why Are You Doing It This Way?" (Instead of XYZ approach)</strong></li> </ul> <p>This <strong>is</strong> a question which you can ask. Because you aren't critiquing the functionality itself (per sé) but rather the implementation specified. If you see some functionality, and it doesn't seem to make sense to you, it is your job to find out what their purpose is, and perhaps find a <em>different way to implement or enact <strong>their goals</em></strong>. I want to stress their goals because it is always important that you are concern with what the client wants. Even if (as noted in the first section) what they want doesn't make sense to you. </p> <p>On this front, if you see a way to enact what they want, but in a different (arguably more sensible) way, then it is worth bringing up. But as with before, you must be aware that this is not your product. You mentioned that you didn't want to implement a feature that benefits almost no one, but because you are not the business analyst, then you are not the one who should be weighing the cost/benefit analysis of this.</p> <p><hr /></p> <p>You should always seek to do the best job possible, and that includes doing your best to wrap your head around what they want and why they want it, but at the end of the line your <em>job</em> is to focus on how to implement it.</p> http://stackoverflow.com/questions/610623/adding-comments-to-makefile/610670#610670 1 Answer by devinb for Adding comments to Makefile devinb 2009-03-04T13:56:44Z 2009-06-24T21:26:07Z <p>A simple Google search would provide <a href="http://www.google.ca/search?q=Echo%2BTo%2BComments%2BIn%2BMakefile" rel="nofollow">these</a> results.</p> <p>Also, <a href="http://www.faqs.org/docs/ldev/0130091154%5F134.htm" rel="nofollow">this</a> link has the answer </p> <p>And the posters above gave the correct answers. Use Echo.</p> http://stackoverflow.com/questions/1063901/why-is-internal-protected-not-more-restrictive-than-internal/1063920#1063920 Comment by on Why is internal protected not more restrictive than internal? 2009-09-28T16:57:50Z 2009-09-28T16:57:50Z It occurs to me, (months later of course) that the setter is still accessible &quot;internally&quot; which is in some ways less restrictive than protected. To fully make it an internal getter and a protected setter, you would have to have protected void SetIP(bool value) and internal bool GetIP() and then have a private bool _IP http://stackoverflow.com/questions/1468847/gc-collect-on-only-generation-2-large-object-heap/1468951#1468951 Comment by on GC.Collect on only generation 2 & large object heap 2009-09-23T23:36:01Z 2009-09-23T23:36:01Z Setting <code>myVar = null</code> doesn't accomplish anything. See the bottom of <a href="http://www.bryancook.net/2008/05/net-garbage-collection-behavior-for.html" rel="nofollow">bryancook.net/2008/05/&hellip;</a> http://stackoverflow.com/questions/1468847/gc-collect-on-only-generation-2-large-object-heap/1468951#1468951 Comment by on GC.Collect on only generation 2 & large object heap 2009-09-23T23:33:41Z 2009-09-23T23:33:41Z Your explanation is a great overview of how the GC works, but it doesn't clarify why there is a constraint that precludes a <i>strictly</i> gen 1 or gen 2 collection. http://stackoverflow.com/questions/1468847/gc-collect-on-only-generation-2-large-object-heap Comment by on GC.Collect on only generation 2 & large object heap 2009-09-23T22:34:34Z 2009-09-23T22:34:34Z I'm aware of that. Basically, you NEVER want to manually force a GC, because they are intensive operations. Since that is the case, when I see the need to run a GC, I would want it to only run against the specific generation, rather than do a full GC. I'm trying to be more particular about my use of the GC, and it isn't letting me. http://stackoverflow.com/questions/1468847/gc-collect-on-only-generation-2-large-object-heap/1468852#1468852 Comment by on GC.Collect on only generation 2 & large object heap 2009-09-23T22:32:42Z 2009-09-23T22:32:42Z Thanks! Please note, I've edited my question to also ask why it is constrained in this way. http://stackoverflow.com/questions/1458896/how-to-detect-if-a-windows-version-is-legal-or-not/1458915#1458915 Comment by on How to detect if a Windows version is legal or not? 2009-09-22T12:17:40Z 2009-09-22T12:17:40Z (-1) This is a comment, not an answer. You haven't provided any help on accomplishing what he asked you how to accomplish. http://stackoverflow.com/questions/1434981/need-help-fixing-css-for-ie6/1434997#1434997 Comment by on need help fixing css for IE6 >_< 2009-09-16T19:56:14Z 2009-09-16T19:56:14Z (-1) Does not solve the issue. Also, obnoxious. http://stackoverflow.com/questions/1435108/does-lists-in-c-support-slicing-like-in-python/1435117#1435117 Comment by on Does Lists in C# support slicing like in Python? 2009-09-16T19:54:48Z 2009-09-16T19:54:48Z You should add a comment, or flag for moderator attention instead of posting an answer. http://stackoverflow.com/questions/1373090/does-it-make-sense-to-move-to-64-bit-for-a-typical-mac-os-x-application/1373189#1373189 Comment by on Does It Make Sense to Move to 64-bit for a "Typical" Mac OS X Application? 2009-09-03T14:05:42Z 2009-09-03T14:05:42Z I would say provide both download options and have an &quot;I'm not sure!&quot; link directly beneath them. In terms of the performance considerations, I must admit (as you've probably guessed) that I do not know. http://stackoverflow.com/questions/1373090/does-it-make-sense-to-move-to-64-bit-for-a-typical-mac-os-x-application/1373189#1373189 Comment by on Does It Make Sense to Move to 64-bit for a "Typical" Mac OS X Application? 2009-09-03T13:26:25Z 2009-09-03T13:26:25Z Well, if you convert to 64bit and they have 32bit, then you've lost them as a customer. If you are that worried about it, you could have a 'default' download of one of them, and have the other one as an option further down on the page. Alternately you could give instructions as to how to determine which one you are. I don't know what kind of users you have (technical or non), but the LAST thing you want is hardware incompatibilites, and you want your users to have the option that fits them with the lowest inconvienience. http://stackoverflow.com/questions/365615/in-net-which-loop-runs-faster-for-or-foreach/365658#365658 Comment by on In .NET which loop runs faster for or foreach 2009-09-03T13:06:36Z 2009-09-03T13:06:36Z @Hardwareguy: Once you know that for is almost imperceptably faster, why shouldn't you start using it in general? It doesn't take extra time. http://stackoverflow.com/questions/1362753/sharepoint-updatelistitems-list-not-updating/1362835#1362835 Comment by on Sharepoint UpdateListItems list not updating 2009-09-02T12:09:39Z 2009-09-02T12:09:39Z Cool! Thanks for the update. You should add your own answer to the question. Either edit it into the question itself, click &quot;post an answer&quot; at the bottom. http://stackoverflow.com/questions/1364056/how-to-keep-being-productive-when-you-are-tired Comment by on How to keep being productive when you are tired? 2009-09-01T19:13:45Z 2009-09-01T19:13:45Z It is a common issue amongst everyone. We all get the flu, that doesn't make medical questions appropriate here. http://stackoverflow.com/questions/1362753/sharepoint-updatelistitems-list-not-updating Comment by on Sharepoint UpdateListItems list not updating 2009-09-01T15:08:34Z 2009-09-01T15:08:34Z Are you using C# to process the batch? Are you using the &quot;ProcessBatchData&quot; function? If you are, what is the result string? http://stackoverflow.com/questions/1362753/sharepoint-updatelistitems-list-not-updating Comment by on Sharepoint UpdateListItems list not updating 2009-09-01T14:23:20Z 2009-09-01T14:23:20Z Could you post a code snippet?