User SkippyFire - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T13:49:41Z http://stackoverflow.com/feeds/user/57698 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1511557/looking-for-hardware-that-will-easily-interface-with-my-net-code 9 Looking for Hardware that will easily interface with my .NET code. SkippyFire 2009-10-02T20:09:13Z 2009-11-24T19:14:07Z <p>I'm a .NET C# developer looking to do some hardware interfacing/programming. I just want something super simple to mess around with. I have done one of those basic stamp projects, but I want something with less electrical work. A self-contained piece of hardware would be fine.</p> <ul> <li>I'm not really looking to do embedded programming... but that would actually be pretty cool if something was capable of running .net code.</li> <li>I'm looking for something that would be easy to connect, hopefully via USB. Serial ports seems to be more hit or miss nowadays with laptops and netbooks.</li> <li>Something I can easily send data to, <strong>like a mini LCD, or series of LED's</strong>.</li> <li>Better yet would be something that provides feedback, like a temperature sensor.</li> <li>The best would be something more featured that I could talk to. I would be able to send data to it, and it would send back responses. Maybe something like a servo that could report it's position? Or maybe something that I could set parameters on?</li> </ul> <p>Any ideas? Thanks in advance!</p> http://stackoverflow.com/questions/1772740/mouseover-not-working-in-ie7/1783551#1783551 0 Answer by SkippyFire for mouseover not working in ie7 SkippyFire 2009-11-23T14:43:36Z 2009-11-23T14:43:36Z <p>Sitecore generates a lot of temporary and debug code files. This could be the problem. I would try deleting all of the temp/debug files, and see if that helps. They are scattered throughout the site, so you have to hunt for the debug directories.</p> <p>However, I do see a lot of WEIRD JavaScript things with SiteCore. Sometimes I will load the content editor, and it wont work because of JS errors. I clear my cache and refresh and it works fine. But nothing in the JavaScript <em>should</em> be changing, since it would be the scripts from the vendor. I don't go in and change JS. Maybe they are generating JS somewhere.</p> http://stackoverflow.com/questions/1077603/visual-studio-shows-errors-until-i-open-the-aspx-cs-page 1 Visual Studio Shows errors until I open the *.aspx.cs page??? SkippyFire 2009-07-03T02:56:03Z 2009-11-17T23:52:16Z <p>The Visual Studio Error List shows like 50 errors about controls and variables not existing. I double click an error, it takes me to it, and after about 1 second they all go away!</p> <p>There aren't any real errors, as my site compiles without errors or even warnings.</p> <p>I know I've seen this before, but I forget how to fix it. Anyone know why this is happening? Thanks in advance!</p> http://stackoverflow.com/questions/1271852/why-does-iis-wild-card-mapping-break-my-ajax-calls 0 Why does IIS wild card mapping break my AJAX calls? SkippyFire 2009-08-13T13:08:43Z 2009-11-17T10:14:47Z <p>I'm trying to use jQuery to make some AJAX calls, but because I have wild card mapping (to .NET) in IIS 6 turned on, it doesn't seem to work. Disabling the mapping makes everything magically work.<br /> <br /> I've put the web method attribute on methods in both an .aspx page and an .asmx web service, but neither work. Here is the sample URL that I am using for the AJAX calls:<br /> <br /> <code>localhost/UserChecker.aspx/CheckIfUserEmailsExists</code><br /> <br /> <code>localhost/UserChecker.asmx/CheckIfUserEmailsExists</code><br /> <br /> I figure it must be something with the way .NET is interpreting the URL's but I'm not entirely sure why. More importantly, I'm not sure how to fix it, other than to disable wild card mapping! Is there any other way???<br /> <br /> <strong>UPDATE</strong><br /> <br /> The CMS I am using (Kentico) does some URL routing, but even if I skip over the routing in the global.asax.cs code, I still get a 404. <br /> Thanks in advance!</p> http://stackoverflow.com/questions/620265/can-i-set-up-html-email-templates-in-c-on-asp-net 13 Can I set up HTML/Email Templates in C# on ASP.NET? SkippyFire 2009-03-06T20:21:10Z 2009-11-17T04:05:22Z <p>I'm working on a site that will send out a significant number of emails. I want to set up both header and footer text, or maybe even templates to allow the users to easily edit these emails if they need to.</p> <p>If I embed the HTML inside C# string literals, it's ugly and they would have to worry about escaping. Including flat files for the header and footer might work, but something about it just doesn't feel right.</p> <p>What would be ideal what be to use a <code>.ASPX</code> page as a template somehow, then just tell my code to serve that page, and use the HTML returned for the email.</p> <p>Is there a nice and easy way to do this? Is there a better way to go about solving this problem?</p> <p><strong>Updated:</strong><br /> I added an answer that enables you to use a standard .aspx page as the email template. Just replace all the variables like you normally would, use databinding, etc. Then just capture the output of the page, and voila! You have your HTML email!</p> <p><strong>UPDATED WITH CAVEAT!!!:</strong><br /> I was using the MailDefinition class on some aspx pages just fine, but when trying to use this class during a server process that was running, it failed. I believe it was because the MailDefinition.CreateMailMessage() method requires a valid control to reference, even though it doesn't always do something. Because of this, I would recommend my approach using an aspx page, or Mun's approach using an ascx page, which seems a little better.</p> http://stackoverflow.com/questions/1014299/cant-get-iis-to-serve-js-files-from-a-specified-directory 0 Can’t get IIS to serve .js files from a specified directory SkippyFire 2009-06-18T18:12:47Z 2009-11-13T14:00:04Z <p>I'm running IIS 5 on a Windows 2000 machine.</p> <p>I have an application setup in my "scripts" directory in my website, because it runs some compiled DLL's. The application is set to run scripts and executables.</p> <p>For some reason, when I try and access any .js files in that directory, I get "The system cannot find the file specified.". I tried adding .js as a "text/javascript" mime type, to both the website and the directory, but it doesn't seem to help.</p> <p>I also checked the web server itself, and the .js mime type was set to application/octet-stream. I changed it to text/javascript, but it still doesn't work. Do I need to restart IIS or the application pool? Or am I looking in the wrong place.</p> <p>I also tried using text/text and text/html but that didn't help.</p> <p>I am able to access .htm, .jpg, and even .asp files in that directory.</p> <p>Any ideas? Thanks in advance!</p> http://stackoverflow.com/questions/928673/can-i-use-code-igniter-with-concrete5 0 Can I use Code Igniter with Concrete5? SkippyFire 2009-05-30T00:55:23Z 2009-11-11T23:56:16Z <p>I am building a site that will (obvisouly) have a front end public portion that I want to drive with Concrete5, but then it will also have a members section that I would like to build with Code Igniter.</p> <p>Does anyone have any idea how I could do that?</p> <p>I guess I could just throw the Code Igniter code into a sub directory, but would I run into any issues with that?</p> http://stackoverflow.com/questions/1580022/how-can-i-modify-the-entire-asp-net-page-content-right-before-its-output 1 How can I modify the entire ASP.NET page content right before it's output? SkippyFire 2009-10-16T19:39:42Z 2009-11-08T01:21:36Z <p>I have a page that has a bunch of user controls on it. I want to be able to have "macros" or "placeholders" directly in the content that will get replaced in my code. It shouldn't really matter, but I'm using Ektron as my CMS.</p> <p>Are there any page events that I can hook into to do a string replace on the entire rendered page content, right before it's sent to the client?</p> <p><strong>UPDATE</strong></p> <p>Here is the code that I am currently using to accomplish this:</p> <pre><code>protected override void Render(HtmlTextWriter writer) { string content = string.Empty; using (var stringWriter = new StringWriter()) using (var htmlWriter = new HtmlTextWriter(stringWriter)) { // render the current page content to our temp writer base.Render(htmlWriter); htmlWriter.Close(); // get the content content = stringWriter.ToString(); } // replace our placeholders string newContent = content.Replace("$placeholder1$", "placeholder1 data").Replace("$placeholder2$", "placeholder2 data"); // write the new html to the page writer.Write(newContent); } </code></pre> http://stackoverflow.com/questions/1561651/asp-login-control-does-not-work-inside-a-sitecore-6-sublayout 0 ASP Login control does not work inside a Sitecore 6 sublayout SkippyFire 2009-10-13T17:13:46Z 2009-11-04T17:11:24Z <p>In Sitecore 6, I have created a sublayout that has an asp:login control. For some reason, it doesn't work when I add it to the layout of a page. The page simply posts back, but doesn't log me in.</p> <p>I made a stand alone .aspx with a login control and it works fine. So the problem is not with the membership system. My guess is it has something to do with the page life cycle and event ordering. Maybe the login control is not getting added to the page in time to handle the correct events and data?</p> <p>Does anyone know why the login control would not work when added as a sublayout? Does anyone know a work around?</p> <p><strong>UPDATE</strong> I hooked up event handlers to the controls events, and for whatever reason, they never get called. The control's onload method does get called, but the LoggingIn and Authenticate events never fire. This could still be due to my wrapper control not being added to the page in time. However, I think that they have other controls that do similar things, so I'm still not sure what I'm doing differently/wrong...</p> http://stackoverflow.com/questions/1669654/how-can-i-import-data-into-aspdotnetstorefront 0 How can I import data into AspDotNetStorefront? SkippyFire 2009-11-03T19:34:51Z 2009-11-03T19:34:51Z <p>It doesn't look like their assemblies expose a uniform API... and their WSI (web service thingy) looks like it accepts XML as a string... i.e., no strongly typed proxy classes.</p> <p>Am I going to end up writing direct SQL scripts to import my products, product options, categories, and images?</p> http://stackoverflow.com/questions/1568801/cant-get-a-custom-membership-provider-to-work-with-sitecore-6 0 Can't get a custom Membership Provider to work with Sitecore 6. SkippyFire 2009-10-14T20:30:30Z 2009-11-02T16:30:18Z <p>I followed the directions in the Membership Providers document provided by Sitecore, but I was unable to get my membership provider to work correctly. </p> <p>Specifically, in the web.config, I changed the "realProviderName" attribute on the sitecore provider to point to my provider. However, this didn't do anything.</p> <p>I realized that the "defaultProvider" attribute was set to the "switcher" provider, so I changed that to point directly at my provider, and it worked, but I'm not sure if I'm causing problems elsewhere by doing this...</p> <p>Has anyone done this before?</p> http://stackoverflow.com/questions/1195829/do-i-have-to-close-a-sqlconnection-before-it-gets-disposed 3 Do I have to Close() a SQLConnection before it gets disposed? SkippyFire 2009-07-28T18:21:56Z 2009-10-30T17:56:56Z <p>Per my other <a href="http://stackoverflow.com/questions/1033334/is-there-a-list-of-common-object-that-implement-idisposable-for-the-using-stateme">question here about Disposable objects</a>, should we call Close() before the end of a using block?</p> <pre><code>using (SqlConnection connection = new SqlConnection()) using (SqlCommand command = new SqlCommand()) { command.CommandText = "INSERT INTO YourMom (Amount) VALUES (1)"; command.CommandType = System.Data.CommandType.Text; connection.Open(); command.ExecuteNonQuery(); // Is this call necessary? connection.Close(); } </code></pre> http://stackoverflow.com/questions/984748/how-to-make-a-linux-service-that-accepts-commands-via-web-server 1 How to make a Linux Service that Accepts Commands via Web Server? SkippyFire 2009-06-12T02:34:40Z 2009-10-28T21:16:21Z <p>I need an application to be running in the background on my web server, but I need to be able to start/stop the application with root privileges.</p> <p>In order to do this, I want to have a service running that has root privileges, so that it can kill the application, and start it up again if need be.</p> <p>Finally, I need to be able to send the start and kill commands to the service via Apache/PHP, so that it can be indirectly controlled through the web.</p> <p>How do I create a Linux service?<br /> How do I communicate with a Linux service in this manner?</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1624951/is-the-dynamic-keyword-meant-to-be-only-used-with-dynamic-languages 3 Is the dynamic keyword meant to be *only* used with dynamic languages? SkippyFire 2009-10-26T13:56:17Z 2009-10-28T19:35:45Z <p>I attended Code Camp 12 recently, and a speaker there said that the new <code>dynamic</code> keyword in C# 4.0 <em>should</em> only be used for interopping with dynamic languages. I think he also said that it is somewhat slow, compared to normal reflection (which itself is somewhat slow).</p> <p>But then I heard Scott Hanselman mention that the dynamic keyword "makes reflection less painful".</p> <p>So is it going to be acceptable to use the dynamic keyword for the purpose of reflecting an object that doesn't come from dynamic code?</p> http://stackoverflow.com/questions/1633608/getting-an-exception-when-site-is-pushed-to-production 1 Getting an exception when site is pushed to production SkippyFire 2009-10-27T20:54:14Z 2009-10-28T13:10:18Z <p>This is probably a shot in the dark but here goes nothing...</p> <p>I have a Sitecore 6 site that I am developing locallty. When I pushed it to the production server, I now get an exception when trying to access the site. I had done an upgrade of the Sitecore version, and added the Forms module, among some other minor edits. So I moved everything to production, changed the connection strings, and changed the directory references in the web.config, but I still get this error.</p> <p><strong>My local machine still works fine, and even my staging server (hooked up via SVN and Cruise Control) works fine, but I can't fix this error on production.</strong></p> <p>At the bottom of the stack trace (below), it looks like it is trying to instantiate the search manager. Maybe that has something to do with it?</p> <p>Or maybe I missed a setting when I moved everything? What settings need to be changed when the environment changes?</p> <p><strong>Here is what I've tried so far:</strong></p> <ol> <li>Re-copied all of the files and databases.</li> <li>Gave full control permissions to the worker process, ASPNET, and Network Service users.</li> <li>Double checked the directory paths in the web.config that needed to be configured.</li> <li>Double checked the connection string in the connectionstring.config.</li> <li>Recycled the App Pool</li> <li>Stopped and started the site</li> <li>Cleared my local browser cache (as they instruct you to do in the upgrade docs)</li> </ol> <h2><strong>This is the exception that is being thrown when I try and access any page:</strong></h2> <p>Thread information: Thread ID: 1 Thread account name: 180716WEB1\testcom_web Is impersonating: False Stack trace: at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct&amp; sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner) at System.RuntimeMethodHandle.InvokeMethodFast(Object target, Object[] arguments, Signature sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner) at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks) at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) at System.Reflection.RuntimePropertyInfo.SetValue(Object obj, Object value, BindingFlags invokeAttr, Binder binder, Object[] index, CultureInfo culture) at System.Reflection.RuntimePropertyInfo.SetValue(Object obj, Object value, Object[] index) at Sitecore.Reflection.ReflectionUtil.SetProperty(Object obj, PropertyInfo property, Object value) at Sitecore.Reflection.ReflectionUtil.SetProperty(Object obj, String name, Object value) at Sitecore.Configuration.Factory.AssignProperties(Object obj, Object[] properties) at Sitecore.Configuration.Factory.AssignProperties(XmlNode configNode, String[] parameters, Object obj, Boolean assert, Boolean deferred, IFactoryHelper helper) at Sitecore.Configuration.Factory.CreateObject(XmlNode configNode, String[] parameters, Boolean assert, IFactoryHelper helper) at Sitecore.Configuration.Factory.GetInnerObject(XmlNode paramNode, String[] parameters, Boolean assert) at Sitecore.Configuration.Factory.AssignProperties(XmlNode configNode, String[] parameters, Object obj, Boolean assert, Boolean deferred, IFactoryHelper helper) at Sitecore.Configuration.Factory.CreateObject(XmlNode configNode, String[] parameters, Boolean assert, IFactoryHelper helper) at Sitecore.Configuration.Factory.GetInnerObject(XmlNode paramNode, String[] parameters, Boolean assert) at Sitecore.Configuration.Factory.AssignProperties(XmlNode configNode, String[] parameters, Object obj, Boolean assert, Boolean deferred, IFactoryHelper helper) at Sitecore.Configuration.Factory.CreateObject(XmlNode configNode, String[] parameters, Boolean assert, IFactoryHelper helper) at Sitecore.Configuration.Factory.CreateObject(XmlNode configNode, String[] parameters, Boolean assert) at Sitecore.Configuration.Factory.CreateObject(String configPath, String[] parameters, Boolean assert) at Sitecore.Configuration.Factory.CreateObject(String configPath, Boolean assert) at Sitecore.Search.SearchManager..cctor()</p> <p>Custom event details:</p> <p>For more information, see Help and Support Center at <a href="http://go.microsoft.com/fwlink/events.asp" rel="nofollow">http://go.microsoft.com/fwlink/events.asp</a>.</p> http://stackoverflow.com/questions/1633608/getting-an-exception-when-site-is-pushed-to-production/1637152#1637152 1 Answer by SkippyFire for Getting an exception when site is pushed to production SkippyFire 2009-10-28T13:10:18Z 2009-10-28T13:10:18Z <p>It turned out to be that when I restored the database to production, it didn't re-associate the database user with it!!! Stupid me! For whatever reason, that causes this error to occur. I'm guessing that the SearchManager is setup as some sort of external service or something, to abstract things.</p> http://stackoverflow.com/questions/1511557/looking-for-hardware-that-will-easily-interface-with-my-net-code/1626615#1626615 0 Answer by SkippyFire for Looking for Hardware that will easily interface with my .NET code. SkippyFire 2009-10-26T18:45:29Z 2009-10-26T18:45:29Z <p>One of my coworkers did a school project that involved a Wiimote, an Arduino board, some other hard ware, and an XNA app. He explained it to me, and it seemed very easy to get the whole thing running. Apparently there is a connector you can buy so you don't even have to hack up your Wiimote cable! I know Arduino have a big following to, and there is a lot of tutorials and things out there for it.</p> <p>It's not really a full-featured game, just a proof of concept sort of thing.</p> <p>Documentation: <a href="http://users.wpi.edu/~kmcmanus/DeadToLights/" rel="nofollow">http://users.wpi.edu/~kmcmanus/DeadToLights/</a></p> <p>Video of him and his friends playing it: <a href="http://www.youtube.com/watch?v=N3vFA1lgb34" rel="nofollow">http://www.youtube.com/watch?v=N3vFA1lgb34</a></p> http://stackoverflow.com/questions/1561673/how-do-you-make-a-form-in-sitecore-6 0 How do you make a form in Sitecore 6? SkippyFire 2009-10-13T17:16:50Z 2009-10-15T14:09:38Z <p>Most CMS' have a way to create forms for users or anonymous users to fill out. Is there a mechanism for creating forms like this in Sitecore 6?</p> <p>As far as I can tell, the only way to make forms like this would be to manually create them in a sub-layout (user control), and then add that sub-layout to a page. Does anyone know a better way?</p> http://stackoverflow.com/questions/1278171/are-there-any-performance-issues-or-caveats-with-resource-resx-files 3 Are there any performance issues or caveats with resource (.resx) files? SkippyFire 2009-08-14T14:27:57Z 2009-10-15T13:21:02Z <p>Resource files seem great for localization of labels and messages, but are they perfect?</p> <p>For example:</p> <ol> <li>Is there a better solution if there is a huge amount of resources? Like 100,000 strings in a .resx file? (Theoretically, I do not actually have this problem)</li> <li>Is this a good method for storing the other types of data, such as Images, Icons, Audio Files, Regular Files?</li> <li>Is it a best practice to store your .resx files in a stand alone project for easier updates/compiling?</li> <li>Are there any other issues that you have run into when using .resx files?</li> </ol> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1527356/how-to-redirect-a-parent-page-to-a-child-page-in-sitecore-6 0 How to redirect a parent page to a child page in Sitecore 6? SkippyFire 2009-10-06T18:46:05Z 2009-10-15T01:49:34Z <p>I have this Newsletter page, that has the actual newsletters nested underneath it for each month of the year.</p> <p>I want to be able to have the parent page redirect to the latest published page. What would be the best way to do that?</p> <p>I don't really have any idea of where to start with this one... Should I make a sub layout user control and programmatically redirect? Or is there a more elegant way to do it... Thanks in advance!</p> http://stackoverflow.com/questions/1560762/xslt-wont-allow-me-to-use-self-closing-img-and-br-tags 0 XSLT wont allow me to use self-closing img and br tags SkippyFire 2009-10-13T14:55:19Z 2009-10-14T00:18:13Z <p>I have some XSLT that gets rendered in the Sitecore 6 CMS, but I don't think that this issue is specific to the product.</p> <p>If I have a self-closing img or br tag, like so:</p> <pre><code>&lt;br /&gt; &lt;img src="your.example.com" /&gt; </code></pre> <p>The resulting output would be:</p> <pre><code>&lt;br&gt; &lt;img src="your.example.com"&gt; </code></pre> <p>The output method of the XSLT file is HTML. Is it supposed to be XML? I'm guessing that self-closing tags are not valid HTML, but is setting it to XML going to cause problems in my output?</p> http://stackoverflow.com/questions/1561673/how-do-you-make-a-form-in-sitecore-6/1562394#1562394 0 Answer by SkippyFire for How do you make a form in Sitecore 6? SkippyFire 2009-10-13T19:24:38Z 2009-10-13T19:24:38Z <p>It looks like there is a "Forms Module", and a "Web Forms for Marketers Module" that provide the functionality, but I haven't looked into them yet. I think the "Forms Module" is being phased out in favor of the "Web Forms for Marketers Module".</p> <p>I'll update if I get the chance to try them out.</p> http://stackoverflow.com/questions/1489087/exception-when-calling-membership-getallusers-on-the-sqlmembershipprovider 0 Exception when calling Membership.GetAllUsers() on the SqlMembershipProvider SkippyFire 2009-09-28T20:05:23Z 2009-10-12T14:04:19Z <p>I get the following exception when trying to view a list of users anywhere in my web app:</p> <blockquote> <p>Item has already been added. Key in dictionary: 'default\Anonymous' Key being added: 'default\Anonymous'</p> </blockquote> <p>(default/anonymous is one of the users in the system)</p> <p>Specifically, I'm using SiteCore 6, but I'm not really sure it's related to the app. I get this error regardless of how the Membership users are accessed.</p> <ol> <li>The SiteCore 6 Security Manager has this issue when trying to view a list of users.</li> <li>The ASP.NET Configuration Tool, accessed via the Project menu in Visual Studio, has this issue when trying to view the security section.</li> <li>I have this issue If I manually call <strong><code>Membership.GetUsers()</code></strong> from my code.</li> </ol> <p>I checked the DB tables for the Sql Membership provider, but it doesn't look like there is a duplicate user, as the exception suggests. But how can this happen??? I don't think I've modified the database directly, and I'm sure that the Membership Provider has checks built in to prevent this anyway.</p> <p>So what could the problem be???</p> http://stackoverflow.com/questions/1540591/how-can-i-split-an-xslforeach-into-multiple-parts 2 How can I split an <xsl:foreach> into multiple parts? SkippyFire 2009-10-08T21:25:34Z 2009-10-09T13:17:34Z <p>I have a list of elements that I want to split into individual lists of 3. The end result would be something like this:</p> <pre><code>&lt;ul&gt; &lt;li&gt;element&lt;/li&gt; &lt;li&gt;element&lt;/li&gt; &lt;/ul&gt; &lt;ul&gt; &lt;li&gt;element&lt;/li&gt; &lt;li&gt;element&lt;/li&gt; &lt;/ul&gt; &lt;ul&gt; &lt;li&gt;element&lt;/li&gt; &lt;li&gt;element&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>My XSLT is like this, but it doesn't work, because I can't insert <code>&lt;/ul&gt;</code>, and I can't insert a less than sign (<code>&lt;</code>).</p> <pre><code>&lt;ul&gt; &lt;xsl:for-each select="$myroot/item"&gt; &lt;li&gt;&lt;/li&gt; &lt;xsl:if test="position() mod $maxItemsPerColumn = 0"&gt; &lt;!-- I want to close my ul, and start a new one here, but it doesn't work! --&gt; &lt;/xsl:if&gt; &lt;/xsl:for-each&gt; &lt;/ul&gt; </code></pre> <p>Any ideas? Thanks in advance!</p> http://stackoverflow.com/questions/1539772/what-does-a-tortoisesvn-actually-cleanup-do 2 What does a TortoiseSVN actually cleanup do? SkippyFire 2009-10-08T18:56:04Z 2009-10-08T23:09:01Z <p><strong>What does a TortoiseSVN actually cleanup do?</strong></p> <p>I have not found a pattern, but I frequently get asked to do a "cleanup" while trying to commit code.</p> <p><strong>UPDATE:</strong></p> <p>If TortoiseSVN knows when its dirty... <strong>Why doesn't it run a cleanup itself!?!?</strong></p> http://stackoverflow.com/questions/1498819/how-can-i-select-the-first-element-using-xslt 0 How can I select the first element using XSLT? SkippyFire 2009-09-30T15:20:33Z 2009-09-30T17:06:12Z <p>I have a list of news items, sorted by dateCreated. I have a preview box control where I only want to show the first item. How can I do that using XSLT?</p> <pre><code>&lt;xml&gt; &lt;news&gt; &lt;newsitem&gt; &lt;dateCreated&gt;2009-09-09&lt;/dateCreated&gt; &lt;summary&gt;Something great happened&lt;/sumamry&gt; &lt;/newsitem&gt; &lt;newsitem&gt; &lt;dateCreated&gt;2009-09-08&lt;/dateCreated&gt; &lt;summary&gt;Something bad happened&lt;/sumamry&gt; &lt;/newsitem&gt; &lt;newsitem&gt; &lt;dateCreated&gt;2009-09-07&lt;/dateCreated&gt; &lt;summary&gt;Something really bad happened&lt;/sumamry&gt; &lt;/newsitem&gt; &lt;/news&gt; &lt;/xml&gt; </code></pre> http://stackoverflow.com/questions/1473392/is-it-acceptable-to-only-use-the-else-portion-of-an-if-else-statement 14 Is it acceptable to only use the 'else' portion of an 'if-else' statement? SkippyFire 2009-09-24T18:32:10Z 2009-09-25T18:05:58Z <p>Sometimes, I feel like it is easier to check if all of the conditions are true, but then only handle the "other" situation.</p> <p><strong>I guess I sometimes feel that it is easier to know that something is valid, and assume all other cases are not valid.</strong></p> <p>For example, let's say that we only really care about when there is something wrong:</p> <pre><code>object value = GetValueFromSomeAPIOrOtherMethod(); if((value != null) &amp;&amp; (!string.IsNullOrEmpty(value.Prop)) &amp;&amp; (possibleValues.Contains(value.prop))) { // All the conditions passed, but we don't actually do anything } else { // Do my stuff here, like error handling } </code></pre> <p>Or should I just change that to be:</p> <pre><code>object value = GetValueFromSomeAPIOrOtherMethod(); if((value == null) || (string.IsNullOrEmpty(value.Prop)) || (!possibleValues.Contains(value.prop))) { // Do my stuff here, like error handling } </code></pre> <p>Or (which I find ugly):</p> <pre><code>object value = GetValueFromSomeAPIOrOtherMethod(); if(!((value != null) &amp;&amp; (!string.IsNullOrEmpty(value.Prop)) &amp;&amp; (possibleValues.Contains(value.prop)))) { // Do my stuff here, like error handling } </code></pre> http://stackoverflow.com/questions/1364315/how-do-i-use-google-analytics-with-sitecore-6 1 How do I use Google Analytics with Sitecore 6? SkippyFire 2009-09-01T19:49:14Z 2009-09-18T12:00:21Z <p>I know that I need to add the tracking code snippet at the bottom of all my pages, but is there a central location to do this?</p> <p>Or do I need to add this tracking code to all of my templates?</p> <p>I guess that I could wrap the snippet in a user control, or external .js file, and reference it on each page, but is there a global footer somewhere? The site I'm working on has about 30-40 layouts, and adding it to each one would be a pain!</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1435178/exception-when-trying-to-navigate-to-web-service-in-browser 0 Exception when trying to navigate to web service in browser. SkippyFire 2009-09-16T20:07:20Z 2009-09-17T02:58:43Z <p>I have a web service setup for various operations on my website. I am getting this exception when try to navigate to my service in a browser. The service is setup in a virtual directory in IIS in the website.</p> <blockquote> <p>"Could not find a base address that matches scheme http for the endpoint with binding WSHttpBinding. Registered base address schemes are []."</p> </blockquote> <p>Any idea why it would throw that exception? Did I configure something incorrectly with my website, virtual directory, or web.config?</p> <p><strong>UPDATE</strong> Below I included the config sections you asked for, and another thing I forgot to mention is that I have the Kentico CMS running in my main website. Could that be causing some sort of conflict?</p> <p>Here is the <code>&lt;system.serviceModel&gt;</code> section from my web.config:</p> <pre><code> &lt;system.serviceModel&gt; &lt;bindings&gt; &lt;wsHttpBinding&gt; &lt;binding name="WSHttpBinding_IPicklistService" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288" maxReceivedMessageSize="131072" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false"&gt; &lt;readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" /&gt; &lt;reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" /&gt; &lt;security mode="None"&gt; &lt;transport clientCredentialType="Windows" proxyCredentialType="None" realm="" /&gt; &lt;message clientCredentialType="Windows" negotiateServiceCredential="true" establishSecurityContext="true" /&gt; &lt;/security&gt; &lt;/binding&gt; &lt;binding name="WSHttpBinding_ILeadService" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288" maxReceivedMessageSize="131072" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false"&gt; &lt;readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" /&gt; &lt;reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" /&gt; &lt;security mode="None"&gt; &lt;transport clientCredentialType="Windows" proxyCredentialType="None" realm="" /&gt; &lt;message clientCredentialType="Windows" negotiateServiceCredential="true" establishSecurityContext="true" /&gt; &lt;/security&gt; &lt;/binding&gt; &lt;binding name="WSHttpBinding_IWebUserService" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288" maxReceivedMessageSize="131072" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false"&gt; &lt;readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" /&gt; &lt;reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" /&gt; &lt;security mode="None"&gt; &lt;transport clientCredentialType="Windows" proxyCredentialType="None" realm="" /&gt; &lt;message clientCredentialType="Windows" negotiateServiceCredential="true" establishSecurityContext="true" /&gt; &lt;/security&gt; &lt;/binding&gt; &lt;/wsHttpBinding&gt; &lt;/bindings&gt; &lt;client&gt; &lt;endpoint address="http://myothersite.com/service1/PicklistService.svc" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IPicklistService" contract="PicklistService.IPicklistService" name="WSHttpBinding_IPicklistService" /&gt; &lt;endpoint address="http://myothersite.com/service1/WebUserService.svc" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IWebUserService" contract="ProfileService.IWebUserService" name="WSHttpBinding_IWebUserService" /&gt; &lt;endpoint address="http://myothersite.com/service1/LeadService.svc" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_ILeadService" contract="LeadService.ILeadService" name="WSHttpBinding_ILeadService" /&gt; &lt;/client&gt; &lt;/system.serviceModel&gt; </code></pre> <p>Here is the <code>&lt;system.serviceModel&gt;</code> configuration section from the web.config of my virtual directory where the service is:</p> <pre><code> &lt;system.serviceModel&gt; &lt;services&gt; &lt;service name="mysite.Kentico.Services.KenticoUserService" behaviorConfiguration="customBehavior"&gt; &lt;endpoint address="" binding="wsHttpBinding" bindingConfiguration="customWsHttpBinding" contract="mysite.Kentico.Services.IKenticoUserService" /&gt; &lt;endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /&gt; &lt;/service&gt; &lt;/services&gt; &lt;bindings&gt; &lt;wsHttpBinding&gt; &lt;binding name="customWsHttpBinding"&gt; &lt;!--This binding config for production--&gt; &lt;!--&lt;security mode="Message"&gt; &lt;message clientCredentialType="Certificate"/&gt; &lt;/security&gt;--&gt; &lt;!--This binding config for testing--&gt; &lt;security mode="None"&gt; &lt;transport clientCredentialType="None" /&gt; &lt;message establishSecurityContext="false" /&gt; &lt;/security&gt; &lt;/binding&gt; &lt;/wsHttpBinding&gt; &lt;/bindings&gt; &lt;behaviors&gt; &lt;serviceBehaviors&gt; &lt;behavior name="customBehavior"&gt; &lt;serviceMetadata httpGetEnabled="true" /&gt; &lt;serviceDebug includeExceptionDetailInFaults="true" /&gt; &lt;!--&lt;serviceCredentials&gt; &lt;clientCertificate&gt; &lt;authentication certificateValidationMode="ChainTrust" revocationMode="Online" /&gt; &lt;/clientCertificate&gt; --&gt; &lt;!--Name of the cert goes into the findValue attribute below--&gt; &lt;!-- &lt;serviceCertificate findValue="" x509FindType="FindByThumbprint" storeLocation="LocalMachine" storeName="My"/&gt; &lt;/serviceCredentials&gt;--&gt; &lt;/behavior&gt; &lt;/serviceBehaviors&gt; &lt;/behaviors&gt; &lt;serviceHostingEnvironment&gt; &lt;baseAddressPrefixFilters&gt; &lt;add prefix="http://mysite.com" /&gt; &lt;add prefix="http://mysite.com/KenticoServiceHost/" /&gt; &lt;/baseAddressPrefixFilters&gt; &lt;/serviceHostingEnvironment&gt; &lt;/system.serviceModel&gt; </code></pre> http://stackoverflow.com/questions/1427967/when-would-you-want-to-nest-classes-in-c 6 When would you want to nest classes in C#? SkippyFire 2009-09-15T15:42:11Z 2009-09-15T16:00:41Z <p>Specifically, can anyone give me concrete examples of when or when not to use nested classes?</p> <p>I've known about this feature since forever, but never had a reason to use it.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1772795/best-framework-in-php Comment by SkippyFire on Best Framework in PHP SkippyFire 2009-11-20T20:19:40Z 2009-11-20T20:19:40Z You need SOME sort of direction, like &quot;what is the best PHP framework for RAD&quot;, or &quot;What is the best framework for enterprise projects&quot;, etc. That's like saying &quot;what is the best sport&quot;, or &quot;what is the best food&quot;, or &quot;what is the best medicine&quot;. COME ON! http://stackoverflow.com/questions/1580022/how-can-i-modify-the-entire-asp-net-page-content-right-before-its-output/1695021#1695021 Comment by SkippyFire on How can I modify the entire ASP.NET page content right before it's output? SkippyFire 2009-11-09T19:34:17Z 2009-11-09T19:34:17Z Oh yeah... Ektron... I personally don't like it. The whole product is ass-backwards. Their API is ugly, and very convoluted. The whole product is buggy, but the code is obfuscated so you have no hope of trying to figure out what they were trying to do. Their support forums aren't very good. If you're looking for a new CMS, I would recommend Kentico. For the most part, you don't have to write any code. But when you do write code, their API is awesome! The only gripe I have with Kentico is that their caching system is confusing, and by default, not setup in an intelligent way. http://stackoverflow.com/questions/1580022/how-can-i-modify-the-entire-asp-net-page-content-right-before-its-output/1695021#1695021 Comment by SkippyFire on How can I modify the entire ASP.NET page content right before it's output? SkippyFire 2009-11-09T19:24:03Z 2009-11-09T19:24:03Z Thanks for the answer. Up-vote for effort! The BasePage thing isn't really a different solution, but more of an addition to the accepted one. But good idea. I think it's always a good idea to create a BasePage class that all of your page derive from. Or maybe 2-3 depending on the types of pages you have. As for the HttpModule and filter, that is a great! Again, similar to the accepted solution, but the logic for the replacements would be extracted out of the page. This would be great if you're doing replacements in more than one place! Nice! http://stackoverflow.com/questions/703054/on-a-deployed-asp-net-web-site-project-can-i-update-a-resx-file-without-recompi/703103#703103 Comment by SkippyFire on On a deployed ASP.NET web site project, can I update a .resx file without recompiling? SkippyFire 2009-10-22T20:06:15Z 2009-10-22T20:06:15Z I believe that any modification made to the App_GlobalResources or App_LocalResources folder causes the app domain to be reloaded. http://stackoverflow.com/questions/1580022/how-can-i-modify-the-entire-asp-net-page-content-right-before-its-output/1580049#1580049 Comment by SkippyFire on How can I modify the entire ASP.NET page content right before it's output? SkippyFire 2009-10-16T20:30:22Z 2009-10-16T20:30:22Z I posted my code that is basically doing what you're doing. http://stackoverflow.com/questions/1580022/how-can-i-modify-the-entire-asp-net-page-content-right-before-its-output/1580049#1580049 Comment by SkippyFire on How can I modify the entire ASP.NET page content right before it's output? SkippyFire 2009-10-16T20:22:00Z 2009-10-16T20:22:00Z I am using this method right now, but will wait to accept the answer to see if there is a better solution. Basically I... Let the page write to a temp buffer. Modify the buffer. Replace the original buffer with the modified one. http://stackoverflow.com/questions/1580022/how-can-i-modify-the-entire-asp-net-page-content-right-before-its-output/1580064#1580064 Comment by SkippyFire on How can I modify the entire ASP.NET page content right before it's output? SkippyFire 2009-10-16T20:17:16Z 2009-10-16T20:17:16Z Unfortunately, I can't do that because these &quot;placeholders&quot; will be inside content that get rendered inside a user control, that I can't touch. So by the time it gets to me, the only thing I could hope to do is look at the rendered content. http://stackoverflow.com/questions/1278171/are-there-any-performance-issues-or-caveats-with-resource-resx-files/1554088#1554088 Comment by SkippyFire on Are there any performance issues or caveats with resource (.resx) files? SkippyFire 2009-10-13T13:31:59Z 2009-10-13T13:31:59Z I think there is an external .resx editor tool... http://stackoverflow.com/questions/1362513/can-i-use-javascript-to-set-the-name-attribute/1362821#1362821 Comment by SkippyFire on Can I use JavaScript to set the 'name' attribute? SkippyFire 2009-10-09T14:04:31Z 2009-10-09T14:04:31Z This seems to be the only reliable way to do this in IE ); http://stackoverflow.com/questions/1540591/how-can-i-split-an-xslforeach-into-multiple-parts/1541517#1541517 Comment by SkippyFire on How can I split an <xsl:foreach> into multiple parts? SkippyFire 2009-10-09T14:01:11Z 2009-10-09T14:01:11Z Awesome! Works perfectly! http://stackoverflow.com/questions/1539772/what-does-a-tortoisesvn-actually-cleanup-do/1539803#1539803 Comment by SkippyFire on What does a TortoiseSVN actually cleanup do? SkippyFire 2009-10-09T13:44:14Z 2009-10-09T13:44:14Z NO we don't have any network issues. It's on the local network. As I said, it's not every time, it just seems to happen randomly. I'm guessing that I am doing something that is causing this. Moving files, deleting files or something... http://stackoverflow.com/questions/1511557/looking-for-hardware-that-will-easily-interface-with-my-net-code/1511620#1511620 Comment by SkippyFire on Looking for Hardware that will easily interface with my .NET code. SkippyFire 2009-10-09T13:37:55Z 2009-10-09T13:37:55Z Do you know of any cheap hardware that runs on the .NET Microframework? http://stackoverflow.com/questions/1539772/what-does-a-tortoisesvn-actually-cleanup-do/1539803#1539803 Comment by SkippyFire on What does a TortoiseSVN actually cleanup do? SkippyFire 2009-10-08T19:14:00Z 2009-10-08T19:14:00Z I don't get it every single time, but I see it pretty often. http://stackoverflow.com/questions/1527356/how-to-redirect-a-parent-page-to-a-child-page-in-sitecore-6/1530031#1530031 Comment by SkippyFire on How to redirect a parent page to a child page in Sitecore 6? SkippyFire 2009-10-08T01:38:24Z 2009-10-08T01:38:24Z Thanks for the suggestion Zooking. Where exactly should I put this code? In the code-behind of a sub-layout, instead of a redirect? Thanks. http://stackoverflow.com/questions/1511557/looking-for-hardware-that-will-easily-interface-with-my-net-code/1511625#1511625 Comment by SkippyFire on Looking for Hardware that will easily interface with my .NET code. SkippyFire 2009-10-05T13:12:28Z 2009-10-05T13:12:28Z That definitely sounds awesome! However, it would destroy my wallet, and therefore, I would die by the hand of my wife!