User pdavis - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T15:20:34Zhttp://stackoverflow.com/feeds/user/7819http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1752199/xml-milestones-or-elements-that-cross-other-elements0XML: Milestones or Elements that cross other elementspdavis2009-11-17T22:08:41Z2009-11-18T15:12:23Z
<p>I'm working with <a href="http://bibletechnologies.net/" rel="nofollow">OSIS</a> (Open Scriptural Information Standard), an XML schema for describing scripture and related text. When I first looked at a sample of the XML I noticed some oddities that I have not seen in XML before. Mainly tags being closed followed by content that would logically belong inside the closed tag. After looking through the <a href="http://img.forministry.com/7/7B/7BB51FB8-84B3-4FF3-939ED473FA90A632/DOC/OSIS2%5F1UserManual%5F06March2006%5F-%5Fwith%5FO%27Donnell%5Fedits.PDF" rel="nofollow">documentation</a>, I found that they call this type of markup "Milestones." </p>
<p>In this instance it is being used because a quote can begin in one verse and span several verses before being closed. It seems like a hack and I am going to have to do some coding to parse and search through, and display sections of the XML for the web. While I understand that this is technically valid XML, it can't be verified [easily] against the schema for correctness and standard XML parsing APIs will not be able to grab elements between milestones. I believe there are better ways that this "standard" could have been formed. What are your thoughts on this type of markup? I haven't really found any other references to this practice, where else is it used. Is it valid?</p>
<p>From the documentation...</p>
<blockquote>
<p>In XML the normal form of an element
is a start tag and an end tag:
<q>...</q>. For handling markup that
crosses boundaries, however, a special
form must be used. It consists of two
totally empty instances of the same
element type: one to mark the starting
point, and one to mark the ending
point. The two empty elements identify
themselves as to which is the start
and which is the end, and co-identify
themselves by an <strong>sID</strong> attribute
(the start of the traditional element)
and an <strong>eID</strong> attribute (the end of
the traditional element), the values
of which must match.</p>
<p>Empty elements are indicated in XML by
a tag with "/" preceding the final
">": thus <q/> rather than <q> or
</q>. Elements used in this way are
commonly called ‘<strong>milestones</strong>,’ and
those particular elements in OSIS that
permit this alternate encoding are
thus called ‘<strong>milestoneable</strong>.’</p>
</blockquote>
<p>Here is a short example...</p>
<pre><code><verse osisID="Acts.7.2" sID="a72"/>To this he replied:
<speech who=”Stephan”>Brothers and fathers, listen to me! The God of glory appeared
to our father Abraham while he was still in Mesopotamia, before he lived in Haran
<verse eID=”a72”/>
...
<verse osisID="Acts.7.6" sID="a76"/>God spoke to him in this way: <q
type=”embedded” marker=”'”>Your descendants will be strangers in a country not
their own, and they will be enslaved and mistreated four hundred years. <verse
eID="a76"/>
<verse osisID="Acts.7.7" sID="a77"/>But I will punish the nation they serve as
slaves,</q> God said, <q type=”embedded” marker=”'”>and afterward they will come out
of that country and worship me in this place.</q><verse eID="a77"/>
...
<verse osisID="Acts.7.53" sID="a79"/>you who have received the law that was put
into effect through angels but have not obeyed it.
<verse eID="a79"/>
</speech>
</code></pre>
http://stackoverflow.com/questions/1632747/programatically-changing-explorer-view-in-c0Programatically Changing Explorer View in C#pdavis2009-10-27T18:22:16Z2009-10-27T23:53:10Z
<p>I'm programatically creating a folder using C# and need to set the default view of the folder to "Thumbnails".</p>
http://stackoverflow.com/questions/1411068/quick-uses-for-scripting-languages/1411137#14111370Answer by pdavis for Quick uses for scripting languages?pdavis2009-09-11T14:15:09Z2009-09-11T14:15:09Z<p>Most recently in my Windows centric world I have used it to rename large numbers of files, search/filter log files for a specific occurrence, perform network diagnostics, and a host of smaller things I can't think of at the moment that some of my colleagues not having a UNIX background would never have thought of.</p>
http://stackoverflow.com/questions/1394141/automated-gui-testing-net-cf-windows-mobile-5/1394535#13945350Answer by pdavis for Automated GUI Testing .NET CF (Windows Mobile 5)pdavis2009-09-08T15:07:31Z2009-09-08T15:07:31Z<p>I have done simple GUI testing with AutoHotKey <a href="http://www.autohotkey.com/" rel="nofollow">http://www.autohotkey.com/</a>. This would of course only work while running your mobile application in a VM, but would be good for regression testing. As a developer, I have tried other testing platforms but they have always seemed to have major short comings, be overpriced and under utilized. The main reason for this can be the lack of a dedicated testing department. If you are not doing test driven development start there, then progress to something [relatively] simple and free like AutoHotKey. If you find that AutoHotKey is being utilized and finding or helping to prevent problems then investigate moving up to more powerful tools as needed.</p>
http://stackoverflow.com/questions/1394268/should-i-combine-a-corporate-website-and-a-website-with-its-sponsor-activities-un/1394344#13943440Answer by pdavis for Should I combine a corporate website and a website with its sponsor activities under the same domain?pdavis2009-09-08T14:29:30Z2009-09-08T14:29:30Z<p>Use basketball.company-a.com for the basketball site and let people go directly to that site if they wish. <strong>Do not</strong> combine the content on this site with the content on [www.]company-a.com. You will want to create a small page on [www.]company-a.com that links to basketball.company-a.com. You will also want a link from basketball.company-a.com that links to the corporate website.</p>
<p>In essence each site should contain only its own content and link to the other site for applicable content. In programming terms the two sites should be loosely coupled.</p>
http://stackoverflow.com/questions/1387208/building-a-website-user-base/1387238#13872380Answer by pdavis for building a website user base?pdavis2009-09-07T01:40:08Z2009-09-07T01:40:08Z<p>For selling your software or web application you will need advertising dollars or have already developed a name for yourself and a place in the community you are trying to enter into. We would need to know more about what you are trying to promote to give you specifics, but one thing you can do is look for large gatherings of people that would be interested in your product and hand out information on the product. While this isn't cheap, it is probably as cheap as it gets.</p>
<p>Alternatively you could just sell your web application straight out and let someone who knows the business side try to market it.</p>
http://stackoverflow.com/questions/1373566/what-is-the-best-dbms-for-the-job/1373852#13738520Answer by pdavis for What is the best DBMS for the job?pdavis2009-09-03T14:45:04Z2009-09-03T14:45:04Z<p>I have used both and even migrated projects from MySQL to PostgreSQL and in my experience PostgreSQL was the better choice. For my applications it was at least on par speed wise with MySQL and offered needed features not found in MySQL. That being said, if MySQL meets your needs, it is a good little dbms and like other dbms' continues to improve.</p>
http://stackoverflow.com/questions/1372347/why-does-microsoft-not-force-silverlight-onto-users-machines-through-a-windows-up/1373767#13737670Answer by pdavis for Why does Microsoft not force Silverlight onto users machines through a Windows update?pdavis2009-09-03T14:32:05Z2009-09-03T14:32:05Z<p>For all the hype, Silverlight is not all that great to develop in and doesn't bring anything to the user experience that couldn't be better achieved through dhtml/ajax.</p>
http://stackoverflow.com/questions/1319914/is-it-worth-it-to-learn-silverlight-and-develop-applications-using-it/1320141#13201410Answer by pdavis for Is it worth it to learn Silverlight and develop applications using it?pdavis2009-08-24T01:50:48Z2009-08-24T01:50:48Z<p>I tried it and did not like it. I didn't like the split development environment, xaml, or the limited install base and platforms it runs on. The IDE and platform itself still has a ways to go before I would consider it for use in a production environment.</p>
http://stackoverflow.com/questions/1219871/can-you-render-an-asp-net-control-in-a-non-asp-net-page-via-ajax/1233843#12338431Answer by pdavis for Can you Render an ASP.Net control in a Non ASP.Net page via AJAXpdavis2009-08-05T15:00:15Z2009-08-05T15:00:15Z<p>You could place the control in a web service that returns the raw HTML as output and call the web service from AJAX placing the results wherever you wanted using dynamic HTML. You might have to play around with the output buffer of the control to get this to work the way you want it though.</p>
http://stackoverflow.com/questions/150192/using-underscores-in-java-variables-and-method-names/150200#150200-4Answer by pdavis for Using underscores in Java variables and method namespdavis2008-09-29T19:16:40Z2009-08-03T14:52:14Z<p>Yes it is bad style.</p>
http://stackoverflow.com/questions/150192/using-underscores-in-java-variables-and-method-names/150202#150202-4Answer by pdavis for Using underscores in Java variables and method namespdavis2008-09-29T19:17:07Z2009-08-03T14:51:32Z<p>No it is not bad style.</p>
http://stackoverflow.com/questions/1207152/set-value-of-datetime-field-to-null/1212849#12128491Answer by pdavis for Set value of datetime field to nullpdavis2009-07-31T14:28:56Z2009-07-31T14:28:56Z<p>I've had similar issues with this in the past. It is indeed a known bug. One work around is to set the field to the min or max value of the type and check for this value wherever needed and do the appropriate conversions. Depending on your setup and use, you could create a trigger to convert min/max values to null and thus minimize the code required to handle such a work around.</p>
http://stackoverflow.com/questions/1188141/techniques-for-keeping-your-projects-on-the-latest-version/1188832#11888321Answer by pdavis for Techniques for keeping your projects on the latest versionpdavis2009-07-27T15:25:42Z2009-07-27T15:25:42Z<p>Speaking from a management point of view, don't upgrade unless there is a compelling reason. You have to look at what the upgrade brings to your project. If there are no benefits to the upgrade, don't do it. Obviously this isn't a hard and fast rule, but most teams I know don't have time to spend upgrading systems for no reason, they are too busy with feature requests and bug fixes. I recommend working in upgrades on the following basis:</p>
<ol>
<li>The new version runs
[significantly] faster or more
efficiently and your
customers/clients will see this
improvement or it will reduce your
immanent hardware needs. </li>
<li>Features
have been added that you or your
customers/clients want and can take
[immediate] advantage of. </li>
<li>Security enhancement for a security
flaw that affects your current or
immediate future architecture. </li>
<li>License/support reasons. If you are
at the end of your contract then you
will probably want to make the final
jump to the last version of the
software that you are entitled to
while you still have support for the
upgrade. Alternately if you are on
such an old version of the software
that finding support documentation
for it is difficult then upgrading
is certainly called for. </li>
<li>Some aspect of the project that you are
working on is directly impacted by
the software that could be
upgraded. If you are already going
to be working with it and testing
the functionality, it is probably a
good time to upgrade and [probably]
won't add significant load to the
project. </li>
<li>Major changes. If your
project or the software it relies on
have undergone major changes then it
is probably a good time to add the
update(s) into your project plan.
Major changes implies a more
difficult upgrade path and should be
persude on a scheduled basis rather
than having to be shoe horned in at the last minute due to a needed fix or enhancement.</li>
</ol>
<p>Specific reasons not to upgrade:</p>
<ol>
<li>Software, installation, and regression testing costs money. Hence the need for a compelling reason to upgrade.</li>
<li>New software is often buggy or has unknown "features." For this reason many choose to stay one version behind the latest release.</li>
<li>Newer versions can often be slower than previous versions, this is especially true for small updates and patches.</li>
<li>Compatibility issues. Upgrades break things, it is better to skip as many incremental upgrades as possible in order to avoid updates that break compatibility, compatibility that may be fixed in the next update.</li>
</ol>
<p>I recommend keeping a list of all software that your project utilizes along with their version and last upgrade date (along with other important information such as licensing info, support info, etc.). Evaluate every item on this list once a year in order to insure that you don't miss any updates that match a reason to upgrade that you may have missed. Software on this list with an old version/date and a newer version available may be incentive enough to convince management that an upgrade should be done.</p>
http://stackoverflow.com/questions/1132256/references-on-creating-charts-graphs-in-php/1132925#11329250Answer by pdavis for References on creating Charts/Graphs in PHP ?pdavis2009-07-15T17:57:25Z2009-07-15T17:57:25Z<p>For some simple charts and graphs I can recommend <a href="http://www.webguys.com/pdavis/Programs/html_graphs/" rel="nofollow">HTML_Graphs</a>. It is a bit old now but easy to implement, uses straight HTML, and doesn't rely on any third party services or libraries.</p>
http://stackoverflow.com/questions/104850/c-test-if-string-is-a-guid-without-throwing-exceptions/104932#1049328Answer by pdavis for C#: Test if string is a guid without throwing exceptions?pdavis2008-09-19T19:46:19Z2009-05-27T11:58:26Z<p>Well, here is the regex you will need...</p>
<pre><code>^[A-Fa-f0-9]{32}$|^({|\\()?[A-Fa-f0-9]{8}-([A-Fa-f0-9]{4}-){3}[A-Fa-f0-9]{12}(}|\\))?$|^({)?[0xA-Fa-f0-9]{3,10}(, {0,1}[0xA-Fa-f0-9]{3,6}){2}, {0,1}({)([0xA-Fa-f0-9]{3,4}, {0,1}){7}[0xA-Fa-f0-9]{3,4}(}})$
</code></pre>
<p>But that is just for starters. You will also have to verify that the various parts such as the date/time are within acceptable ranges. I can't imagine this being any faster than the try/catch method that you have already outlined. Hopefully you aren't receiving that many invalid GUIDs to warrant this type of check!</p>
http://stackoverflow.com/questions/167533/best-voice-compression-algorithms-formats2Best Voice Compression Algorithms/Formatspdavis2008-10-03T15:50:53Z2009-05-23T16:52:49Z
<p>We have some raw voice audio that we need to distribute over the internet. We need decent quality, but it doesn't need to be of musical quality. Our main concern is usability by the consumer (i.e. what and where they can play it) and size of the download. My experience has shown that mp3s do not produce the best compression numbers for voice audio, but I am at a loss for what the best alternatives are. Ultimately we would like to automate the conversion process to allow the consumer to choose the quality vs. size level that they would like.</p>
http://stackoverflow.com/questions/528924/refresh-of-gridview-after-updatemethod-in-updatepanel/533277#5332771Answer by pdavis for Refresh of GridView after UpdateMethod in UpdatePanelpdavis2009-02-10T17:13:20Z2009-02-10T17:13:20Z<p>I think I see your problem. Try adding a DataKeyNames paramater to the GridView with the ID of the row you want to act on. Next remove the Triggers section as you won't need them for what you are doing. Since you are wanting to act on something change the CommandField to one of the other options such as Delete which you aren't currently using. Next modify your ObjectDataSource to define a DeleteMethod in your myNamespace.ItemMgr that accepts the Id (DataKeyNames paramater) from the GridView and performs the task you wish to perform. After the method returns it will refresh the GridView from the SelectMethod defined.</p>
<pre><code> <asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:GridView ID="GridView1"
runat="server"
AllowPaging="True"
AllowSorting="True"
AutoGenerateColumns="False"
DataSourceID="ObjectDataSource1"
PagerSettings-Visible="true" EnableViewState="False"
DataKeyNames="Id" >
<Columns>
<asp:CommandField DeleteImageUrl="/images/icon.gif"
DeleteText="Some Text"
ShowDeleteButton="True"
ButtonType="Image" />
<asp:BoundField DataField="Id" HeaderText="Id" SortExpression="Id" />
<asp:BoundField DataField="Title" HeaderText="Title"
SortExpression="Title" />
</Columns>
</asp:GridView>
</ContentTemplate>
</asp:UpdatePanel>
<asp:ObjectDataSource ID="ObjectDataSource1" runat="server"
DeleteMethod="myDeleteMethod" SelectMethod="mySelectMethod"
TypeName="myNamespace.ItemMgr">
</asp:ObjectDataSource>
</code></pre>
http://stackoverflow.com/questions/389140/expanding-a-node-in-asp-net-treeview-through-xml-attribute1Expanding a node in ASP.Net TreeView through XML Attributepdavis2008-12-23T15:24:56Z2008-12-23T20:32:47Z
<p>I have a ASP.Net TreeView control that I am binding to an XML data source. I'm wanting to be able to control which nodes are expanded and which ones are collapsed in the XML definition file. The Expanded='' doesn't work for me though. In the following simple example, I want Node 2 to be fully expanded.</p>
<p>ASP Page...</p>
<pre><code><asp:XmlDataSource ID="oXmlDataSource" runat="server" />
<asp:TreeView ID="TreeView1" runat="server" EnableViewState="false" DataSourceID="oXmlDataSource"></TreeView>
</code></pre>
<p>Code Behind...</p>
<pre><code>oXmlDataSource.Data = MyXMLString;
oXmlDataSource.XPath = "/Tree/Node";
</code></pre>
<p>Here is the XML...</p>
<pre><code><?xml version='1.0' encoding='utf-8' ?>
<Tree Text='example.aspx' Href='example.aspx'>
<Node Text='Example Node 1' Href='0800200c9a66.aspx' Expanded='false'></Node>
<Node Text='Example Node 2' Href='0800200c9a66.aspx' Expanded='true'>
<Node Text='Example Node 3' Href='0800200c9a66.aspx' Expanded='false'></Node>
<Node Text='Example Node 4' Href='0800200c9a66.aspx' Expanded='false'></Node>
<Node Text='Example Node 5' Href='0800200c9a66.aspx' Expanded='false'></Node>
<Node Text='Example Node 6' Href='0800200c9a66.aspx' Expanded='false'></Node>
</Node>
</Tree>
</code></pre>
http://stackoverflow.com/questions/123994/querystring-malformed-after-urldecode6QueryString malformed after URLDecodepdavis2008-09-23T21:24:08Z2008-10-16T08:09:35Z
<p>I'm trying to pass in a Base64 string into a C#.Net web application via the QueryString. When the string arrives the "+" (plus) sign is being replaced by a space. It appears that the automatic URLDecode process is doing this. I have no control over what is being passed via the QueryString. Is there any way to handle this server side?</p>
<p>Example:</p>
<pre><code>http://localhost:3399/Base64.aspx?VLTrap=VkxUcmFwIHNldCB0byAiRkRTQT8+PE0iIHBsdXMgb3IgbWludXMgNSBwZXJjZW50Lg==
</code></pre>
<p>Produces:</p>
<pre><code>VkxUcmFwIHNldCB0byAiRkRTQT8 PE0iIHBsdXMgb3IgbWludXMgNSBwZXJjZW50Lg==
</code></pre>
<p>People have suggested URLEncoding the querystring:</p>
<pre><code>System.Web.HttpUtility.UrlEncode(yourString)
</code></pre>
<p>I can't do that as I have no control over the calling routine (which is working fine with other languages).</p>
<p>There was also the suggestion of replacing spaces with a plus sign:</p>
<pre><code>Request.QueryString["VLTrap"].Replace(" ", "+");
</code></pre>
<p>I had though of this but my concern with it, and I should have mentioned this to start, is that I don't know what <em>other</em> characters might be malformed in addition to the plus sign.</p>
<p><strong><em>My main goal is to intercept the QueryString before it is run through the decoder.</em></strong></p>
<p>To this end I tried looking at Request.QueryString.toString() but this contained the same malformed information. Is there any way to look at the raw QueryString <em>before</em> it is URLDecoded?</p>
<p>After further testing it appears that .Net expects everything coming in from the QuerString to be URL encoded but the browser does not automatically URL encode GET requests.</p>
http://stackoverflow.com/questions/150698/sun-solaris-ide-source-control-choices/150718#1507182Answer by pdavis for Sun Solaris IDE/Source Control Choicespdavis2008-09-29T21:17:21Z2008-09-29T21:17:21Z<p>Ouch, I suggest you look into some type of Continuous Integration system ASAP! As far as version control, Subversion is pretty mature and stable, or you could go with the up and coming <a href="http://git.or.cz/" rel="nofollow">GIT</a> system.</p>
http://stackoverflow.com/questions/91256/best-resources-to-prepare-for-the-spring-framework-certification/150701#1507011Answer by pdavis for Best resources to prepare for the "Spring Framework Certification"pdavis2008-09-29T21:13:31Z2008-09-29T21:13:31Z<p>I find that just writing code is the best way to study for these type of certifications!</p>
http://stackoverflow.com/questions/141441/is-a-javascript-try-catch-ignoring-an-expected-occasional-error-bad-practice/141474#1414740Answer by pdavis for Is a JavaScript try-catch ignoring an expected occasional error bad practice?pdavis2008-09-26T19:37:41Z2008-09-26T19:37:41Z<p>For the example given I would say it was bad practice. There are instances however where it may be more <strong>efficient</strong> to simply trap for an <strong>expected</strong> error. Validating the format of a string before <a href="http://stackoverflow.com/questions/104850/c-test-if-string-is-a-guid-without-throwing-exceptions#104932">casting it as a GUID</a> would be a good example.</p>
http://stackoverflow.com/questions/140858/can-you-make-a-site-with-asp-net-mvc-framework-using-net-2-0/141329#1413292Answer by pdavis for Can you make a site with ASP.NET MVC Framework using .NET 2.0?pdavis2008-09-26T19:07:25Z2008-09-26T19:07:25Z<p>It can be done using Visual Studio 2008, but it can cause headaches...</p>
<ul>
<li>Create an ASP.NET MVC Web Application </li>
<li>Set Project Target Framework to 2.0
in Project Properties</li>
<li>Add a references to System.Web.MVC (click through warning messages)</li>
<li>Add any additional references you may need (System.Web.Routing, System.Web.Abstractions) again clicking through any warning messages</li>
<li>Start coding!</li>
<li>Not everything you try will work, if you see errors like this on deployment it means that whatever you are doing isn't supported by the 2.0 framework...
<ul>
<li>"The type or namespace name 'var' could not be found (are you missing a using directive or an assembly reference?)"</li>
</ul></li>
<li><a href="http://msmvps.com/blogs/omar/archive/2008/06/30/deploy-asp-net-mvc-on-iis-6-solve-404-compression-and-performance-problems.aspx" rel="nofollow">Configure your IIS</a> to support MVC Routes and <a href="http://biasecurities.com/blog/2008/how-to-enable-pretty-urls-with-asp-net-mvc-and-iis6/" rel="nofollow">extensions</a></li>
<li>Copy "C:\windows\assembly\GAC_MSIL\System.Core" from the .NET 3.5 development framework to the /bin folder of the IIS Server running .NET 2.0 <strong>SP1</strong>.</li>
</ul>
<p>Much of this can be found in a lot more detail on <a href="http://www.hanselman.com/blog/DeployingASPNETMVCOnASPNET20.aspx" rel="nofollow">Scott Hanselman's blog</a></p>
http://stackoverflow.com/questions/140959/if-your-software-development-team-is-not-following-any-design-methodology-what-i/141200#1412000Answer by pdavis for If your software development team is not following any design methodology, what is that called?pdavis2008-09-26T18:43:12Z2008-09-26T18:43:12Z<p>Big Bang Theory - That is what I call code that I spend hours writing with no prep/design work and without compiling it until I am done. I try not to do this too often though.</p>
http://stackoverflow.com/questions/140409/why-avoid-pessimistic-locking-in-a-version-control-system/140456#1404562Answer by pdavis for Why avoid pessimistic locking in a version control system?pdavis2008-09-26T16:12:27Z2008-09-26T16:12:27Z<ul>
<li>You don't always have the option to
break files apart
<ul>
<li>Config Files</li>
<li>XML Files</li>
</ul></li>
<li>Even relatively small files can still contain distinct parts that more than one developer needs access to
<ul>
<li>Libraries</li>
<li>Utilities</li>
</ul></li>
<li>Merging Tools are much smarter than they have ever been
<ul>
<li>Conflicts are rather rare</li>
</ul></li>
<li>Reduces delays due to developers having files "accidentally" checked out</li>
</ul>
http://stackoverflow.com/questions/134001/how-can-i-load-the-contents-of-a-text-file-into-a-batch-file-variable/134195#1341950Answer by pdavis for How can I load the contents of a text file into a batch file variable?pdavis2008-09-25T15:58:48Z2008-09-25T15:58:48Z<p>Create a file called "SetFile.bat" that contains the following line with <strong>no carriage return</strong> at the end of it...</p>
<pre><code>set FileContents=
</code></pre>
<p>Then in your batch file do something like this...</p>
<pre><code> @echo off
copy SetFile.bat + %1 $tmp$.bat > nul
call $tmp$.bat
del $tmp$.bat
</code></pre>
<p>%1 is the name of your input file and %FileContents% will contain the contents of the input file after the call. This will only work on a one line file though (i.e. a file containing no carriage returns). You could strip out/replace carriage returns from the file before calling the %tmp%.bat if needed.</p>
http://stackoverflow.com/questions/134048/ipod-touch-for-iphone-development/134092#1340920Answer by pdavis for iPod touch for iPhone developmentpdavis2008-09-25T15:42:40Z2008-09-25T15:42:40Z<p>I would recommend skipping the iPod Touch and going straight to the iPhone if development is your goal. It has more capabilities (GPS, Bluetooth, Cellular network and Camera) which makes for a wider range of potential applications that may actually be used.</p>
http://stackoverflow.com/questions/133493/check-for-a-valid-guid/133531#1335311Answer by pdavis for Check for a valid guidpdavis2008-09-25T14:04:51Z2008-09-25T14:04:51Z<p>This is similar to the <a href="http://stackoverflow.com/questions/104850/c-test-if-string-is-a-guid-without-throwing-exceptions#104932">same question in c#</a>. Here is the regex you will need...</p>
<p>^[A-Fa-f0-9]{32}$|^({|()?[A-Fa-f0-9]{8}-([A-Fa-f0-9]{4}-){3}[A-Fa-f0-9]{12}(}|))?$|^({)?[0xA-Fa-f0-9]{3,10}(, {0,1}[0xA-Fa-f0-9]{3,6}){2}, {0,1}({)([0xA-Fa-f0-9]{3,4}, {0,1}){7}[0xA-Fa-f0-9]{3,4}(}})$</p>
<p>But that is just for starters. You will also have to verify that the various parts such as the date/time are within acceptable ranges. To get an idea of just how complex it is to test for a valid GUID, look at the source code for one of the Guid constructors.</p>
http://stackoverflow.com/questions/133350/whats-the-difference-between-a-data-service-layer-and-a-data-access-layer/133504#1335043Answer by pdavis for What's the difference between a "Data Service Layer" and a "Data Access Layer"?pdavis2008-09-25T13:58:47Z2008-09-25T13:58:47Z<p>I think in general the two terms are interchangeable, but could have more specific meanings depending on the context of your development environment. </p>
<p>A Data Access Layer sits on the border between data and the application. The "data" is simply the diverse set of data sources used by the application. This can mean that substantial coding must be done in each application to pull data together from multiple sources. The code which creates the data views required will be redundant across some applications.</p>
<p>As the number of data sources grows and becomes more complex, it becomes necessary to isolate various tasks of data access to address details of data access, transformation, and integration. With well-designed data services, <em>Business Services</em> will be able to interact with data at a higher level of abstraction. The data logic that handles data access, integration, semantic resolution, transformation, and restructuring to address the data views and structures needed by applications is best encapsulated in the Data Services Layer. </p>
<p>It is possible to break the Data Services Layer down even further into its constituent parts (i.e. data access, transformation, and integration). In such a case you might have a "Data Access Layer" that concerns itself with only retrieving data, and a "Data Service Layer" that retrieves its data through the Data Access Layer and combines and transforms the retrieved data into the various objects required by the Business Service Layer.</p>
http://stackoverflow.com/questions/1752199/xml-milestones-or-elements-that-cross-other-elements/1752402#1752402Comment by pdavis on XML: Milestones or Elements that cross other elementspdavis2009-11-17T23:29:13Z2009-11-17T23:29:13ZWhile I agree it is legal markup, it makes it difficult/impossible to validate in a standard XML editor.http://stackoverflow.com/questions/1632747/programatically-changing-explorer-view-in-c/1632874#1632874Comment by pdavis on Programatically Changing Explorer View in C#pdavis2009-10-27T19:35:37Z2009-10-27T19:35:37ZAfter creating the folder I am opening it up in an explorer window so this might be the way to go if it is a permanent change. Meaning, after the user closes the folder and comes back to it, it is still in the Thumbnail view (assuming they have "Remember each folder's view settings" set to true). I found an example in VB (<a href="http://www.vbforums.com/showthread.php?t=409476" rel="nofollow">vbforums.com/showthread.php?t=409476</a>) but will need to convert it to C#.http://stackoverflow.com/questions/1632747/programatically-changing-explorer-view-in-c/1632814#1632814Comment by pdavis on Programatically Changing Explorer View in C#pdavis2009-10-27T19:17:24Z2009-10-27T19:17:24ZI was looking for some registry key to change, but I didn't/don't see how to connect the registry to the folder. You are correct in that I don't want to override the "Remember each folder's view settings" for the user. Is it possible to use a desktop.ini file? http://stackoverflow.com/questions/1498054/too-much-coding-at-a-job-interview/1498205#1498205Comment by pdavis on Too much coding at a job interviewpdavis2009-09-30T14:21:39Z2009-09-30T14:21:39ZA company that does 3 or 4 interviews a week for two months but never ends up hiring any of them... each candidate given a slightly different interview problem. At the end the code is pieced together like some type of Frankenstein's monster because they "couldn't find a candidate they liked". Not that I have seen this first hand...http://stackoverflow.com/questions/1455950/meeting-etiquette-new-company-must-give-feedback-on-atrocious-meeting-etiquettComment by pdavis on Meeting etiquette - new company, must give feedback on atrocious meeting etiquette.pdavis2009-09-21T18:17:44Z2009-09-21T18:17:44ZHere we go again with people closing good questions!
Anyway, I was going to say that I don't think you need to sugar coat it. Just state the facts and offer clear solutions on how to address the problems.http://stackoverflow.com/questions/1454474/web-analytics-stats/1454491#1454491Comment by pdavis on Web Analytics & Statspdavis2009-09-21T13:40:48Z2009-09-21T13:40:48ZGoogle also purchased a product called Urchin which provides web statistical analysis in house. You might look at integrating that into your application. No matter how you look at it, the best way to add tracking is going to be through a third party tool that specializes in tracking analysis.http://stackoverflow.com/questions/1433263/decision-tree-code-golfComment by pdavis on Decision Tree code golfpdavis2009-09-16T15:01:47Z2009-09-16T15:01:47ZI agree, I think you need to recreate the question here so that it is similar, but not worded exactly as the Google Code Jam question.http://stackoverflow.com/questions/1387221/which-companies-make-you-sign-an-i-own-you-contractComment by pdavis on Which companies make you sign an "I own you contract"?pdavis2009-09-07T01:34:25Z2009-09-07T01:34:25ZCan you be more specific? Some software companies claim ownership of any software you write while working for them. Is this what you are referring to? Did your contract go further than this?http://stackoverflow.com/questions/25403/is-a-college-university-degree-still-relevant/25480#25480Comment by pdavis on Is a College/University Degree Still Relevant?pdavis2009-08-21T14:39:42Z2009-08-21T14:39:42ZWhy would you do this for 20 years and not try to expand your horizons? The person with 22 years and a degree would have the advantage.http://stackoverflow.com/questions/25403/is-a-college-university-degree-still-relevant/25625#25625Comment by pdavis on Is a College/University Degree Still Relevant?pdavis2009-08-21T14:37:18Z2009-08-21T14:37:18ZAlthough I agree with most of your points, I wouldn't discount online programs just because they are online. You have to look at the school offering the online program and the program itself. Many online programs are <i>more</i> difficult than their classroom counterparts due to accreditation requirements. It can also help prepare students for telecommuting and working with others in different time zones and even cultures. Something that has become more and more common in our line of work. Both my undergraduate and master degrees were done in person so no bias.http://stackoverflow.com/questions/150192/using-underscores-in-java-variables-and-method-names/150200#150200Comment by pdavis on Using underscores in Java variables and method namespdavis2008-09-29T20:37:46Z2008-09-29T20:37:46ZChris, I call it polling, it is the best way to get a consensus from the community.http://stackoverflow.com/questions/109997/how-do-you-protect-your-software-from-illegal-distribution/110006#110006Comment by pdavis on How do you protect your software from illegal distribution?pdavis2008-09-21T02:10:27Z2008-09-21T02:10:27ZThe advantage to this is that you want people to copy it and freely distribute it.http://stackoverflow.com/questions/105725/how-to-write-a-self-reproducing-code-prints-the-source-on-exec/105745#105745Comment by pdavis on How to write a self reproducing code (prints the source on exec)?pdavis2008-09-20T01:35:00Z2008-09-20T01:35:00ZCheater! I call shenanigans!http://stackoverflow.com/questions/105034/how-to-create-a-guid-uuid-in-javascript/105078#105078Comment by pdavis on How to create a GUID / UUID in Javascript?pdavis2008-09-19T20:11:57Z2008-09-19T20:11:57ZYep, this is Not a valid GUID!http://stackoverflow.com/questions/103785/what-are-the-disadvantages-of-using-cassini-instead-of-iis/103817#103817Comment by pdavis on What are the (dis)advantages of using Cassini instead of IIS?pdavis2008-09-19T17:24:56Z2008-09-19T17:24:56ZLOL, I fixed them too:)