User Ian Varley - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T18:21:05Zhttp://stackoverflow.com/feeds/user/37539http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1622844/can-i-see-the-resulting-markup-after-javascript-dom-manipulation1Can I see the resulting markup after JavaScript Dom manipulation?Ian Varley2009-10-26T02:30:00Z2009-10-26T02:42:50Z
<p>Is there any way to get a browser (or some other program) to show me the DOM of a web page, <strong>as modified</strong> by JavaScript code?</p>
<p>For example, say I have some simple markup. I then use some JavaScript (say, via jQuery) to add classes, move things around, etc. Is there any way to "view source" on the modified version, as it would look if that was how it was originally marked up?</p>
<p>No real reason, just curious if there's something that does that. I've seen people post examples like "here's what the markup would look like after modification", and I didn't know if they did that by hand, or if there's a nifty tool (or obvious way I haven't thought of) to do that.</p>
http://stackoverflow.com/questions/1566832/database-maintenance-with-ssis-or-t-sql/1570184#15701840Answer by Ian Varley for Database maintenance with SSIS or T-SQL?Ian Varley2009-10-15T03:43:32Z2009-10-15T03:43:32Z<p>SSIS would be a good solution if you've got a single person (say, you) who is both doing DBA tasks for the server (e.g. backups) as well as other more application-driven tasks (higher level consistency checks related to business logic, ETL tasks for big data sets, etc). It'll allow you to keep everything together, which is convenient. It also allows you more control over how the things are kicked off, scheduled, and monitored (you can write the results into custom tables, have it send email, run arbitrary code, etc). </p>
<p>I'm not sure how many pure DBAs use SSIS for their tasks ... but for that matter, I'm not sure how many "pure" DBAs are left in the MS SQL Server world anyway, since so much of it is automated these days. :)</p>
http://stackoverflow.com/questions/1189911/non-relational-database-design13Non-Relational Database DesignIan Varley2009-07-27T18:46:43Z2009-07-28T09:38:52Z
<p>I'm interested in hearing about design strategies you have used with <strong>non-relational "nosql" databases</strong> - that is, the (mostly new) class of data stores that don't use traditional relational design or SQL (such as Hypertable, CouchDB, SimpleDB, Google App Engine datastore, Voldemort, Cassandra, SQL Data Services, etc.). They're also often referred to as "key/value stores", and at base they act like giant distributed persistent hash tables.</p>
<p>Specifically, I want to learn about the differences in <em>conceptual data design</em> with these new databases. What's easier, what's harder, what can't be done at all?</p>
<ul>
<li><p>Have you come up with alternate designs that work much better in the non-relational world?</p></li>
<li><p>Have you hit your head against anything that seems impossible? </p></li>
<li><p>Have you bridged the gap with any design patterns, e.g. to translate from one to the other? </p></li>
<li><p>Do you even do explicit data models at all now (e.g. in UML) or have you chucked them entirely in favor of semi-structured / document-oriented data blobs?</p></li>
<li><p>Do you miss any of the major extra services that RDBMSes provide, like relational integrity, arbitrarily complex transaction support, triggers, etc?</p></li>
</ul>
<p>I come from a SQL relational DB background, so normalization is in my blood. That said, I get the advantages of non-relational databases for simplicity and scaling, and my gut tells me that there has to be a richer overlap of design capabilities. What have you done?</p>
<p>FYI, there have been StackOverflow discussions on similar topics here: </p>
<ul>
<li><a href="http://stackoverflow.com/questions/282783/the-next-gen-databases">the next generation of databases</a></li>
<li><a href="http://stackoverflow.com/questions/731147/what-changes-do-i-need-for-my-tables-to-work-on-appengines-bigtable">changing schemas to work with Google App Engine</a></li>
<li><a href="http://stackoverflow.com/questions/337344/pros-cons-of-document-based-database-vs-relational-database">choosing a document-oriented database</a></li>
</ul>
http://stackoverflow.com/questions/922507/stuck-in-a-group-by/922691#9226910Answer by Ian Varley for Stuck in a group by Ian Varley2009-05-28T19:16:04Z2009-05-28T19:16:04Z<p>If I understand you right, your goal is to only get rows where there aren't any unmatched cids - that is, if there's even one row with the same pid and a non-existent cid, don't show any of the rows with that pid. If that's the case, the most straightforward way to code it is using an exists on the same table, like so:</p>
<pre><code>SELECT *
FROM
[table 1] T1A
WHERE
/* there are no rows in my same table ... */
NOT EXISTS (
SELECT *
FROM
[table 1] T1B
WHERE
T1A.pid = T1B.pid
/* ... that do not have a matching cid in table 2 */
AND T1B.cid NOT IN (SELECT cid FROM [table 2])
)
</code></pre>
<p>This returns the 3 rows with pid=902, and none of the ones with pid=901.</p>
http://stackoverflow.com/questions/524853/adobe-air-for-an-offline-application-is-this-the-best-option/524866#5248661Answer by Ian Varley for Adobe AIR for an offline application: is this the best option?Ian Varley2009-02-08T00:35:31Z2009-02-08T00:35:31Z<p>From your description, it sounds like <a href="http://gears.google.com/" rel="nofollow">Google Gears</a> is a little closer to what you're looking for.</p>
http://stackoverflow.com/questions/511979/best-way-to-store-old-dates-in-sql-server/512023#5120234Answer by Ian Varley for Best way to store old dates in SQL ServerIan Varley2009-02-04T16:07:06Z2009-02-04T16:13:33Z<p>Strings would probably be less efficient than just storing integers for the year, month and day. That's a little more verbiage in your queries, but they'll probably run faster as you can index them in ways that make sense for the kinds of queries you're doing.</p>
<p>So for example:</p>
<pre><code>CREATE TABLE myOldDates (
year INT,
month INT,
day INT,
-- otherstuff ...
)
</code></pre>
<p>Then queries would all be like:</p>
<pre><code>-- get records between 5/15/1752 and 3/19/1754
SELECT * FROM myOldDates
WHERE
(year = 1752 AND ((month = 5 and day >= 15) or month > 5) OR year > 1752)
AND (year = 1754 AND ((month = 3 and day <= 19) or month < 3) OR year < 1754)
</code></pre>
<p>That is ugly, to be sure, but that's about as ugly as it gets for range queries, so once you write it the first time, you can encapsulate it in a function.</p>
http://stackoverflow.com/questions/511916/enforcing-database-constraints-code-vs-sql/512013#5120131Answer by Ian Varley for enforcing database constraints: code vs sql Ian Varley2009-02-04T16:05:35Z2009-02-04T16:05:35Z<p>The cleanest way, as Mr. Potato Head said, is to simply use a WHERE clause to only affect rows where lock_status = 0. Because that's a single SQL statement, it's guaranteed to be atomic. Then you can see if any rows were affected (for example, using @@rowcount) and react accordingly, either by trying again indefinitely, or by showing an error message, etc.</p>
<p>The problem with checking and updating in two steps is that unless you wrap them in an explicit transaction (e.g. "BEGIN TRANSACTION ... COMMIT TRANSACTION"), they are <strong>not</strong> guaranteed to be atomic, so you could theoretically get more than one process who think the lock is off and proceed. I say "theoretically" because with the speed that these statements are executed, it's incredibly unlikely that'd ever happen unless you have a hugely concurrent environment with a ton (thousands?) of users banging on this thing at the same time. That's why errors like this often go unnoticed, but then crop up in strange unexplained bugs later.</p>
<p>To learn more about this kind of issue, you might want to read a book on concurrent programming such as this one: <a href="http://rads.stackoverflow.com/amzn/click/0805300864" rel="nofollow">Concurrent Programming by Gregory Andrews</a>.</p>
http://stackoverflow.com/questions/511925/auto-generate-sort-orders-with-sql-update/511957#5119570Answer by Ian Varley for Auto Generate Sort Orders with SQL UPDATEIan Varley2009-02-04T15:55:36Z2009-02-04T15:55:36Z<p>Theoretically, you could say:</p>
<pre><code>update mytable
set sortOrder = row_number()
over (partition by item1id order by item1id, item2id) from mytable
</code></pre>
<p>However, that'll give you an error message:</p>
<pre><code>Msg 4108, Level 15, State 1, Line 1
Windowed functions can only appear in the SELECT or ORDER BY clauses.
</code></pre>
<p>So you actually have to do it in two steps - first select the values into a temp table, and then update your original from the temp table. </p>
<p>For example:</p>
<pre><code>select
item1ID,
item2ID,
row_number()
over (partition by item1id order by item1id, item2id) as sortOrder
into #tmp
from mytable
update mytable
set sortOrder = T.sortOrder
FROM
mytable M
inner join #tmp T
on M.item1ID = T.item1ID
AND M.item2ID = T.item2ID
drop table #tmp
</code></pre>
http://stackoverflow.com/questions/511872/sql-syntax-for-calculating-results-of-returned-data/511933#5119333Answer by Ian Varley for SQL Syntax for calculating results of returned dataIan Varley2009-02-04T15:50:27Z2009-02-04T15:50:27Z<p>You can do it all in one statement in SQL, but it looks kinda ugly because you have to repeat chunks:</p>
<pre><code>SELECT
CASE WHEN
/* res1 */ Power(IsNull(val1X, 0), 2) + Power(IsNull(val1Y, 0), 2)
> /* res2 */ Power(IsNull(val2X, 0), 2) + Power(IsNull(val2Y, 0), 2)
THEN
/* res1 */ Power(IsNull(val1X, 0), 2) + Power(IsNull(val1Y, 0), 2)
ELSE
/* res2 */ Power(IsNull(val2X, 0), 2) + Power(IsNull(val2Y, 0), 2)
END
FROM
myTable
</code></pre>
<p>It'd be a little cleaner to use a user-defined function to wrap up that Power(IsNull(field, 0), 2) so you don't repeat yourself as much, but I'll leave that as an exercise for you to do. :)</p>
http://stackoverflow.com/questions/511381/differentiating-between-ab-and-ab-in-a-character-database-field/511409#5114093Answer by Ian Varley for Differentiating between "AB" and "Ab" in a character Database FieldIan Varley2009-02-04T13:41:50Z2009-02-04T13:41:50Z<p>ASCII is only comparing the first letter. You'd have to compare each letter, or change the database collation to be case sensitive.</p>
<p>You can change collation on an entire database level, or just on one column for a specific query, so:</p>
<pre><code>SELECT myColumn
FROM myTable
WHERE myColumn COLLATE Latin1_General_CS_AS <> upper(myColumn)
</code></pre>
http://stackoverflow.com/questions/499562/efficient-reordering-of-large-dataset-to-maximize-memory-cache-effectiveness/499649#4996491Answer by Ian Varley for Efficient reordering of large dataset to maximize memory cache effectivenessIan Varley2009-01-31T21:48:12Z2009-01-31T21:48:12Z<p>Even though you're not <em>just</em> sorting this list, the general pattern of a <a href="http://jea.acm.org/ARTICLES/Vol5Nbr3/node3.html" rel="nofollow">multiway merge sort</a> might be applicable - that is, consider some kind of (possibly recursive) breakdown of the set into smaller sets that can be dealt with in memory separately, and then a second phase where small chunks of the previously dealt-with sets can all be combined together. Even not knowing the specific nature of what you're doing with the pairs, it's safe to say that many algorithmic problems are made much more straightforward when you're dealing with sorted data (including graph problems, which might be what you have on your hands here).</p>
http://stackoverflow.com/questions/292878/signs-of-a-great-sql-developer/292905#2929058Answer by Ian Varley for Signs of a great SQL developerIan Varley2008-11-15T18:51:26Z2009-01-31T06:51:54Z<p>I've found that a great SQL developer is usually also a great database designer, and will prefer to be involved in both the design and implementation of the database. That's because a bad database design can frustrate and hold back even the best developer - good SQL instincts don't always work right in the face of pathological designs, or systems where RI is poor or non-existent. So, one way to tell a great SQL developer is to test them on data modeling.</p>
<p>Also, a great DB developer has to have complex join logic down cold, and know exactly what the results of various multi-way joins will be in different situations. Lack of comfort with joins is the #1 cause of bad SQL code (and bad SQL design, for that matter).</p>
<p>As for specific syntax things, I'd hesitate at directives like:</p>
<blockquote>
<p>Does not use CURSORs.</p>
<p>Does not use temporary tables.</p>
</blockquote>
<p>Use of those techniques might allow you to tell the difference between a dangerously amateur SQL programmer (who uses them when simple relational predicates would be far better) and a decent starting SQL programmer (who knows how to do most stuff without them). However, there are many situations in real world usage where temp tables and cursors are perfectly adequate ways (sometimes, the only ways) to accomplish things (short of moving to another layer to do the processing, which is sometimes better anyway). </p>
<p>So, use of advanced concepts like these isn't forbidden, but unless you're clearly dealing with a SQL expert working on a really tough problem that, for some reason, doesn't lend itself to a relational solution ... yeah, they're probably warning signs.</p>
http://stackoverflow.com/questions/491646/auto-generated-code/491663#4916631Answer by Ian Varley for auto-generated CodeIan Varley2009-01-29T13:55:35Z2009-01-29T13:55:35Z<p>Looks like Visual Studio to me. <a href="http://www.google.com/search?q=%22Changes+to+this+file+may+cause+incorrect+behavior+and+will+be+lost%22&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a" rel="nofollow">Try Googling only part of the message</a>.</p>
http://stackoverflow.com/questions/491603/why-encrypt-query-strings-in-asp-net/491651#4916515Answer by Ian Varley for Why Encrypt Query Strings in ASP.NET?Ian Varley2009-01-29T13:51:36Z2009-01-29T13:51:36Z<p>A reason why you might do something like this is to prevent tampering with the URL to get access to data other than your own. For example, if you have the url:</p>
<pre><code>http://foo.com/user.aspx?user_id=123
</code></pre>
<p>it wouldn't be hard for me (or anyone) to change that to:</p>
<pre><code>http://foo.com/user.aspx?user_id=124
</code></pre>
<p>If your data access strategy relies entirely on what's in the querystring, that could allow unauthorized access to data.</p>
<p>This approach does serve that purpose correctly, but a more robust way to get there is to actively check authorization within the application, and never rely exclusively on the URL for authentication and / or authorization purposes.</p>
<p>Note that this has nothing to do with SSL - that ensures privacy between the browser and server, but you can be under a perfectly secure connection and still tamper with the URL.</p>
http://stackoverflow.com/questions/469903/using-change-data-capture-for-small-desktop-applications/470030#4700301Answer by Ian Varley for Using Change Data Capture for Small Desktop Applications?Ian Varley2009-01-22T17:18:14Z2009-01-22T17:18:14Z<p>While triggers are a pain to work with in many ways, you can use them layer on a transparent data audit history mechanism without any impact to the main codebase, by writing scripts that actually <strong>generate</strong> the triggers and history tables automatically. It's a fair amount of work, and I don't know of anyone who's done such a thing and open-sourced it, but it might be an interesting project. At least that way, you can write one generator procedure and then never have to mess with the individual triggers again.</p>
http://stackoverflow.com/questions/469806/help-with-writing-sql-code-same-functionality-as-yell-com/469812#4698120Answer by Ian Varley for Help with writing SQL code: same functionality as Yell.comIan Varley2009-01-22T16:21:27Z2009-01-22T16:21:27Z<p>What you need first is not SQL code, but a database design. Only then does it make any sense to start writing SQL.</p>
<p>A simple table schema that matches Yell's functionality might be something like:</p>
<pre><code>CREATE TABLE Company (
company_id INT NOT NULL PRIMARY KEY IDENTITY(1,1),
company_name VARCHAR(255) NOT NULL,
location VARCHAR(255) NOT NULL
)
</code></pre>
<p>and then you'd search for it by name with SQL like:</p>
<pre><code>SELECT * FROM Company WHERE company_name like '%text%'
</code></pre>
<p>or by location like:</p>
<pre><code>SELECT * FROM Company WHERE location = 'Location'
</code></pre>
<p>Of course, a real-world location search would have to use either exact city and state, or a zip code lookup, or some intelligent combination thereof. And a real table would then have lots more fields, like descriptions, etc. But that's the basic idea.</p>
http://stackoverflow.com/questions/466968/how-to-convince-management-to-clean-up-code-after-going-live/467001#46700131Answer by Ian Varley for How to convince management to clean up code after going liveIan Varley2009-01-21T21:06:38Z2009-01-21T21:06:38Z<p>One excellent metaphor that really captures the attention of business-types is referring to it as <a href="http://en.wikipedia.org/wiki/Technical_debt" rel="nofollow">Technical Debt</a>. That makes them understand that while it's not an acute problem right this minute, it'll grow worse over time if ignored, and there are real monetary ramifications if you don't deal with it.</p>
http://stackoverflow.com/questions/455627/head-first-style-data-structures-algorithms-book/455651#4556515Answer by Ian Varley for 'Head First' Style Data Structures & Algorithms Book?Ian Varley2009-01-18T18:29:09Z2009-01-18T18:29:09Z<p>The <a href="http://rads.stackoverflow.com/amzn/click/1848000693" rel="nofollow">Algorithm Design Manual</a> by <a href="http://www.cs.sunysb.edu/~algorith/" rel="nofollow">Steve Skiena</a> isn't exactly a barrel of laughs, but it's relatively light on the deeper mathematics and contains lots of what he calls "War Stories", which are illustrative examples from real world situations where algorithm work really paid off (or, sometimes, totally failed). He's also got his <a href="http://www.cs.sunysb.edu/~algorith/video-lectures/" rel="nofollow">audio and video lectures online</a>, and he's got a nice lecture style with bits of humor interspersed, so it might be what you are looking for.</p>
http://stackoverflow.com/questions/455601/best-way-to-recruit-a-virtual-team-to-a-garage-software-project/455632#4556322Answer by Ian Varley for Best way to recruit a virtual team to a "garage" software project ? Ian Varley2009-01-18T18:23:25Z2009-01-18T18:23:25Z<p>Honestly, you may want to go with a social networking site like <a href="http://www.linkedin.com" rel="nofollow">LinkedIn</a>. </p>
<p>Your best bet on a risky project like this is to work with people you already know, and who already know you. If there are some bonds of trust in place already, you'll have a vastly greater chance of success, and a lot fewer unexpected personnel problems. Extending this to a 2nd degree contact (someone who knows someone you know) is a good next step. </p>
<p>Only if you really have no other options should you start pulling in people you've got no prior connection with, unless a) you're famous, or b) you want to start paying them and go through a more intense vetting (hiring) process.</p>
http://stackoverflow.com/questions/441777/are-there-any-laws-when-working-with-confidential-financial-data/441794#44179416Answer by Ian Varley for Are there any laws when working with confidential financial data?Ian Varley2009-01-14T03:16:33Z2009-01-14T03:16:33Z<p>The only real advice you should accept from programmers on this question is: </p>
<p><strong>Get a lawyer.</strong></p>
<p>Like you, we are coders, not lawyers, and we're not really in a good position to give out legal advice. Perhaps there are lawyers among us, and perhaps they'll give us all some free legal advice on this one, but advice in the world of law doesn't usually flow quite as freely as advice in the world of code, in my experience.</p>
http://stackoverflow.com/questions/441289/how-do-you-use-namespaces/441305#4413051Answer by Ian Varley for How do you use namespaces?Ian Varley2009-01-13T23:26:47Z2009-01-13T23:26:47Z<p>This depends on the language and the breadth of the organization and code. You're right that having a long list of namespaces scattered throughout the code makes it harder to read. But they do have a good purpose: code organization. Does your language give you the ability to alias these domains, or just to include the names once at the beginning of the file, via a "using" or "imports" statement? If that's the case, then in the body of code, you only need namespaces where they conflict.</p>
http://stackoverflow.com/questions/435546/should-i-quick-list-my-drop-down-list-of-countries/435687#4356874Answer by Ian Varley for Should I "quick list" my drop-down list of countries?Ian Varley2009-01-12T15:06:16Z2009-01-12T15:06:16Z<p>Another solution is to have the list only show countries that have been given as answers in the past, plus an "Other" option that expands the list (or shows a second list) with the full set. </p>
<p>Thus, if you've never had a visitor from, say, Kyrgyzstan, it wouldn't appear in the list at all. The first time a Kyrgyzstani user comes to the site, they'd choose "Other" on the list, and only then would you show the full list. After that, though, since Kyrgyzstan had been answered, you would show it in the initial list. (The threshold for that doesn't have to be 1 ... it can be any number you like, and you'd want to set it so that on balance, many more people are helped by the omission than are hurt by having to choose "Other".)</p>
<p>You could also include a population (or internet-using population) metric and automatically show all countries above a certain size, so the big ones like Germany would be included even before their first users start showing up. Or, if you know you'll have a lot of users from certain countries, for whatever reason, you can have a list of countries that are manually included as well.</p>
<p>Overall: don't underestimate the benefit you'll get by trimming down the list. It's little things like that that make a user interface "great" rather than "ok".</p>
http://stackoverflow.com/questions/433837/should-one-be-strict-on-design-pattern-implementation/433844#4338443Answer by Ian Varley for Should one be strict on design pattern implementation?Ian Varley2009-01-11T22:19:38Z2009-01-11T22:19:38Z<p>For anything you do with design patterns, you should be able to ask yourself one simple question: <strong>how does this make my software better</strong>? Be specific about it. If you can't list of concrete advantages of implementing a design pattern in your specific situation, don't bother; and likewise, if you get the "gist" of the pattern, you'll likely be able to implement the parts of it that are useful to your situation.</p>
<p>The Design Patterns book is particularly good here - they list specific advantages to using each pattern, and detailed cases where they're appropriate, and why.</p>
http://stackoverflow.com/questions/433371/ellipse-bounding-a-rectangle/433435#4334351Answer by Ian Varley for Ellipse bounding a rectangleIan Varley2009-01-11T19:03:58Z2009-01-11T19:03:58Z<p>Assuming you mean circumscribed (which is more precise than "enclosed"), you can read about <a href="http://en.wikipedia.org/wiki/Circumscribed_circle" rel="nofollow">how to circumscribe a rectangle here</a>. From there, you can stretch it to rectangular, as Alnitak says.</p>
http://stackoverflow.com/questions/433375/fundamentals-vs-specific-technologies/433419#4334191Answer by Ian Varley for Fundamentals Vs. Specific TechnologiesIan Varley2009-01-11T18:54:29Z2009-01-11T18:54:29Z<p>Generally, hire for fundamentals. That said ...</p>
<p>While it's not fun to think about, your immediate needs may <em>occasionally</em> justify getting someone who's got deep experience with a specific area, but is not well grounded overall. For example, if you have some really hard SQL problems that you need solved right away, you might opt for getting a SQL guru, even if she failed your "data structures" interview questions. The alternative (getting a smart person who has never seen SQL before) is not going to help with your immediate problem, as it'll take anyone a while to get up to speed on RDBMS concepts and SQL (especially if they've never seen it before). Same holds true for any specific technology or language - it's possible to get quite far in any one thing without all the fundamentals.</p>
<p>The trouble with this appraoch, of course, is that after your immediate niche problem is fixed, now you've got a full-time hire sitting around who might not be up to par in other ways, and might not be of optimal use as your mix of needs change. This can be mitigated by a) only hiring contractors when you have an issue like that, or b) investing in the person to help them shore up their fundamentals. </p>
<p>The ideal thing, though, is not to get yourself into that situation in the first place - hire only people with strong fundamentals, and anticipate your needs far enough in advance for your strong people to learn what they need to know. Easier said than done, of course ...</p>
http://stackoverflow.com/questions/428571/do-smarter-compilers-languages-and-frameworks-make-dumber-programmers/428597#4285977Answer by Ian Varley for Do smarter compilers, languages, and frameworks make dumber programmers?Ian Varley2009-01-09T15:55:47Z2009-01-09T15:55:47Z<p>On <em>average</em>, yes. :)</p>
<p>They don't make <strong>us</strong> dumber programmers. What they do is allow there to be more dumb programmers (which I suppose means that, on average, we are dumber.) Having better tools means that someone with little experience and a shady understanding of the concepts of CS can still crank out code that eventually works and does something useful. That isn't possible when writing in assembly, but it is when writing in, say, VB. (Of course, there's a greater chance of eventual WTF-style catastrophes when a less experienced person is writing big apps that eventually collapse under the weight of their poor architecture.)</p>
<p>Admittedly, "dumb" is an inflammatory word to use here. Just because someone knows less doesn't make them stupid, it just means they're less experienced. But the point is understood.</p>
http://stackoverflow.com/questions/428543/is-it-impractical-to-put-an-html-form-into-an-email/428561#4285612Answer by Ian Varley for Is it impractical to put an HTML form into an email?Ian Varley2009-01-09T15:46:45Z2009-01-09T15:46:45Z<p>You're correct - it's very unlikely that any significant portion of email clients will handle this well. It's hard enough getting plain HTML to work consistently in email clients, let alone "advanced" functionality like forms. I promise you that if you send it out to an audience with a heterogeneous mix of email clients, at least 80% of them will say "your form doesn't work".</p>
<p>If you're not sure, sign up for half a dozen free email accounts, plus one you can access via imap. Send the email with a simple form to all the account, plus view the imap one through 3 different clients (say, Thunderbird, Outlook, and Eudora). See if it works, and let us know.</p>
http://stackoverflow.com/questions/428529/asp-net-output-expense-report-in-excel/428546#4285460Answer by Ian Varley for ASP.NET output expense report in ExcelIan Varley2009-01-09T15:42:24Z2009-01-09T15:42:24Z<p>Try <a href="http://www.aspose.com/categories/file-format-components/aspose.cells-for-.net-and-java/default.aspx" rel="nofollow">Aspose.Cells</a> - it works great for this.</p>
http://stackoverflow.com/questions/428175/how-do-views-work-in-a-dbm/428239#4282395Answer by Ian Varley for How do Views work in a DBM ?Ian Varley2009-01-09T14:32:29Z2009-01-09T14:32:29Z<p>Generally, unless you "materialize" a view, which is an option in some software like MS SQL Server, the view is just translated into queries against the base tables, and is therefore no faster or slower than the original (minus the minuscule amount of time it takes to translate the query, which is nothing compared to actually executing the query).</p>
<p>How do you know you've got performance problems? Are you profiling it under load? Have you verified that the performance bottleneck is these two tables? Generally, until you've got hard data, don't assume you know where performance problems come from, and don't spend any time optimizing until you know you're optimizing the right thing - 80% of the performance issues come from 20% of the code.</p>
http://stackoverflow.com/questions/425047/sql-2000-to-index-or-not-to-index/425174#4251741Answer by Ian Varley for [SQL 2000] To Index or Not to IndexIan Varley2009-01-08T17:34:12Z2009-01-08T17:34:12Z<p>As Ray says, it's all dependent on the situation, and the only way to tell is to try it under load.</p>
<p>From a theoretical perspective: yes, adding indexes to a table will slow down inserts, because the DBMS has to maintain all the indexes with every insert. But will you notice? Will it matter to observed performance? Maybe not. Indexes are generally kept in B+ Tree structures, which can be inserted into in O(log n) time, which is quite good, not to mention all the disk caching, etc. So the only way to know for sure is to try it both ways and see what the difference is.</p>
http://stackoverflow.com/questions/1622844/can-i-see-the-resulting-markup-after-javascript-dom-manipulationComment by Ian Varley on Can I see the resulting markup after JavaScript Dom manipulation?Ian Varley2009-10-26T20:35:24Z2009-10-26T20:35:24Z@Kinopiko - I looked for a while before posting. If there are exact duplicates, could you provide a link?http://stackoverflow.com/questions/299723/can-i-do-transactions-and-locks-in-couchdb/1215297#1215297Comment by Ian Varley on Can I do transactions and locks in CouchDB?Ian Varley2009-08-01T02:43:42Z2009-08-01T02:43:42ZBut what about cases where the account is debited but the tension doc isn't changed? Any failure scenario between those two points, if they are not atomic, will cause permanent inconsistency, right? Something about the process has to be atomic, that's the point of a transaction.http://stackoverflow.com/questions/1189911/non-relational-database-designComment by Ian Varley on Non-Relational Database DesignIan Varley2009-07-29T22:10:48Z2009-07-29T22:10:48ZFor anyone uber-interested, there's a long-form discussion going on on the NoSQL google group, here: <a href="http://groups.google.com/group/nosql-discussion/browse_thread/thread/bbe3aa69071fd7b9" rel="nofollow">groups.google.com/group/nosql-discussion/…</a>http://stackoverflow.com/questions/327169/how-far-can-you-really-go-with-eventual-consistency-and-no-transactions-aka-si/327532#327532Comment by Ian Varley on How far can you really go with "eventual" consistency and no transactions (aka SimpleDB)?Ian Varley2009-07-28T16:13:34Z2009-07-28T16:13:34ZAha, right you are - I presume he's actually talking about Amazon SimpleDB. I think most of my points still apply, though. http://stackoverflow.com/questions/1055208/c-data-structure-with-lookuptime-o1-like-javas-hashmap-in-stl/1055394#1055394Comment by Ian Varley on C++ data structure with lookuptime O(1), like java's hashmap in stl ?Ian Varley2009-06-29T22:37:15Z2009-06-29T22:37:15Zstdext! You just saved me a bunch of searching. Thanks!http://stackoverflow.com/questions/612814/how-can-i-execute-multiple-database-requests-in-asp-net-cComment by Ian Varley on How can I execute multiple database requests in ASP.NET C#?Ian Varley2009-03-05T14:02:03Z2009-03-05T14:02:03ZA better way to describe this would be "multiple database requests in one trip", not "parallel database requests". "Parallel" means they all happen literally at the same time, which doesn't seem to be what you're seeking; there are ways to do that too, though that makes little sense for a web page.http://stackoverflow.com/questions/511381/differentiating-between-ab-and-ab-in-a-character-database-field/511406#511406Comment by Ian Varley on Differentiating between "AB" and "Ab" in a character Database FieldIan Varley2009-02-04T15:43:36Z2009-02-04T15:43:36ZThanks for the hat tip ... :)http://stackoverflow.com/questions/511381/differentiating-between-ab-and-ab-in-a-character-database-field/511398#511398Comment by Ian Varley on Differentiating between "AB" and "Ab" in a character Database FieldIan Varley2009-02-04T13:47:27Z2009-02-04T13:47:27ZYou can also use COLLATE Latin1_General_CS_AS in the query to force case sensitivity for just that one column in that one query.http://stackoverflow.com/questions/491603/why-encrypt-query-strings-in-asp-net/491651#491651Comment by Ian Varley on Why Encrypt Query Strings in ASP.NET?Ian Varley2009-01-29T14:48:52Z2009-01-29T14:48:52ZTrue dat. To be complete, though, note that a knowledgeable person can still tamper with unencrypted POST data, even in viewstate; that would take a pretty high level hacker to do, but if you want to be completely safe and rely on it, it'd have to be encrypted also.http://stackoverflow.com/questions/480263/string-syntax-questionComment by Ian Varley on String syntax questionIan Varley2009-01-28T21:42:08Z2009-01-28T21:42:08Z@Jon Right you are - I thought about clarifying that in my comment, and I should have. :)http://stackoverflow.com/questions/480263/string-syntax-questionComment by Ian Varley on String syntax questionIan Varley2009-01-26T16:00:13Z2009-01-26T16:00:13ZAlso, is there a reason you're using implicit typing with "var" rather than strongly typing these as strings?http://stackoverflow.com/questions/456302/how-to-determine-if-two-web-pages-are-the-same/456325#456325Comment by Ian Varley on How to determine if two web pages are the same?Ian Varley2009-01-19T03:04:04Z2009-01-19T03:04:04ZHashing will only get you so far b/c it's a binary difference; either they hash the same or they don't. Whereas other measures mentioned above (cosine similarity, etc.) measure more precisely <i>how</i> close the pages are. Dealing with web stuff, that's probably the realm you want to be in.http://stackoverflow.com/questions/456336/version-control-with-the-least-disk-space-overhead/456353#456353Comment by Ian Varley on Version control with the least disk-space overheadIan Varley2009-01-19T03:00:21Z2009-01-19T03:00:21ZYes, I'd agree with this ... for non-changing BLOBs like MP3s and movies, use an asset tracker or even just a backup and multi-machine sync process. SVN and other VCSes are great for text, not as useful for BLOBs.http://stackoverflow.com/questions/441240/javabeans-alternatives/441273#441273Comment by Ian Varley on JavaBeans alternatives?Ian Varley2009-01-13T23:30:19Z2009-01-13T23:30:19ZDefinitely an approach that would work, but I think it missed the point of the post: he finds JavaBeans too verbose and complex. Doesn't adding another layer via DSL or annotations and post-processing just make that worse?http://stackoverflow.com/questions/424919/how-to-best-enforce-single-level-recursion-in-a-sql-table/425168#425168Comment by Ian Varley on How to best enforce single-level recursion in a SQL table?Ian Varley2009-01-12T14:55:39Z2009-01-12T14:55:39ZJust tried this, and it worked. My check constraint passes the value of the parent pointer column into a UDF which checks whether the record pointed to by that id itself has a parent, and returns accordingly. Thanks!