User apathetic - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T14:29:22Z http://stackoverflow.com/feeds/user/10046 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1379698/tfs-2008-remove-file-from-source-control-but-leave-it-in-the-project/1379753#1379753 1 Answer by apathetic for TFS 2008, remove file from source control but leave it in the project apathetic 2009-09-04T14:51:24Z 2009-09-04T14:51:24Z <p>By adding a new file to solution explorer, you will get the little plus sign indicating it is due to be added to source control. Then, right-click and choose "undo pending changes". This will cancel the add but leave the file in your project.</p> <p>If that doesn't work I suggest one of the following methods:</p> <ul> <li>Use the Attrib task from the <a href="http://msbuildtasks.tigris.org/" rel="nofollow">MSBuild Community Tasks</a> project to remove the read only flag.</li> <li>Use the <a href="http://msdn.microsoft.com/en-us/library/x8zx72cd.aspx" rel="nofollow">Exec task</a> in MSBuild to invoke <a href="http://msdn.microsoft.com/en-us/library/56f7w6be.aspx" rel="nofollow">tf.exe</a> and checkout the file.</li> </ul> http://stackoverflow.com/questions/1326445/is-there-a-good-tutorial-on-msbuild-scripts/1329502#1329502 0 Answer by apathetic for Is there a good tutorial on MSBuild scripts? apathetic 2009-08-25T16:45:20Z 2009-08-25T16:45:20Z <p>I find this book pretty handy: <a href="http://rads.stackoverflow.com/amzn/click/1590596528" rel="nofollow">http://www.amazon.com/Deploying-NET-Applications-Learning-ClickOnce/dp/1590596528/</a></p> http://stackoverflow.com/questions/1315424/how-to-develop-windows-applications/1315457#1315457 4 Answer by apathetic for How to Develop Windows Applications apathetic 2009-08-22T08:01:57Z 2009-08-22T08:01:57Z <p>I suggest you learn <a href="http://en.wikipedia.org/wiki/C%5FSharp%5F%28programming%5Flanguage%29" rel="nofollow">C#</a> and <a href="http://en.wikipedia.org/wiki/Windows%5FPresentation%5FFoundation" rel="nofollow">WPF</a>. For that you will need <a href="http://www.microsoft.com/express/vcsharp/" rel="nofollow">Visual Studio</a>.</p> http://stackoverflow.com/questions/1315400/is-there-a-ready-utility-for-web-sites-to-collect-user-information/1315443#1315443 1 Answer by apathetic for Is there a ready utility for web sites to collect user information? apathetic 2009-08-22T07:57:29Z 2009-08-22T07:57:29Z <p>You can create a form using <a href="http://www.w3.org/TR/html4/" rel="nofollow">HTML</a>. You can give it a professional-looking UI using <a href="http://www.w3.org/TR/CSS2/" rel="nofollow">CSS</a>. You will also need somewhere to store the data, e.g. a database, and some server-side code to query the database, e.g. PHP or ASP.NET.</p> <p>This question is WAY to broad to be succintly answered. Almost every question on StackOverflow is to do with "collecting information".</p> http://stackoverflow.com/questions/1315376/regular-expression-for-date-time-format-mm-dd-yy-hhmmss-am-pm-in-asp-net-regu/1315381#1315381 1 Answer by apathetic for Regular expression for date time format "MM/DD/YY HH:mm:ss AM/PM" in asp.net regular expression validator apathetic 2009-08-22T07:21:28Z 2009-08-22T07:21:28Z <p>I highly recommend that you do not use regex for this. Instead, you should create your own validator (inherit BaseValidator) and use DateTime.TryParseExact to check that the value can be converted to DateTime.</p> http://stackoverflow.com/questions/1309164/equivalent-of-date-time-macros-in-c/1309394#1309394 2 Answer by apathetic for Equivalent of __DATE__, __TIME__ macros in C# apathetic 2009-08-20T23:28:04Z 2009-08-20T23:28:04Z <p>I recommend customising your build script to write the date time into the file. The <a href="http://msbuildtasks.tigris.org/" rel="nofollow">MSBuild Community Tasks</a> project has a Time task that can be used for exactly this.</p> http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/104644#104644 74 Answer by apathetic for What non-programming books should programmers read? apathetic 2008-09-19T19:10:47Z 2009-08-19T13:33:11Z <p><a href="http://rads.stackoverflow.com/amzn/click/055305340X" rel="nofollow">A Brief History of Time</a> - Stephen Hawking</p> <p><img src="http://ecx.images-amazon.com/images/I/71HADMSE3JL.%5FSL500%5FAA240%5F.gif" alt="A Brief History Of Time - Stephen Hawking" /></p> http://stackoverflow.com/questions/1296610/recommended-reading-on-how-the-web-works/1296664#1296664 0 Answer by apathetic for Recommended reading on 'how the web works' apathetic 2009-08-18T21:35:36Z 2009-08-18T21:35:36Z <p>I also recommend reading <em>Weaving The Web</em> by Tim Berners-Lee for a historical grounding of how and why the various components of the web were originally designed.</p> http://stackoverflow.com/questions/1296610/recommended-reading-on-how-the-web-works/1296647#1296647 0 Answer by apathetic for Recommended reading on 'how the web works' apathetic 2009-08-18T21:33:24Z 2009-08-18T21:33:24Z <p>I highly recommend sitting down and writing an application in a slightly lower lever manner, e.g. CGI scripting with PHP or Python. This will give you a much better grounding in what is really happening without the abstraction of ASP.NET, without getting TOO low level.</p> http://stackoverflow.com/questions/1285052/how-long-does-my-code-take-to-run/1285072#1285072 0 Answer by apathetic for How long does my code take to run? apathetic 2009-08-16T19:03:14Z 2009-08-16T19:03:14Z <p>I recommend using a profiling tool such as <a href="http://www.red-gate.com/products/ants%5Fperformance%5Fprofiler/index.htm" rel="nofollow">ANTS</a> to test the speed of your application and find slow code. This will allow you to do a line-by-line test of execution times.</p> http://stackoverflow.com/questions/1282201/how-to-add-custom-text-input-to-images-dynamically/1282262#1282262 1 Answer by apathetic for How to add custom text input to images dynamically apathetic 2009-08-15T16:33:30Z 2009-08-15T16:33:30Z <p>There are plenty of options, depending on which technology you have available, and what you want to do with the image once it has been generated.</p> <p>My recommendation is to generate the image using server-side technology. For example, if you have .NET available you could use the System.Drawing classes to create the image. </p> <p>Other solutions include CSS positioning, Flash, or SVG, none of which would required server-side technology, but may limit the subsequent use of the image.</p> http://stackoverflow.com/questions/1277996/how-do-i-use-the-membership-methods-in-the-database-layer/1278017#1278017 0 Answer by apathetic for How do I use the Membership methods in the database layer? apathetic 2009-08-14T14:00:34Z 2009-08-14T14:00:34Z <p>System.Web.Security is in the System.Web assembly.</p> http://stackoverflow.com/questions/1263326/break-long-code-lines-in-visual-studio-2008/1263336#1263336 3 Answer by apathetic for Break Long code lines in Visual Studio 2008 apathetic 2009-08-11T22:29:37Z 2009-08-11T22:29:37Z <p>Hit the enter key.</p> <pre><code>public static somemethod(param1, param2, param3, more params etc...) </code></pre> <p>...is perfectly valid.</p> http://stackoverflow.com/questions/1239478/internet-explorer-and-select-tag-problem/1239516#1239516 2 Answer by apathetic for Internet Explorer and <select> tag problem apathetic 2009-08-06T15:06:09Z 2009-08-06T15:06:09Z <p>My suggestion would be to set another flag while the select box has focus. Do not close the div while the flag is set.</p> http://stackoverflow.com/questions/1232527/is-it-possible-to-have-a-global-queue-when-using-teambuild 0 Is it possible to have a "global" queue when using TeamBuild? apathetic 2009-08-05T10:57:18Z 2009-08-05T14:59:41Z <p>When I queue two builds from the same Team Project, the first one starts immediately and the second is queued to run after the first is complete. However, when queuing two builds from different projects, they both start immediately. Is it possible to use this "queue" feature for builds from more than one project? I would like every build to be queued until the build server is idle.</p> http://stackoverflow.com/questions/1221985/how-to-validate-a-user-name-with-regex/1222007#1222007 3 Answer by apathetic for How to validate a user name with regex? apathetic 2009-08-03T12:15:02Z 2009-08-03T12:15:02Z <p>I suggest writing some unit tests to put the Regex through it's paces. This will also help a few months from now when you find a problem with the Regex and need to update it.</p> http://stackoverflow.com/questions/1218542/xslt-add-text-inside-html-tag/1218564#1218564 2 Answer by apathetic for XSLT: Add text inside html tag apathetic 2009-08-02T09:58:15Z 2009-08-02T09:58:15Z <p>You should not attempt to write this as literal text, instead look at xsl:element and xsl:attribute. Rough example:</p> <pre><code>&lt;xsl:element name="li"&gt; &lt;xsl:attribute name="class"&gt; &lt;xsl:value-of select="$selected" /&gt; &lt;/xsl:attribute&gt; &lt;/xsl:element&gt; </code></pre> <p><a href="http://www.w3.org/TR/xslt#section-Creating-Elements-and-Attributes" rel="nofollow">Full documentation here.</a></p> http://stackoverflow.com/questions/1211881/why-get-method-is-faster-than-post/1213596#1213596 0 Answer by apathetic for Why GET method is faster than POST? apathetic 2009-07-31T16:38:19Z 2009-07-31T16:38:19Z <p>You should think of GET as "a place to go", and POST as "doing something". For example, a search form should be submitted using GET because the search result page is a "place" and the user will want to bookmark it or retrieve it from their history at a later date. If you submit the form using POST the user can only recreate the page by submitting the form again. On the other hand, if you were to perform an action such as clicking a delete button, you would not want to submit this with GET, as the action would be repeated whenever the user returned to the URL.</p> http://stackoverflow.com/questions/1193425/what-is-a-datetime-as-opposed-to-just-a-datetime-in-c/1193479#1193479 2 Answer by apathetic for What is a "DateTime?" as opposed to just a DateTime in C#? apathetic 2009-07-28T11:25:28Z 2009-07-28T11:25:28Z <p>DateTime? is another way of writing Nullable&lt;DateTime&gt;. I suggest you read this to learn more about nullable: </p> <p><a href="http://msdn.microsoft.com/en-us/library/b3h38hb0.aspx" rel="nofollow">Nullable(T) Structure</a></p> http://stackoverflow.com/questions/1190953/common-mistakes-for-css-designers-to-avoid/1191016#1191016 12 Answer by apathetic for Common mistakes for CSS-designers to avoid? apathetic 2009-07-27T22:28:10Z 2009-07-28T08:15:37Z <p>Failing to understand the cascade and inheritance thus ending up with a lot of repeated code.</p> http://stackoverflow.com/questions/1190680/visual-studio-with-tfs-history-other-than-solution-explorer/1191216#1191216 2 Answer by apathetic for Visual Studio (with TFS) history other than solution explorer? apathetic 2009-07-27T23:37:40Z 2009-07-27T23:37:40Z <p>Double-click the error message to open the file. Then File > Source Control > Annotate to put a list of revisions down the left hand side. You can then click a revision number to get the details.</p> http://stackoverflow.com/questions/1191090/themes-skins-doesnt-work-any-more-in-vs2008/1191102#1191102 1 Answer by apathetic for Themes/Skins doesn't work any more in VS2008 apathetic 2009-07-27T22:58:57Z 2009-07-27T22:58:57Z <p>Are you sure the theme is specified in web.config?</p> http://stackoverflow.com/questions/1159654/asp-net-outputcache-and-postbacks/1159855#1159855 0 Answer by apathetic for ASP.NET OutputCache and postbacks apathetic 2009-07-21T15:15:24Z 2009-07-21T15:15:24Z <p>What you need is post-cache substitution:</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms227429.aspx" rel="nofollow">Dynamically Updating Portions of a Cached Page</a></p> http://stackoverflow.com/questions/1151151/how-would-i-build-an-application-that-can-diagnose-itself-at-runtime 1 How would I build an application that can diagnose itself at runtime? apathetic 2009-07-19T23:22:24Z 2009-07-20T01:39:59Z <p>I have an application that uses a variety of external resources (web services, filesystem, database), and therefore can be quite difficult to configure. The plan is to add a self-diagnostic tool to the application so it can report problems with the configuration and allow the user to correct it. Are there any design patterns, libraries, examples, etc, that I should consider when designing such a feature?</p> <p>The application is written in C# and ASP.NET.</p> http://stackoverflow.com/questions/1098296/are-regular-expressions-worth-the-hassle/1098433#1098433 1 Answer by apathetic for Are regular expressions worth the hassle? apathetic 2009-07-08T14:24:05Z 2009-07-08T14:24:05Z <p>I would just like to add that unit testing is the ideal way to make your regular expressions maintainable. I consider Regex an essential developer skill that is always a practical alternative to writing many lines of string manipulation code.</p> http://stackoverflow.com/questions/1096809/are-there-master-templates-in-html/1097035#1097035 0 Answer by apathetic for are there master templates in html? apathetic 2009-07-08T09:20:43Z 2009-07-08T09:20:43Z <p>I highly recommend Dreamweaver templates. The output is static HTML and will work on any server: <a href="http://kb2.adobe.com/cps/138/tn_13876.html" rel="nofollow">http://kb2.adobe.com/cps/138/tn_13876.html</a></p> http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/112225#112225 37 Answer by apathetic for What is the worst interviewee answer? apathetic 2008-09-21T21:23:17Z 2009-06-14T04:48:38Z <p>Q: "So, why do you want this job?"</p> <p>A: "Well, I don't really have anything else to do."</p> http://stackoverflow.com/questions/67368/how-do-you-update-a-live-busy-web-site-in-the-politest-way-possible 9 How do you update a live, busy web site in the politest way possible? apathetic 2008-09-15T21:51:56Z 2009-06-01T10:12:20Z <p>When you roll out changes to a live web site, how do you go about checking that the <em>live</em> system is working correctly? Which tools do you use? Who does it? Do you block access to the site for the testing period? What amount of downtime is acceptable?</p> http://stackoverflow.com/questions/900261/how-to-declare-and-iterate-an-array-in-xslt/900290#900290 1 Answer by apathetic for How to declare and iterate an array in XSLT? apathetic 2009-05-22T22:34:31Z 2009-05-22T22:44:26Z <p>Ideally you would store the list of states in your XML file and just use XSLT to iterate them.</p> <p>Update: If you can't edit the XML, you could look at using the <a href="http://www.w3.org/TR/xslt#function-document" rel="nofollow">document function</a> to load data from a second data file:</p> http://stackoverflow.com/questions/167531/is-it-ok-to-use-a-css-reset-stylesheet/170126#170126 1 Answer by apathetic for Is it ok to use a css reset stylesheet? apathetic 2008-10-04T11:01:14Z 2008-10-04T11:01:14Z <p>I personally do not use a reset stylesheet, and would not allow anyone on my team to do so. Anyone who is sufficiently competent with CSS should just be able to set up their styles correctly from the start, without the need for this extra stylesheet, which just adds bulk to the page. One of the linked answers above sums it up nicely - why reset a bunch of styles just to override them with your own values?</p> http://stackoverflow.com/questions/1379698/tfs-2008-remove-file-from-source-control-but-leave-it-in-the-project/1379753#1379753 Comment by apathetic on TFS 2008, remove file from source control but leave it in the project apathetic 2009-09-07T13:43:46Z 2009-09-07T13:43:46Z Actually, it's irrelevant whether the file is in source control because a script is being run to create the file. The files that are being put in place by the script will still be fully versioned. http://stackoverflow.com/questions/1379698/tfs-2008-remove-file-from-source-control-but-leave-it-in-the-project/1379753#1379753 Comment by apathetic on TFS 2008, remove file from source control but leave it in the project apathetic 2009-09-04T14:59:08Z 2009-09-04T14:59:08Z Yeah, I would suggest deleting the file from source control first. http://stackoverflow.com/questions/1335116/how-to-insert-values-into-database Comment by apathetic on How to insert values into database? apathetic 2009-08-26T14:37:34Z 2009-08-26T14:37:34Z Sounds too much like homework. http://stackoverflow.com/questions/1315190/reading-text-file-using-script Comment by apathetic on Reading text file using script? apathetic 2009-08-22T07:48:33Z 2009-08-22T07:48:33Z Where is the file? What do you want to do with the information? Does it really need to be Javascript? http://stackoverflow.com/questions/1315400/is-there-a-ready-utility-for-web-sites-to-collect-user-information Comment by apathetic on Is there a ready utility for web sites to collect user information? apathetic 2009-08-22T07:46:40Z 2009-08-22T07:46:40Z What information? When do you want to collect it? Where do you want to store it? http://stackoverflow.com/questions/1315376/regular-expression-for-date-time-format-mm-dd-yy-hhmmss-am-pm-in-asp-net-regu/1315384#1315384 Comment by apathetic on Regular expression for date time format "MM/DD/YY HH:mm:ss AM/PM" in asp.net regular expression validator apathetic 2009-08-22T07:35:01Z 2009-08-22T07:35:01Z The question was for MM/DD not DD/MM. If you are going to attempt to solve this in regex it would make sense to actually match the correct format. http://stackoverflow.com/questions/1309374/what-is-the-best-approach-to-populate-a-masterpage-control-which-is-dependent-on/1309397#1309397 Comment by apathetic on What is the best approach to populate a masterpage control which is dependent on the content page? apathetic 2009-08-20T23:32:31Z 2009-08-20T23:32:31Z Good solution. You would need to cast this.Page to IMyTaggablePage in order to call the method. http://stackoverflow.com/questions/1296695/how-to-make-a-windows-like-calculator-in-php Comment by apathetic on How to make a windows like Calculator in PHP? apathetic 2009-08-18T22:02:40Z 2009-08-18T22:02:40Z No one is here to write the code for you. You are asking for PHP help but are yet to post a single line of PHP. http://stackoverflow.com/questions/1296695/how-to-make-a-windows-like-calculator-in-php Comment by apathetic on How to make a windows like Calculator in PHP? apathetic 2009-08-18T21:44:19Z 2009-08-18T21:44:19Z Where is the PHP code? http://stackoverflow.com/questions/1284517/easily-host-a-mediawiki-locally Comment by apathetic on Easily host a MediaWiki locally? apathetic 2009-08-16T16:40:37Z 2009-08-16T16:40:37Z What is your reasoning for not wanting a database? You can install MySQL quite easily on your local PC and use MediaWiki. http://stackoverflow.com/questions/1284680/warning-about-amazon-ec2-urgent-if-you-use-this-service Comment by apathetic on Warning about Amazon EC2... Urgent if you use this service!!! apathetic 2009-08-16T16:38:10Z 2009-08-16T16:38:10Z Not a question. http://stackoverflow.com/questions/1238204/pdf-download-problem/1238254#1238254 Comment by apathetic on pdf download problem apathetic 2009-08-06T12:18:32Z 2009-08-06T12:18:32Z Would someone like to explain why this was downvoted? http://stackoverflow.com/questions/117337/can-i-unshelve-to-a-different-branch-in-tfs-2008/117376#117376 Comment by apathetic on Can I unshelve to a different branch in tfs 2008? apathetic 2009-08-06T10:57:17Z 2009-08-06T10:57:17Z Yep, the power tools SHOULD let you do this, but unfortunately the merge goes horribly wrong each time so it's next to useless. http://stackoverflow.com/questions/1232527/is-it-possible-to-have-a-global-queue-when-using-teambuild Comment by apathetic on Is it possible to have a "global" queue when using TeamBuild? apathetic 2009-08-05T12:39:41Z 2009-08-05T12:39:41Z Quite so. Another way of asking the question is &quot;how can I share build agents across projects?&quot; http://stackoverflow.com/questions/1224796/what-could-cause-the-same-browser-on-different-pcs-to-render-the-same-html-differ Comment by apathetic on What could cause the same browser on different PCs to render the same HTML differently? apathetic 2009-08-03T22:17:00Z 2009-08-03T22:17:00Z Font size can also affect line height even if you don't have any text.