User J c - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T21:44:07Z http://stackoverflow.com/feeds/user/25837 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/767802/iis-7-websites-share-same-application-pool/767901#767901 1 Answer by J c for IIS 7 websites share same Application Pool J c 2009-04-20T11:38:32Z 2009-04-20T11:38:32Z <p>One way I've seen to share session state across different ASP.NET applications is to use one of the other options for storing session state information. Unfortunately I don't have access to IIS 7 at the moment, but assuming it is similar, here's how you configure it in IIS 6:</p> <ul> <li>IIS Management Console</li> <li>Bring up properties for the applicable virtual directory</li> <li>ASP.NET tab -> Edit Configuration</li> <li>State Management tab</li> </ul> <p>The "Session state mode" defaults to InProc, but you can change it for your various application "instances" to use the same SQL Server database.</p> http://stackoverflow.com/questions/760733/asp-net-querystring-being-removed-on-first-load/760988#760988 -1 Answer by J c for ASP.NET Querystring being removed on first load J c 2009-04-17T15:53:29Z 2009-04-17T15:53:29Z <p>A few things for you to try:</p> <p>You could watch the HTTP traffic to see what is happening, using a utility such as <a href="http://www.blunck.se/iehttpheaders/iehttpheaders.html" rel="nofollow">ieHttpHeaders</a> for IE or Firebug for FireFox. This way you will be able to watch the parameters being sent in the request and see if the browser is being redirected in an unexpected way.</p> <p>You may also want to make a test page under the same virtual directory that simply displays the value of the parameter and see if that works, which would narrow it down to a configuration problem or a coding problem within page.aspx.</p> http://stackoverflow.com/questions/700163/detecting-a-naughty-or-nice-url-or-link-in-a-text-string/751560#751560 3 Answer by J c for Detecting a (naughty or nice) URL or link in a text string J c 2009-04-15T12:55:59Z 2009-04-15T12:55:59Z <p>Since you are primarily looking for invitations to copy and paste into a browser address bar, it might be worth taking a look at the code used in open source browsers (such as Chrome or Mozilla) to decide if the text entered into the "address bar equivalent" is a search query or a URL navigation attempt.</p> http://stackoverflow.com/questions/743895/my-isconnected-always-returns-true/751480#751480 0 Answer by J c for My IsConnected always returns true. J c 2009-04-15T12:29:57Z 2009-04-15T12:29:57Z <p>It looks to me like you may not get the functionality you are expecting from the Socket class. My understanding is that the Socket class is only aware of the connection state as of the last socket operation.</p> <p>Note that the <a href="http://msdn.microsoft.com/en-us/library/system.net.sockets.socket.poll.aspx" rel="nofollow">Poll method</a> has some limitations:</p> <blockquote> <p>This method cannot detect certain kinds of connection problems, such as a broken network cable, or that the remote host was shut down ungracefully. You must attempt to send or receive data to detect these kinds of errors.</p> </blockquote> <p>This would imply that in the event of an ungraceful disconnect, it would be normal for a socket to continue to report true until a subsequent socket operation times out (which may explain the several minute delay you experienced in your previous post on this).</p> <p>This means that if you want to detect ungraceful disconnects, you will likely need to implement an application level heartbeat/ping, as suggested in a <a href="http://stackoverflow.com/questions/685951/how-to-check-if-client-socket-disconnected-in-winsock/685986#685986">previous answer</a>. You may need to play with the interval between the pings, otherwise you lose a degree of fault tolerance and a lag spike may cause unwanted reports of a disconnect.</p> http://stackoverflow.com/questions/743895/my-isconnected-always-returns-true/743905#743905 1 Answer by J c for My IsConnected always returns true. J c 2009-04-13T13:38:53Z 2009-04-13T13:52:26Z <p>I'm not sure exactly what you're trying to achieve, but assuming you're trying to tell if the connection has been broken, this post may be helpful: </p> <p><a href="http://stackoverflow.com/questions/681866/how-can-i-tell-if-the-connection-has-been-broken-in-my-sockets-based-client">http://stackoverflow.com/questions/681866/how-can-i-tell-if-the-connection-has-been-broken-in-my-sockets-based-client</a></p> <p>Edit: A troubleshooting step would be to determine which of the two boolean expressions are returning false, or if they are both returning false.</p> http://stackoverflow.com/questions/512042/what-can-be-causing-iis-to-receive-the-http-verb-2get/512177#512177 0 Answer by J c for What can be causing IIS to receive the HTTP verb "2GET" J c 2009-02-04T16:42:10Z 2009-02-04T16:42:10Z <p>Very odd indeed.</p> <ul> <li>Is this only occurring from one computer?</li> <li>Are these requests coming directly from the user's computer, via a proxy, or perhaps via ISA Server?</li> <li>Is it an option to install <a href="http://www.blunck.se/iehttpheaders/iehttpheaders.html" rel="nofollow">IEHttpHeaders</a> onto the problem browser and monitor the HTTP headers from that end?</li> </ul> http://stackoverflow.com/questions/184782/asp-net-session-timeout-testing/375277#375277 8 Answer by J c for ASP.NET Session Timeout Testing J c 2008-12-17T17:09:37Z 2008-12-17T17:24:56Z <p><strong>Decrease the timeout</strong></p> <p>The easiest and most non-intrusive way to test this is probably to just decrease the timeout to a fairly small number, such as 3 or 5 minutes. This way you can pause for a few minutes to simulate a longer pause without worrying about application restarts or special reset code having any affect on your test results.</p> <p>You can modify the session state timeout in a few locations - globally (in the web.config located in the config folder for the applicable .NET framework version), or just for your application.</p> <p>To modify the timeout just for your application, you can add the following to your application's web.config:</p> <pre><code> &lt;system.web&gt; &lt;sessionState timeout="60" /&gt; ... </code></pre> <p>Alternatively, you can also modify this same setting for your application through an IIS configuration dialog (I believe you still need to have a web.config defined for your application though, otherwise Edit Configuration will be disabled).</p> <p>To access this, right-click on your web application in IIS, and navigate to Properties | ASP.NET tab | Edit Configuration | State Management tab | Session timeout (minutes).</p> <p>Note that you can also manipulate this setting through code - if this is already being done, than the setting in the web.config file will effectively be ignored and you will need to use another technique.</p> <p><strong>Call Session.Abandon()</strong></p> <p>A slightly more intrusive technique than setting a low timeout would be to call Session.Abandon(). Be sure to call this from a page separate from your application though, as the session isn't actually ended until all script commands on the current page are processed.</p> <p>My understanding is that this would be a fairly clean way to test session timeouts without actually waiting for them.</p> <p><strong>Force an application restart</strong></p> <p>In a default configuration of session state, you can simulate a session timeout by blowing away the sessions entirely by causing the application to restart. This can be done several ways, a few of which are listed below:</p> <ul> <li>Recycle the app pool through <ul> <li>the IIS MMC snap-in</li> <li>the command-line (iisapp /a AppPoolID /r)</li> <li>modifying web.config, global.asax, or a dll in the bin directory</li> </ul></li> <li>Restart IIS through <ul> <li>the IIS MMC snap-in</li> <li>services.msc and restarting the IIS Admin service</li> <li>the command-line (iisreset)</li> </ul></li> </ul> <p>When I mention "default configuration", I mean a web application that is configured to use "InProc" session state mode. There are others modes that can actually maintain session state even if the web application is restarted (StateServer, SQLServer, Custom).</p> <p><strong>Tamper with the state tracking mechanism</strong></p> <p>Assuming your web application isn't configured with a "cookie-less" mode (by default, cookies will be used), you could remove the cookie containing the session ID from the client browser.</p> <p>However, my understanding is that this isn't really simulating a time-out, as the server will still be aware of the session, it just won't see anyone using it. The request without a session ID will simply be treated as an unseen request in need of a new session, which may or may not be what you want to test.</p> http://stackoverflow.com/questions/371268/how-do-you-send-emails-if-smtp-is-not-loaded-on-the-server/371309#371309 3 Answer by J c for How Do You Send Emails if SMTP is Not Loaded on the Server? J c 2008-12-16T13:30:53Z 2008-12-16T13:30:53Z <p>You shouldn't need SMTP running locally, as the VB.Net code should just be using basic TCP/IP to communicate directly to the relay server.</p> <p>It would be useful to see the error message, it is possible that the server does not have access to port 25 on the relay server (eg. due to the firewall configuration). Note that you can test this connectivity to some degree by launching telnet from the command line (on the server) as follows:</p> <pre><code>telnet RelayServerAddress 25 </code></pre> <p>There is also a chance that there is some authentication happening with the relay server when you run the code locally on your machine under your domain account that isn't able to happen when the code is running on the server under a local account (I'm making some big assumptions here).</p> http://stackoverflow.com/questions/362907/is-roles-isuserinrole-behaving-as-expected-in-the-following-simple-scenario 2 Is Roles.IsUserInRole behaving as expected in the following simple scenario? J c 2008-12-12T14:28:33Z 2008-12-12T14:59:44Z <p>In a custom role provider (inheriting from RoleProvider) in .NET 2.0, the IsUserInRole method has been hard-coded to always return true:</p> <pre><code>public override bool IsUserInRole(string username, string roleName) { return true; } </code></pre> <p>In an ASP.NET application configured to use this role provider, the following code returns true (as expected):</p> <pre><code>Roles.IsUserInRole("any username", "any rolename"); // results in true </code></pre> <p>However, the following code returns false:</p> <pre><code>Roles.IsUserInRole("any rolename"); // results in false </code></pre> <p>Note that User.IsInRole("any rolename") is also returning false.</p> <ol> <li>Is this the expected behavior?</li> <li>Is it incorrect to assume that the overload that only takes a role name would still be invoking the overridden IsUserInRole?</li> </ol> <p><strong>Update</strong>: Note that there doesn't seem to be an override available for the version that takes a single string, which has led to my assumption in #2.</p> http://stackoverflow.com/questions/326350/simple-role-authentication-in-asp-net/362838#362838 0 Answer by J c for Simple role authentication in asp.net J c 2008-12-12T14:02:34Z 2008-12-12T14:02:34Z <p>Note that to use the role provider model you do not have to use a database and a schema, there are simpler options. You might be interested in using the Authorization Manager (a free download from Microsoft) which lets you add a role provider to an ASP.NET application and configure the roles and permissions using their tool (an MMC snap-in accessed through Administrative Tools).</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms998336.aspx" rel="nofollow">How To: Use Authorization Manager with ASP.NET 2.0</a></p> <p>The configuration exposed by the tool gets stored into an xml file which is referenced in the applications web.config:</p> <pre><code>&lt;connectionStrings&gt; &lt;add name="LocalPolicyStore" connectionString="msxml://C:/AzManStore.xml"/&gt; &lt;/connectionStrings&gt; </code></pre> <p>Which can then be referenced when you configure the application to use the Authorization Manager role provider:</p> <pre><code>&lt;roleManager enabled="true" defaultProvider="RoleManagerAzManProvider"&gt; &lt;providers&gt; &lt;add name="RoleManagerAzManProvider" type="System.Web.Security.AuthorizationStoreRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, publicKeyToken=b03f5f7f11d50a3a" applicationName="MyApp" connectionStringName="LocalPolicyStore"/&gt; &lt;/providers&gt; &lt;/roleManager&gt; </code></pre> http://stackoverflow.com/questions/356194/wpf-datatrigger-where-value-is-not-null/356681#356681 4 Answer by J c for WPF DataTrigger Where Value IS ***NOT*** Null? J c 2008-12-10T16:33:25Z 2008-12-10T17:00:52Z <p>I ran into a similar limitation with DataTriggers, and it would seem that you can only check for equality. The closest thing I've seen that might help you is a technique for doing other types of comparisons other than equality.</p> <p><a href="http://blogs.msdn.com/mikehillberg/archive/2008/09/30/ComparableDataTrigger.aspx" rel="nofollow">This blog post</a> describes how to do comparisons such as LT, GT, etc in a DataTrigger.</p> <p>This limitation of the DataTrigger can be worked around to some extent by using a Converter to massage the data into a special value you can then compare against, as suggested in Robert Macnee's answer.</p> http://stackoverflow.com/questions/349250/how-to-display-xml-in-javascript/349264#349264 1 Answer by J c for how to display xml in javascript? J c 2008-12-08T11:38:40Z 2008-12-08T11:38:40Z <p>One technique would be to use two iframe elements with the src attribute set to the corresponding xml file available from the server (assuming it is exposed through a virtual directory):</p> <pre><code>&lt;iframe src="/myapp/Document1.xml"&gt;&lt;iframe src="/myapp/Document2.xml"&gt; </code></pre> <p>Alternatively, you could potentially use an AJAX-type request to retrieve the xml documents and then embed them in the HTML document dynamically using something like:</p> <pre><code>getElementById("myDiv").innerText = ajax.response; </code></pre> http://stackoverflow.com/questions/348021/counting-results-in-an-array/348038#348038 2 Answer by J c for Counting Results in an Array J c 2008-12-07T20:38:37Z 2008-12-07T20:44:50Z <p>One technique would be to iterate over the choices and increment a counter associated to each unique choice in an object property.</p> <p>Example:</p> <pre><code>var choiceCounts = {}; for (var iLoop=0; iLoop &lt; aChoices.length; iLoop++) { var keyChoice = aChoices[iLoop]; if (!choiceCounts[keyChoice]) { choiceCounts[keyChoice] = 1; } else { choiceCounts[keyChoice]++; } //if } //for </code></pre> <p>You then have an object with properties equal to the number of times that the property existed in the array.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/346924#346924 0 Answer by J c for What "already invented" algorithm did you invent? J c 2008-12-06T22:43:13Z 2008-12-06T22:43:13Z <p>I was pleasantly surprised to find out some years later that I had independently invented a technique for lossless compression.</p> <p>I had written a program (Turbo Pascal on a Tandy 1000) for drawing images (basically a keyboard-only version of paint) and was concerned with how much space the saved images were taking up, leading me to a basic lossless compression algorithm that drastically reduced the size of the image files.</p> http://stackoverflow.com/questions/346211/breaking-out-unit-tests-into-another-project/346214#346214 1 Answer by J c for Breaking out unit tests into another project J c 2008-12-06T12:08:43Z 2008-12-06T12:08:43Z <p>I believe you need to update the post build event for the Foo.Tests project to be:</p> <p>"$(ProjectDir)Foo.Test\Currencies.xml" "$(TargetDir)\XML"</p> http://stackoverflow.com/questions/323492/make-it-impossible-for-users-to-remove-web-parts-zones/323593#323593 0 Answer by J c for Make it impossible for users to remove web parts/zones? J c 2008-11-27T12:16:29Z 2008-11-27T12:16:29Z <p>This can be controlled through site roles. By default, the available roles are Full Control, Design, Contribute, Read, and Limited Access.</p> <p>Users that are not members of Contribute or higher will not be able to remove web parts or web part zones for that site.</p> http://stackoverflow.com/questions/311418/conference-type-operations-using-bluetooth/311535#311535 1 Answer by J c for 'Conference' type operations using Bluetooth? J c 2008-11-22T17:11:26Z 2008-11-22T17:26:20Z <p>I've heard of something close to this, called a <a href="http://en.wikipedia.org/wiki/Piconet" rel="nofollow">piconet</a>. Googling "bluetooth piconet" should point you in the right direction.</p> <p>A master device can be networked in this way with up to 255 slave devices, but only 7 can be active at any one time. This is more of a one-to-many communication than many-to-many, but could potentially be approximated by having the master device act like a network switch.</p> <p><strong>Update:</strong> I just read that slaves in one piconet can participate in another piconet as either a master or slave, forming a "<a href="http://en.wikipedia.org/wiki/Scatternet" rel="nofollow">scatternet</a>".</p> http://stackoverflow.com/questions/311454/how-would-you-format-indent-this-piece-of-code/311508#311508 2 Answer by J c for How would you format/indent this piece of code? J c 2008-11-22T16:47:51Z 2008-11-22T16:47:51Z <p>I would use similar formatting as your first example, but without the redundant space delimiters before and after the parenthesis delimiters:</p> <pre><code>int id = BLahs.Add(new Blah(-1, -2, -3)); </code></pre> <p>Note that I also wouldn't use an all upper-case variable name in this situation, which often implies something special, like a constant.</p> http://stackoverflow.com/questions/309786/how-do-i-force-postgres-to-use-a-particular-index/309865#309865 1 Answer by J c for How do I force Postgres to use a particular index? J c 2008-11-21T19:20:06Z 2008-11-21T19:20:06Z <p>I've used index hints in Oracle before, but it seems PostgreSQL favors query planner optimization over that feature, here's a post I found discussing some options:</p> <p><a href="http://bytes.com/forum/thread400241.html" rel="nofollow">Can you give Postgres index hints like you can do in Oracle and Sybase?</a></p> http://stackoverflow.com/questions/180841/best-javascript-syntactic-sugar/308796#308796 5 Answer by J c for Best javascript syntactic sugar J c 2008-11-21T13:41:51Z 2008-11-21T13:41:51Z <p>Repeating a string such as "-" a specific number of times by leveraging the join method on an empty array:</p> <pre><code>var s = new Array(iRepeat+1).join("-"); </code></pre> <p>Results in "---" when iRepeat == 3.</p> http://stackoverflow.com/questions/308638/which-opensource-java-or-net-project-has-best-unit-test-coverage/308686#308686 0 Answer by J c for Which opensource java or .net project has best unit test coverage? J c 2008-11-21T13:03:06Z 2008-11-21T13:03:06Z <p>The source code for <a href="http://www.nunit.org" rel="nofollow">NUnit</a> (.NET unit testing software) would be worth a look.</p> http://stackoverflow.com/questions/306253/what-is-the-difference-between-these-two-methods-of-accessing-the-sharepoint-mode 3 What is the difference between these two methods of accessing the SharePoint model? J c 2008-11-20T18:02:32Z 2008-11-20T21:41:25Z <p>Out of the several ways of accessing the SharePoint model of a SharePoint Services 3.0 site from an ASP.NET application, two seem to be very similar:</p> <ol> <li><p><code>SPWeb site = SPControl.GetContextWeb(Context);</code></p></li> <li><p><code>SPWeb site = SPContext.Current.Web;</code></p></li> </ol> <p>It is my understanding that both of these methods need to be executed from within an ASP.NET application, so what is the difference between them and is there a situation where it is preferable to use one over the other?</p> http://stackoverflow.com/questions/306475/sharepoint-column-default-values-add-10-working-days/306643#306643 0 Answer by J c for SharePoint column default values - add 10 working days J c 2008-11-20T19:59:29Z 2008-11-20T19:59:29Z <p>Perhaps you can work around this limitation by using a workflow (possibly a custom one) to manage the due date? A due date implies that it is an actionable item that should be assigned to somebody anyways.</p> <p>Note that VS.NET doesn't have to be a luxury - you can use it for <a href="http://www.microsoft.com/Express/" rel="nofollow">free</a>.</p> http://stackoverflow.com/questions/303859/asp-net-and-sessions-new-browser-instance-versus-new-browser-window/303883#303883 2 Answer by J c for ASP.NET and Sessions - New Browser Instance versus New Browser Window J c 2008-11-20T00:00:37Z 2008-11-20T00:00:37Z <p>By default, ASP.NET tracks sessions through cookies. A new IE instance does not have the session cookie, resulting in a new session. However, using File -> New Window from an existing IE window will create a new window with the same cookies as the "parent", allowing ASP.NET to use the existing session.</p> http://stackoverflow.com/questions/276433/do-you-think-its-advantageous-to-switch-to-entity-framework/302051#302051 2 Answer by J c for Do you think it's advantageous to switch to Entity Framework? J c 2008-11-19T14:38:17Z 2008-11-19T14:38:17Z <p>LINQ to SQL doesn't seem to be an option unless you use SQL Server (or SQL Server compact), so that was reason enough for me to avoid it and use EF (I wanted to use PostgreSQL). </p> <p>There are definitely enough things missing in v1 of EF that would make me hesitate to recommend it. It sounds like version 2 of the EF (when released) would be the first version that could be seriously recommended for switching over to.</p> http://stackoverflow.com/questions/301869/how-to-find-good-looking-font-color-if-background-color-is-known/301879#301879 7 Answer by J c for How to find good looking font color if background color is known? J c 2008-11-19T13:25:56Z 2008-11-19T13:25:56Z <p>Check out <a href="http://kuler.adobe.com/" rel="nofollow">kuler</a>, it's a great resource for finding colors that go well together, just do a search for the HTML color code (eg. FF9900). It won't limit the result to only sets that include high-contrast colors with the one you selected, but the sets typically will have a combination of low and high contrast colors.</p> http://stackoverflow.com/questions/301354/why-localtime-displays-server-time-and-not-browser-time/301380#301380 2 Answer by J c for Why LocalTime displays server time and not browser time? J c 2008-11-19T09:28:02Z 2008-11-19T09:28:02Z <p>One technique is to detect the client timezone offset (in minutes) using javascript on the client browser:</p> <pre><code>alert((new Date()).getTimezoneOffset(); </code></pre> <p>This can then be sent back to the server and stored in the session or a cookie and used to offset the UTC dates displayed to them. Alternatively, another technique is to have user profiles where they can specify their timezone.</p> http://stackoverflow.com/questions/300185/google-chrome-javascript-version/300251#300251 2 Answer by J c for Google Chrome - javascript version J c 2008-11-18T21:46:31Z 2008-11-18T21:46:31Z <p>Google Chrome uses the <a href="http://code.google.com/p/v8/" rel="nofollow">V8 javascript engine</a>, which currently states that it implements ECMA-262, 3rd edition. This would imply it supports at least version 1.5.</p> http://stackoverflow.com/questions/170103/what-rare-programming-tools-do-you-use/298715#298715 0 Answer by J c for What rare programming tools do you use? J c 2008-11-18T13:29:51Z 2008-11-18T13:29:51Z <p><a href="http://www.nattyware.com/pixie.html" rel="nofollow">Pixie</a> - an 8kb color picker.</p> http://stackoverflow.com/questions/298380/how-to-manage-frequently-modified-production-code/298406#298406 0 Answer by J c for How to manage frequently modified production code? J c 2008-11-18T10:43:50Z 2008-11-18T10:43:50Z <p>There are several project lifecycles that you can pattern your approach against. <a href="http://www.business-esolutions.com/islm.htm" rel="nofollow">This site</a> lists a few (it sounds like you're using the "Code-And-Fix" one!), but this is by no means a definitive list, a larger list can be found <a href="http://en.wikipedia.org/wiki/Category:Software_development_process" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/92869/nunit-vs-visual-studio-2008s-test-projects-for-unit-testing/92900#92900 Comment by J c on NUnit vs Visual Studio 2008's Test Projects for Unit Testing? J c 2009-10-12T11:42:55Z 2009-10-12T11:42:55Z +1 for mentioning code coverage in Visual Studio, which is hugely awesome, you can double-click a class or method and the editor highlights the code that is covered and the code that isn't covered by your unit tests. Makes it easy to get close to 100% code coverage. http://stackoverflow.com/questions/1112941/rendering-a-sequence-of-images-in-c-to-make-a-video Comment by J c on Rendering a Sequence of Images in C# to make a video J c 2009-07-11T14:42:07Z 2009-07-11T14:42:07Z An alternate solution might be to name the jpg's sequentially and then open the first one in VirtualDub, which will then play them as a video. http://stackoverflow.com/questions/124378/how-to-share-host-vpn-connection-with-vm-instances-in-hyper-v/129541#129541 Comment by J c on How to share host VPN connection with VM instances in Hyper-V? J c 2009-05-03T12:57:07Z 2009-05-03T12:57:07Z Note: I had a similar problem, and ended up switching the VM to use NAT, which allowed it to &quot;see&quot; the host's VPN connection. http://stackoverflow.com/questions/760733/asp-net-querystring-being-removed-on-first-load/760988#760988 Comment by J c on ASP.NET Querystring being removed on first load J c 2009-04-20T09:01:58Z 2009-04-20T09:01:58Z Maybe, it could also mean he just tried commenting out some code in page.aspx. Note that based on the OP's comment on the accepted answer, it sounds like creating a new page would have been a good sanity check after all. Also note that my first suggestion would also have helped show how the interaction with cookies wasn't working as expected. Was this really an unhelpful answer? http://stackoverflow.com/questions/743895/my-isconnected-always-returns-true/743905#743905 Comment by J c on My IsConnected always returns true. J c 2009-04-13T13:48:37Z 2009-04-13T13:48:37Z lol! Fair enough, I guess there was a reason it was similar - I should have checked the author. http://stackoverflow.com/questions/61553/track-your-reputation/430843#430843 Comment by J c on Track your reputation J c 2009-01-14T17:56:03Z 2009-01-14T17:56:03Z Nice catch, that explains it then, thanks. I'll wait to see if the next version of the tracking script fixes this (either intentionally or unintentionally). http://stackoverflow.com/questions/61553/track-your-reputation/430843#430843 Comment by J c on Track your reputation J c 2009-01-14T10:02:42Z 2009-01-14T10:02:42Z Ah, I just had a thought. Perhaps the 52 includes the few answers I have deleted (which might be three, not too sure), and the recent change to the modos script to take the total number of answers from the user page rather than the count of the listed answers has resulted in what I'm seeing. http://stackoverflow.com/questions/61553/track-your-reputation/430843#430843 Comment by J c on Track your reputation J c 2009-01-14T09:58:49Z 2009-01-14T09:58:49Z @Sam Hasler: That makes sense. However, note that I only have 52 answers, and yet my user page only shows the last 49, so in my case it is a limit of 49, not 100, which is odd. http://stackoverflow.com/questions/61553/track-your-reputation/430843#430843 Comment by J c on Track your reputation J c 2009-01-13T09:52:22Z 2009-01-13T09:52:22Z With-in the past 14 hours I've had 3 answers seemingly appear from nowhere (according to the tracker), is this related to the same truncation issue? 49 unchanged not shown 3 unable to be tracked http://stackoverflow.com/questions/184782/asp-net-session-timeout-testing/184793#184793 Comment by J c on ASP.NET Session Timeout Testing J c 2008-12-17T17:27:07Z 2008-12-17T17:27:07Z Do you have more info about notepad screwing up the encoding? I haven't had a problem using notepad (yet), also this MS support article describes using notepad to edit web.config, &quot;You can create a Web.config file by using a text editor such as Notepad.&quot;: <a href="http://support.microsoft.com/kb/815179" rel="nofollow">support.microsoft.com/kb/815179</a> http://stackoverflow.com/questions/362907/is-roles-isuserinrole-behaving-as-expected-in-the-following-simple-scenario/362990#362990 Comment by J c on Is Roles.IsUserInRole behaving as expected in the following simple scenario? J c 2008-12-12T16:41:27Z 2008-12-12T16:41:27Z Much appreciated! I have downloaded the Reflector tool now, thanks for pointing me towards it. You were correct about the username being blank, I am using anonymous authentication, resulting in the identity being System.Security.Principal.GenericIdentity which happens to have a blank Name attribute. http://stackoverflow.com/questions/359625/most-elegant-way-to-detect-if-a-string-is-a-number/359845#359845 Comment by J c on Most elegant way to detect if a String is a number? J c 2008-12-12T16:21:00Z 2008-12-12T16:21:00Z It's nice to see an answer that doesn't make locale assumptions. +1 http://stackoverflow.com/questions/359625/most-elegant-way-to-detect-if-a-string-is-a-number/359634#359634 Comment by J c on Most elegant way to detect if a String is a number? J c 2008-12-12T16:17:52Z 2008-12-12T16:17:52Z It might be faster to return false if it's an empty string then going into the try/catch and having the empty string passed to Double.parseDouble(). http://stackoverflow.com/questions/356194/wpf-datatrigger-where-value-is-not-null/356690#356690 Comment by J c on WPF DataTrigger Where Value IS ***NOT*** Null? J c 2008-12-10T16:56:46Z 2008-12-10T16:56:46Z I suppose you could make the converter a bit more generic and use ConverterParameter to pass in a value to compare against (in order to support both comparing to NOT null and NOT 3. http://stackoverflow.com/questions/349250/how-to-display-xml-in-javascript/349298#349298 Comment by J c on how to display xml in javascript? J c 2008-12-08T17:46:26Z 2008-12-08T17:46:26Z Does the function return HTML encoded XML, or just an XML string? I believe setting innerHTML to an XML string would result in the rendering problem the OP is trying to work around.