User Geoff Dalgas - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T16:17:13Zhttp://stackoverflow.com/feeds/user/2http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1640505/two-legged-oauth-using-dotnetopenauth1Two legged OAuth using DotNetOpenAuthGeoff Dalgas2009-10-28T22:22:34Z2009-10-28T23:32:14Z
<p>I have read up on two legged OAuth and understand the principals behind it - my question is specific to the <a href="http://dotnetopenauth.net:8000/" rel="nofollow">DotNetOpenAuth</a> library. Is there sample code or supporting documentation on how to use DotNetOpenAuth via two legged authentication? Three legged appears to be supported quite well and since two legged is simply a reduction in the number of steps I would assume this would be easy - so far, this isn't the case.</p>
http://stackoverflow.com/questions/1483008/what-is-the-definition-of-httpxpurpose2What is the definition of HTTP_X_PURPOSE?Geoff Dalgas2009-09-27T07:21:56Z2009-10-11T07:13:37Z
<p>Recently we've been looking at a few exceptions captured in our Stack Overflow logs and have discovered an issue for Safari users.</p>
<p>I noticed this HTTP header in one of the exceptions we have captured:</p>
<pre><code>HTTP_X_PURPOSE preview
</code></pre>
<p>Does anyone know what action triggers this header or the meaning of HTTP_X_PURPOSE? </p>
http://stackoverflow.com/questions/1452996/is-the-nolock-sql-server-hint-bad-practice/1453087#14530870Answer by Geoff Dalgas for Is the NOLOCK (Sql Server hint) bad practice?Geoff Dalgas2009-09-21T06:25:28Z2009-09-21T06:25:28Z<p>Prior to working on Stack Overflow I was against NOLOCKS on the principal that you could potentially perform a SELECT with NOLOCK and get back results with data that may be out of date or inconsistent. A factor to think about is how many records may be INSERTed / UPDATEd at the same time another process may be SELECTing data from the same table. If this happens a lot then there's a high probability of deadlocks unless you use a database mode such as <a href="http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/21158#21158">READ COMMITED SNAPSHOT</a>.</p>
<p>I have since changed my perspective on the use of NOLOCK after witnessing how it can improve SELECT performance as well as eliminate deadlocks on a massively loaded SQL Server. There are times that you may not care that your data isn't exactly 100% committed and you need results back quickly even though they may be out of date. </p>
<p>Ask yourself a question when thinking of using NOLOCK - does my query include a table that has a high number of INSERTs / UPDATEs and do I care if the data returned from a query may be missing these changes at a given moment, if the answer is NO than you may use NOLOCK to improve performance.</p>
<p>I just performed a quick search for the NOLOCK keyword within the code base for Stack Overflow and found 138 instances-so we use it in quite a few places.</p>
http://stackoverflow.com/questions/199459/cross-platform-encryption-decryption-applications-for-secure-file-transport2Cross platform Encryption / Decryption applications for secure file transport Geoff Dalgas2008-10-13T23:46:08Z2009-08-06T19:42:37Z
<p>I have a client who is in need of a file based encryption / decryption application to be used between Linux / Windows 2003 Server. The goal is to have a single file compressed nightly on a linux platform and secured using a script, transmitted over FTP, decrypted on the Windows 2003 server and available for other import routines such as SSIS, etc. </p>
<p>The file can remain unencrypted on each end after transport, the desire is mainly to keep the file secure during transport. Firewall rules and the fact that IIS6 doesn't support SFTP eliminate SFTP as an option. Simplicity is the primary focus here, so complex security options or heavyweight libraries cannot be used.</p>
http://stackoverflow.com/questions/16/how-do-i-fill-a-dataset-or-a-datatable-from-a-linq-query-resultset7How do I fill a DataSet or a DataTable from a LINQ query resultset ?Geoff Dalgas2008-08-01T04:59:33Z2009-07-27T01:44:08Z
<p>How do you expose a LINQ query as an ASMX web service? Usually, from the business tier, I can return a typed DataSet or DataTable which can be serialized for transport over ASMX.</p>
<p>How can I do the same for a LINQ query? Is there a way to populate a typed DataSet or DataTable via a LINQ query?: </p>
<pre><code>public static MyDataTable CallMySproc()
{
string conn = ...;
MyDatabaseDataContext db = new MyDatabaseDataContext(conn);
MyDataTable dt = new MyDataTable();
// execute a sproc via LINQ
var query = from dr in db.MySproc().AsEnumerable
select dr;
// copy LINQ query resultset into a DataTable -this does not work !
dt = query.CopyToDataTable();
return dt;
}
</code></pre>
<p>How can I get the resultset of a LINQ query into a DataSet or DataTable? Alternatively, is the LINQ query serializeable so that I can expose it as an ASMX web service?</p>
http://stackoverflow.com/questions/17/binary-data-in-mysql7Binary Data in MYSQLGeoff Dalgas2008-08-01T05:09:55Z2009-05-28T11:40:35Z
<P>How do I store binary data in mysql?</P>
http://stackoverflow.com/questions/367426/formatting-inline-items-what-does-the-general-code-look-like/367441#3674414Answer by Geoff Dalgas for Formatting inline items? What does the general code look like?Geoff Dalgas2008-12-15T03:59:56Z2008-12-15T03:59:56Z<p>A SPAN tag is not intended to be a container for other tags. This is especially useful when combined with classes.</p>
<p>Use divs for defining sections of a page, and spans to enclose and style text or classes of text. </p>
<p><a href="http://www.learnwebdesignonline.com/htmlcourse/span-div.htm" rel="nofollow">http://www.learnwebdesignonline.com/htmlcourse/span-div.htm</a> shows a good example of how they are used. For your example of wrapping text, float the image and wrap it all in a DIV - like so:</p>
<pre><code><div>
test test test test <img src="" alt="" style="float:left;margin:8px 0 0 8px; display:inline" /> test test test test test test test test test test test test
</div>
</code></pre>
http://stackoverflow.com/questions/1042/why-doesnt-sql-full-text-indexing-return-results-for-words-containing2Why doesn't SQL Full Text Indexing return results for words containing #?Geoff Dalgas2008-08-04T05:51:56Z2008-08-25T03:37:18Z
<p>For instance, my query is like the following using SQL Server 2005:</p>
<pre><code>SELECT * FROM Table WHERE FREETEXT(SearchField, 'c#')
</code></pre>
<p>I have a full text index defined to use the column SearchField which returns results when using:</p>
<pre><code>SELECT * FROM Table WHERE SearchField LIKE '%c#%'
</code></pre>
<p>I believe # is a special letter, so how do I allow FREETEXT to work correctly for the query above?</p>
http://stackoverflow.com/questions/20047/diagnosing-deadlocks-in-sql-server-2005/21158#2115828Answer by Geoff Dalgas for Diagnosing Deadlocks in SQL Server 2005Geoff Dalgas2008-08-21T20:53:51Z2008-08-22T00:52:22Z<p>According to MSDN:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms191242.aspx" rel="nofollow"><a href="http://msdn.microsoft.com/en-us/library/ms191242.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms191242.aspx</a></a></p>
<blockquote>
<p>When either the
READ COMMITTED SNAPSHOT or
ALLOW SNAPSHOT ISOLATION database
options are ON, logical copies
(versions) are maintained for all data
modifications performed in the
database. Every time a row is modified
by a specific transaction, the
instance of the Database Engine stores
a version of the previously committed
image of the row in tempdb. Each
version is marked with the transaction
sequence number of the transaction
that made the change. The versions of
modified rows are chained using a link
list. The newest row value is always
stored in the current database and
chained to the versioned rows stored
in tempdb.</p>
<p>For short-running transactions, a
version of a modified row may get
cached in the buffer pool without
getting written into the disk files of
the tempdb database. If the need for
the versioned row is short-lived, it
will simply get dropped from the
buffer pool and may not necessarily
incur I/O overhead.</p>
</blockquote>
<p>There appears to be a slight performance penalty for the extra overhead, but it may be negligible. We should test to make sure.</p>
<p>Try setting this option and REMOVE all NOLOCKs from code queries unless it’s really necessary. NOLOCKs or using global methods in the database context handler to combat database transaction isolation levels are Band-Aids to the problem. NOLOCKS will mask fundamental issues with our data layer and possibly lead to selecting unreliable data, where automatic select / update row versioning appears to be the solution.</p>
<pre><code>ALTER Database [StackOverflow.Beta] SET READ_COMMITTED_SNAPSHOT ON
</code></pre>
http://stackoverflow.com/questions/279/asp-net-visual-studio-and-subversion-how-to-integrate/285#28511Answer by Geoff Dalgas for ASP.net, Visual Studio and Subversion - how to integrate?Geoff Dalgas2008-08-02T00:25:28Z2008-08-02T00:25:28Z<p>Here on the StackOverflow project we use VisualSVN. It really does a pretty decent job of integrating with Tortoise to provide menu selections that abstract away the pains of dealing with SVN at the file system level. Highly recommended:</p>
<p><a href="http://www.visualsvn.com/" rel="nofollow">http://www.visualsvn.com/</a></p>http://stackoverflow.com/questions/1452996/is-the-nolock-sql-server-hint-bad-practice/1453087#1453087Comment by Geoff Dalgas on Is the NOLOCK (Sql Server hint) bad practice?Geoff Dalgas2009-09-21T06:54:49Z2009-09-21T06:54:49ZI do not wish to diminish the importance of good index coverage. There are times that queries using NOLOCK can add additional performance on top of gains realized by indexes on tables with a high number of inserts / updates. Query speed on Stack Overflow is paramount even at the cost of inaccurate or missing data.http://stackoverflow.com/questions/1119813/what-do-you-do-when-you-need-to-take-a-break-from-staring-at-code/1119847#1119847Comment by Geoff Dalgas on What do you do when you need to take a break from staring at code? Geoff Dalgas2009-07-13T21:31:37Z2009-07-13T21:31:37ZWe only condone 2 of the 3 things listed herehttp://stackoverflow.com/questions/363113/any-good-geeky-baby-names/363120#363120Comment by Geoff Dalgas on Any good geeky baby names?Geoff Dalgas2009-03-14T06:16:58Z2009-03-14T06:16:58ZYes, my cats name is in fact Pixel - now she's more like a MEGA pixel.http://stackoverflow.com/questions/610945/how-can-i-order-entries-in-a-union-without-order-byComment by Geoff Dalgas on How can I order entries in a UNION without ORDER BY?Geoff Dalgas2009-03-12T20:00:35Z2009-03-12T20:00:35ZLocked - not helpfulhttp://stackoverflow.com/questions/533425/sql-adsi-active-directory-create-new-accountsComment by Geoff Dalgas on SQL ADSI Active Directory Create New Accounts Geoff Dalgas2009-03-11T20:45:19Z2009-03-11T20:45:19Z@Kev @Rich B: Please end these rollback warshttp://stackoverflow.com/questions/487876/do-you-change-an-authentication-token-for-a-cookie-authenticated-user-if-so-howComment by Geoff Dalgas on Do you change an authentication token for a cookie-authenticated user? If so, how often?Geoff Dalgas2009-02-08T02:05:53Z2009-02-08T02:05:53ZWe use a persistent session and rotate a token every XX minutes. If somebody comes to the site using an invalidated session / token combo all records are cleared and the user is logged out.http://stackoverflow.com/questions/477463/jquery-is-waiting-for-images-to-load-before-executing-document-ready/489772#489772Comment by Geoff Dalgas on JQuery is waiting for images to load before executing document.readyGeoff Dalgas2009-01-29T00:56:27Z2009-01-29T00:56:27ZRadical! You rock John!