User apathetic - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T14:29:22Zhttp://stackoverflow.com/feeds/user/10046http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1379698/tfs-2008-remove-file-from-source-control-but-leave-it-in-the-project/1379753#13797531Answer by apathetic for TFS 2008, remove file from source control but leave it in the projectapathetic2009-09-04T14:51:24Z2009-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#13295020Answer by apathetic for Is there a good tutorial on MSBuild scripts?apathetic2009-08-25T16:45:20Z2009-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#13154574Answer by apathetic for How to Develop Windows Applicationsapathetic2009-08-22T08:01:57Z2009-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#13154431Answer by apathetic for Is there a ready utility for web sites to collect user information?apathetic2009-08-22T07:57:29Z2009-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#13153811Answer by apathetic for Regular expression for date time format "MM/DD/YY HH:mm:ss AM/PM" in asp.net regular expression validatorapathetic2009-08-22T07:21:28Z2009-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#13093942Answer by apathetic for Equivalent of __DATE__, __TIME__ macros in C#apathetic2009-08-20T23:28:04Z2009-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#10464474Answer by apathetic for What non-programming books should programmers read?apathetic2008-09-19T19:10:47Z2009-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#12966640Answer by apathetic for Recommended reading on 'how the web works'apathetic2009-08-18T21:35:36Z2009-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#12966470Answer by apathetic for Recommended reading on 'how the web works'apathetic2009-08-18T21:33:24Z2009-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#12850720Answer by apathetic for How long does my code take to run?apathetic2009-08-16T19:03:14Z2009-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#12822621Answer by apathetic for How to add custom text input to images dynamicallyapathetic2009-08-15T16:33:30Z2009-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#12780170Answer by apathetic for How do I use the Membership methods in the database layer?apathetic2009-08-14T14:00:34Z2009-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#12633363Answer by apathetic for Break Long code lines in Visual Studio 2008apathetic2009-08-11T22:29:37Z2009-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#12395162Answer by apathetic for Internet Explorer and <select> tag problemapathetic2009-08-06T15:06:09Z2009-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-teambuild0Is it possible to have a "global" queue when using TeamBuild?apathetic2009-08-05T10:57:18Z2009-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#12220073Answer by apathetic for How to validate a user name with regex?apathetic2009-08-03T12:15:02Z2009-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#12185642Answer by apathetic for XSLT: Add text inside html tagapathetic2009-08-02T09:58:15Z2009-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><xsl:element name="li">
<xsl:attribute name="class">
<xsl:value-of select="$selected" />
</xsl:attribute>
</xsl:element>
</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#12135960Answer by apathetic for Why GET method is faster than POST?apathetic2009-07-31T16:38:19Z2009-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#11934792Answer by apathetic for What is a "DateTime?" as opposed to just a DateTime in C#?apathetic2009-07-28T11:25:28Z2009-07-28T11:25:28Z<p>DateTime? is another way of writing Nullable<DateTime>. 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#119101612Answer by apathetic for Common mistakes for CSS-designers to avoid?apathetic2009-07-27T22:28:10Z2009-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#11912162Answer by apathetic for Visual Studio (with TFS) history other than solution explorer?apathetic2009-07-27T23:37:40Z2009-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#11911021Answer by apathetic for Themes/Skins doesn't work any more in VS2008apathetic2009-07-27T22:58:57Z2009-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#11598550Answer by apathetic for ASP.NET OutputCache and postbacksapathetic2009-07-21T15:15:24Z2009-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-runtime1How would I build an application that can diagnose itself at runtime?apathetic2009-07-19T23:22:24Z2009-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#10984331Answer by apathetic for Are regular expressions worth the hassle?apathetic2009-07-08T14:24:05Z2009-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#10970350Answer by apathetic for are there master templates in html?apathetic2009-07-08T09:20:43Z2009-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#11222537Answer by apathetic for What is the worst interviewee answer?apathetic2008-09-21T21:23:17Z2009-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-possible9How do you update a live, busy web site in the politest way possible?apathetic2008-09-15T21:51:56Z2009-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#9002901Answer by apathetic for How to declare and iterate an array in XSLT?apathetic2009-05-22T22:34:31Z2009-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#1701261Answer by apathetic for Is it ok to use a css reset stylesheet?apathetic2008-10-04T11:01:14Z2008-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#1379753Comment by apathetic on TFS 2008, remove file from source control but leave it in the projectapathetic2009-09-07T13:43:46Z2009-09-07T13:43:46ZActually, 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#1379753Comment by apathetic on TFS 2008, remove file from source control but leave it in the projectapathetic2009-09-04T14:59:08Z2009-09-04T14:59:08ZYeah, I would suggest deleting the file from source control first.http://stackoverflow.com/questions/1335116/how-to-insert-values-into-databaseComment by apathetic on How to insert values into database?apathetic2009-08-26T14:37:34Z2009-08-26T14:37:34ZSounds too much like homework.http://stackoverflow.com/questions/1315190/reading-text-file-using-scriptComment by apathetic on Reading text file using script?apathetic2009-08-22T07:48:33Z2009-08-22T07:48:33ZWhere 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-informationComment by apathetic on Is there a ready utility for web sites to collect user information?apathetic2009-08-22T07:46:40Z2009-08-22T07:46:40ZWhat 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#1315384Comment by apathetic on Regular expression for date time format "MM/DD/YY HH:mm:ss AM/PM" in asp.net regular expression validatorapathetic2009-08-22T07:35:01Z2009-08-22T07:35:01ZThe 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#1309397Comment by apathetic on What is the best approach to populate a masterpage control which is dependent on the content page?apathetic2009-08-20T23:32:31Z2009-08-20T23:32:31ZGood 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-phpComment by apathetic on How to make a windows like Calculator in PHP?apathetic2009-08-18T22:02:40Z2009-08-18T22:02:40ZNo 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-phpComment by apathetic on How to make a windows like Calculator in PHP?apathetic2009-08-18T21:44:19Z2009-08-18T21:44:19ZWhere is the PHP code?http://stackoverflow.com/questions/1284517/easily-host-a-mediawiki-locallyComment by apathetic on Easily host a MediaWiki locally?apathetic2009-08-16T16:40:37Z2009-08-16T16:40:37ZWhat 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-serviceComment by apathetic on Warning about Amazon EC2... Urgent if you use this service!!!apathetic2009-08-16T16:38:10Z2009-08-16T16:38:10ZNot a question.http://stackoverflow.com/questions/1238204/pdf-download-problem/1238254#1238254Comment by apathetic on pdf download problemapathetic2009-08-06T12:18:32Z2009-08-06T12:18:32ZWould someone like to explain why this was downvoted?http://stackoverflow.com/questions/117337/can-i-unshelve-to-a-different-branch-in-tfs-2008/117376#117376Comment by apathetic on Can I unshelve to a different branch in tfs 2008?apathetic2009-08-06T10:57:17Z2009-08-06T10:57:17ZYep, 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-teambuildComment by apathetic on Is it possible to have a "global" queue when using TeamBuild?apathetic2009-08-05T12:39:41Z2009-08-05T12:39:41ZQuite so. Another way of asking the question is "how can I share build agents across projects?"http://stackoverflow.com/questions/1224796/what-could-cause-the-same-browser-on-different-pcs-to-render-the-same-html-differComment by apathetic on What could cause the same browser on different PCs to render the same HTML differently?apathetic2009-08-03T22:17:00Z2009-08-03T22:17:00ZFont size can also affect line height even if you don't have any text.