User Loscas - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T09:19:10Zhttp://stackoverflow.com/feeds/user/22706http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/319230/cascading-to-a-auto-completing-text-box0Cascading to a auto completing text boxLoscas2008-11-25T23:13:25Z2009-07-10T01:00:01Z
<p>I have a web page where the user will enter their address. They will select their country and region in cascading drop down lists. I would like to provide an auto completing textbox for their city, but I want to be context sensitive to the country and region selections. I would have just used another cascading drop down list, however the number of cities exceeds the maximum number of list items. </p>
<p>Any suggestions or cool code spinets out there that may help me out?</p>
http://stackoverflow.com/questions/602723/php-client-calling-net-3-5-sp1-web-service0PHP client calling .net 3.5 sp1 web service Loscas2009-03-02T15:23:08Z2009-03-02T16:41:52Z
<p>I need to create a web service that a PHP client can call. The service needs to accept 1 or many integers, provide security, and does not need to return any data (though other similar services may need to). This particular service will is intended to trigger a data extract that will be picked up later.</p>
<p>My manager believes that creating RESTful services is the best route to pursue, but I have no experience with those.</p>
<ol>
<li><p>What is the recommended approach to take here?</p></li>
<li><p>If REST is the correct approach, are there any good examples, books, walk through, or tutorials available that are not videos?</p></li>
</ol>
<p>One last note, what I use now will set a precedent for migrating our products backend logic from PHP to .net.</p>
http://stackoverflow.com/questions/188919/how-to-document-a-wcf-web-service-in-a-technical-spec2How to document a WCF web-service in a technical spec?Loscas2008-10-09T19:51:56Z2008-11-16T21:49:20Z
<p>Other than pasting a WDSL in the tech spec, what are the recommended ways to document a WCF web-service before you begin coding?</p>
http://stackoverflow.com/questions/139852/wcf-customheader-or-messagebody-for-context0WCF customheader or messagebody for context?Loscas2008-09-26T14:25:03Z2008-10-30T00:03:32Z
<p>I'm witting a WCF service for a customer to send part information to our application. We have multiple customers that will have one or many locations, and part information is scoped to each location for the customer. When the customer calls our service they will need to specify the location. </p>
<p>Options that we have considered are:</p>
<p>1) Placing a location id(s) in a custom header. All part information would apply to all locations listed.</p>
<p>2) Adding a "context" node to the message body. All part information would apply to all locations listed.</p>
<p>3) Adding a location node in the message body over that would contain the part information. Each location would have it's own list of parts. </p>
<p>I'm looking for best practice/standards help in determining how this should be handled. We will have to create other services that will have the customer/location scope as well, and would like to handle this in a consistent manor. </p>
http://stackoverflow.com/questions/231062/what-are-your-most-common-uses-for-regular-expressions/231095#2310951Answer by Loscas for What are your most common uses for regular expressions?Loscas2008-10-23T19:24:43Z2008-10-23T19:24:43Z<p>In addition to Nescio's answers...</p>
<ul>
<li>Passwords</li>
<li>Email addresses</li>
<li>Disallowing characters various
charters in text fields like
non-alphanumeric characters</li>
</ul>
http://stackoverflow.com/questions/230927/what-would-be-the-most-convenient-way-to-connect-visual-studio-2005-c-to-oracl/231073#2310731Answer by Loscas for What would be the most convenient way to connect Visual Studio 2005 (C#) to Oracle8?Loscas2008-10-23T19:19:36Z2008-10-23T19:19:36Z<p>Based on my experience with Oracle 10g....</p>
<p>I recommend using the Oracle data provider (ODP.Net) and not using the Microsoft for Oracle data provider based on my experience with Oracle 10g. Microsoft's has not been updated in years and does not support everything in Oracle 10g, so I would definitely check into that for Oracle 8.</p>
<p>Following <a href="http://msdn.microsoft.com/en-us/library/ms254494.aspx" rel="nofollow">Microsoft guidance</a> on connection string in the app.config file, you should store it like:</p>
<pre><code><?xml version='1.0' encoding='utf-8'?>
<configuration>
<connectionStrings>
<clear />
<add name="Name"
providerName="System.Data.ProviderName"
connectionString="Valid Connection String;" />
</connectionStrings>
</configuration>
</code></pre>
<p>I've also worked on apps with the connection information stored in application settings, which worked fine for our application.</p>
http://stackoverflow.com/questions/230571/is-the-automated-testing-still-referred-to-as-smoke-testing/230634#2306343Answer by Loscas for Is the automated testing still referred to as smoke testing?Loscas2008-10-23T17:26:51Z2008-10-23T17:26:51Z<p>Automated testing can do smoke testing (shallow, wide), but it can also do other testing like <a href="http://en.wikipedia.org/wiki/Regression_testing" rel="nofollow">regression testing</a>, and <a href="http://en.wikipedia.org/wiki/Unit_testing" rel="nofollow">unit testing</a>. Basically automated testing can be any repeatable test. </p>
<p>Yes, smoke testing is still being used. I've generally seen two scenarios. The first is to determine whether the software is ready for more in depth testing. The second, and IMO more common, to skimp on fully testing functionality that should not have been affected by the changes to the new build.</p>
http://stackoverflow.com/questions/230186/page-load-issue-in-asp-net-2-0/230363#2303630Answer by Loscas for Page.Load issue in ASP.NET 2.0Loscas2008-10-23T16:15:32Z2008-10-23T16:15:32Z<p>Your default page should inherit OverheadClass</p>
<pre><code> Partial Public Class _Default
Inherits OverheadClass
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
'Do some page stuff'
End Sub
End Class
</code></pre>
<p>And OverheadClass should inherit System.Web.UI.Page</p>
<pre><code>Public Class OverheadClass
Inherits System.Web.UI.Page
Public Sub Sub_OverheadClass_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyClass.Load
'Do some base stuff'
End Sub
End Class
</code></pre>
http://stackoverflow.com/questions/230153/when-can-i-start-teaching-my-son-to-program/230237#2302370Answer by Loscas for When can I start teaching my son to program?Loscas2008-10-23T15:39:43Z2008-10-23T15:39:43Z<p>I think it's a great idea to start exposing you child to computers. A key smasher that provides entertaining feedback id a good way to get them interested and used to the mouse and keyboard. A friend of mine used his children's names as passwords to help the children learn to spell their names.</p>
<p>Once they start reading and writing, capably of writing simple sentences like "See spot run", I think you could start introducing them to programming. This needs to be something fun and engaging for them, so proceed with caution or you may turn them off to it. </p>
<p>I think the language doesn't matter as much as programming structure and concepts. Choose the language that works well for their project and interests. </p>
<p>What's most important is that the child wants to learn programming. Find ways to tie it into their interests, and make sure they see you programming. Let them sit with you and ask questions. </p>
http://stackoverflow.com/questions/219296/implementing-team-foundation-server-with-a-small-development-team5Implementing Team Foundation Server with a small development teamLoscas2008-10-20T17:50:41Z2008-10-22T14:18:09Z
<p>We have a small 3 developer team that is currently using Subversion for our source control. We expect the team to group to 8 members within the next 6 to 12 months. We are considering changing our source control to either TFS or Mercurial for improved branching. I know TFS is overkill for just branching, but that is the immediate need, and the other features of TFS could aid our team. One of our main concerns with TFS is we've heard that there is a lot of overhead deploying it, especially on a small team. I'm hoping to get some community insight into just how much overhead there may be involved, suggestions to make the process easier, and anything else the community may feel is useful in making the decision to implement.</p>
http://stackoverflow.com/questions/223400/checking-for-duplicates-in-a-complex-object-using-linq-or-lamda-expression1Checking for duplicates in a complex object using Linq or Lamda expressionLoscas2008-10-21T20:32:50Z2008-10-22T00:02:23Z
<p>I've just started learning linq and lamda expressions, and they seem to be a good fit for finding duplicates in a complex object collection, but I'm getting a little confused and hope someone can help put me back on the path to happy coding.</p>
<p>My object is structured like list.list.uniqueCustomerIdentifier</p>
<p>I need to ensure there are no duplicate uniqueCustomerIdentifier with in the entire complex object. If there are duplicates, I need to identify which are duplicated and return a list of the duplicates.</p>
http://stackoverflow.com/questions/219915/what-functionality-should-always-be-third-party/220014#2200140Answer by Loscas for What functionality should always be third-party?Loscas2008-10-20T21:28:52Z2008-10-20T21:28:52Z<p>Anything that is outside your core business is a good candidate for third party solutions. You want to spend your development time creating that core functionality that is unique(ish) and can not be purchased and used in a cost effective manor. </p>
<p>For example, lets look at web gridview control. Can you develop and extend a gridview yourself? Sure you can, but to develop, code, and test you grid view is going to take X amount of time and resources, which you can translate in to dollars. Now you have factor in reoccurring costs for support, maintenance, and bug fixes. </p>
<p>Now lets use the arbitrary amount I remember reading in some mag about the average US developer making $40 per hour including their benefits. There are whole web control suites available for around another approximated $800 per developer license. If your developer spends more than say 25 hours total on this one control, you could have purchased a whole suite and spent 5 hours integrating and testing. </p>
<p>Now hopefully I didn't get too confusing there, but the general gist is if you can buy it off the self it will probably save time and money, and instead focus on things you can't get off the self which are usually your money makers.</p>
http://stackoverflow.com/questions/219875/check-username-and-password-of-windows-account/219895#2198951Answer by Loscas for Check username and password of Windows accountLoscas2008-10-20T21:01:18Z2008-10-20T21:01:18Z<p>I suggest reading <a href="http://support.microsoft.com/kb/180548" rel="nofollow">http://support.microsoft.com/kb/180548</a> which I think will help you. It's a walk through from Microsoft on how to use WIN32 API to authenticate user credentials. </p>
http://stackoverflow.com/questions/219249/best-practices-for-source-control-and-bug-fixes5Best practices for source control and bug fixesLoscas2008-10-20T17:34:19Z2008-10-20T17:39:44Z
<p>If we need to issue a bug patch that does not include current development that has been committed, or any changes from their current version, what should be done to make the process safer and with lower overhead?</p>
<p>We are currently using Subversion for our source control in a small (3 developers) team primarily developing in Visual Studio 2008. We anticipate that the team may group to 8 developers over the next year, and for any previous release support to become more complicated. While most customers are on the current release, some are further behind.</p>
http://stackoverflow.com/questions/192260/calculating-a-date-around-working-days-hours/192791#1927911Answer by Loscas for Calculating a date around working days/hours?Loscas2008-10-10T19:43:07Z2008-10-10T19:43:07Z<p>Using Stu's <a href="http://stackoverflow.com/questions/5260/what-is-the-best-way-to-wrap-time-around-the-work-day#5334">answer</a> as a starting point, modify the IsInBusinessHours function to look up you business hours for the date parameter. A procedure like the following could be used:</p>
<pre><code>CREATE PROCEDURE [dbo].[IsInBusinessHours]
@MyDate DateTime
AS
BEGIN
SELECT CASE Count(*) WHEN 0 THEN 0 ELSE 1 END AS IsBusinessHour
FROM WorkHours
WHERE (DATEPART(hour, StartHours) <= DATEPART(hour, @MyDate)) AND (DATEPART(hour, EndHours) > DATEPART(hour, @MyDate)) AND (Day = DATEPART(WEEKDAY,
@MyDate))
END
</code></pre>
http://stackoverflow.com/questions/189252/share-your-vista-64bit-experiences/189307#1893070Answer by Loscas for Share your Vista 64bit experiencesLoscas2008-10-09T21:35:11Z2008-10-09T21:35:11Z<p>I'm running a custom Intel(R) Core(TM)2 CPU 6600 @ 2.40GHz, 8.00 GB, NVIDIA GeForce 7800 GT, with a 300gb raid 0 with 15mb cache on Vista 64. Only been on it a month, but it is fast and stable, with no compatibility issues.</p>
http://stackoverflow.com/questions/188647/what-would-you-pick-for-your-asp-net-webapp-nhibernate-linq-or-subsonic/188859#1888594Answer by Loscas for What would you pick for your ASP.NET webapp; nHibernate, Linq, or SubSonicLoscas2008-10-09T19:38:30Z2008-10-09T19:38:30Z<p>I've been using <a href="http://www.llblgen.com" rel="nofollow">LLBLGen Pro</a> for my ORM for about a year, and it has worked out fairly well. Though I haven't used SubSonic, I'm told they are similar. From scratch it can create a data access layer from your database and be ready to use in only a couple minutes. There a slight learning curve, well at least for me, but the help files provide enough information to get you through almost anything you run into. The application can be used as is installed with no problem, but also supports vast customization (maybe too much?). </p>
http://stackoverflow.com/questions/139852/wcf-customheader-or-messagebody-for-context/141610#1416100Answer by Loscas for WCF customheader or messagebody for context?Loscas2008-09-26T20:00:01Z2008-09-26T20:16:46Z<p>We plan to send a response with processing summary information and details about any part that could not be processed. </p>
<p>The message contract has a collection of parts, and the parts are defined in a data contract. There is also a flag in the message contract to control processing of the parts collection. This may or may not be the right place for this flag.</p>