User BQ - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T15:43:37Zhttp://stackoverflow.com/feeds/user/4632http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1711771/is-it-possible-to-override-the-auto-indentation-of-comments-in-vb-net-vs2008/1711867#17118671Answer by BQ for Is it possible to override the auto-indentation of comments in VB.NET/VS2008?BQ2009-11-10T23:02:04Z2009-11-10T23:02:04Z<p>I think you're looking for this in the menu:</p>
<blockquote>
<p>Tools->Options->Text Editor->Basic->VB
Specific->Pretty listing
(reformatting) of code</p>
</blockquote>
<p>From <a href="http://msdn.microsoft.com/en-us/library/y0y5th94.aspx" rel="nofollow">MSDN</a>:</p>
<blockquote>
<p><strong>Pretty Listing (reformatting) of code</strong></p>
<p>The text editor reformats your code as
appropriate. When this option is
selected, the code editor will:</p>
<ul>
<li>Align your code to the correct tab position</li>
</ul>
</blockquote>
http://stackoverflow.com/questions/1703297/selecting-records-in-sql-based-on-another-tables-contents/1703324#17033241Answer by BQ for Selecting records in SQL based on another table's contentsBQ2009-11-09T19:52:44Z2009-11-09T19:52:44Z<p>You're looking to <code>JOIN</code> tables.</p>
<p>Assuming the id and userID columns have the same meaning, it's like this:</p>
<pre><code>select u.name
from users u inner join properties p
on u.id = p.userID
where p.property = :ValueToFind
</code></pre>
http://stackoverflow.com/questions/424356/using-same-debug-settings-for-start-external-program-across-32-bit-and-64-bit-deb/1597484#15974841Answer by BQ for Using same Debug settings for Start External Program across 32 bit and 64 bit debug environmentsBQ2009-10-20T21:37:25Z2009-10-20T21:37:25Z<p>These debug settings, "Start External Program" and "Working Directory," are stored in the ProjectName.csproj.user file, not the solution (.sln) file or the project (.csproj) file. Typically, the .user files aren't included in source control since they're specific to the user's environment where the debugging's going on.</p>
<p>You could maintain two separate .csproj.user files (one for each environment) and swap to the correct version before opening the solution. Not ideal, but better than nothing.</p>
http://stackoverflow.com/questions/1135117/call-a-parameterized-oracle-query-from-adodb-in-classic-asp/1337641#13376410Answer by BQ for Call a parameterized Oracle query from ADODB in Classic ASPBQ2009-08-26T21:38:05Z2009-08-26T21:38:05Z<p>How do you have <code>filter_value</code> defined? If it's not declared as a String or if you've assigned a string longer than 10 characters (as you've indicated when creating the parameter), you'll have issues with that.</p>
<p>Additionally (and partly for my own reference), <strong><em>named parameters are not supported via OraOLEDB</em></strong> (i.e. ADODB).</p>
<p>See <a href="http://download.oracle.com/docs/cd/B28359%5F01/win.111/b28431/using.htm#sthref143" rel="nofollow">Oracle® Provider for OLE DB Developer's Guide 11g Release 1 (11.1)</a> or follow the "Command Parameters" heading link on any of the <a href="http://www.oracle.com/technology/docs/tech/windows/ole%5Fdb/index.html" rel="nofollow">previous versions</a> (8iR3, 9i, 9iR2, 10g, 10gR2):</p>
<blockquote>
<p><strong>Command Parameters</strong></p>
<p>When using Oracle ANSI SQL, parameters
in the command text are preceded by a
colon. In ODBC SQL, parameters are
indicated by a question mark (?).</p>
<p>OraOLEDB supports input, output, and
input and output parameters for PL/SQL
stored procedures and stored
functions. OraOLEDB supports input
parameters for SQL statements.</p>
<p>"<strong>Note</strong>: OraOLEDB supports only
positional binding."</p>
</blockquote>
<p>That said, this should have no bearing on your query when using OraOLEDB:</p>
<pre><code>oFilteredList.NamedParameters = True
</code></pre>
<p>I've had success running queries exactly as the rest of your example shows though on Oracle 10gR2.</p>
<p>You don't show your connection string, so I must assume it to be valid. Behavior can differ depending on options there, so here's what I successfully use:</p>
<pre><code>`"Provider=OraOLEDB.Oracle;Data Source=TNSNAMES_ENTRY;User ID=XXXX;Password=YYYY;DistribTx=0;"`
</code></pre>
http://stackoverflow.com/questions/830150/why-doesnt-sourcesafe-respect-the-open-this-database-next-time-option1Why doesn't SourceSafe respect the "Open this database next time..." option?BQ2009-05-06T15:21:04Z2009-05-06T15:32:08Z
<p>Using Visual SourceSafe's "Open SourceSafe Database..." command, there is an option at the bottom of the dialog to "Open this database next time I run Visual SourceSafe."</p>
<p>Typically, when checking this box the most recent opened VSS DB is opened immediately upon launching VSS (even if it's a second instance of VSS running).</p>
<p>I'm seeing this option not respected. All launches of VSS result in the same DB being opened at launch. </p>
<p>Removing all the registry entries under <code>HKLM\Software\Microsoft\SourceSafe\Databases</code> and <code>HKCU\Software\Microsoft\SourceSafe\Databases</code> doesn't help. </p>
<p>Additionally, the <code>HKCU\Software\Microsoft\Sourcesafe\Current Database</code> value was accurately pointing to the DB I wanted to be opened, but not the DB that was VSS was actually opening. Same with the similar value under <code>HKLM</code>.</p>
http://stackoverflow.com/questions/830150/why-doesnt-sourcesafe-respect-the-open-this-database-next-time-option/830161#8301612Answer by BQ for Why doesn't SourceSafe respect the "Open this database next time..." option?BQ2009-05-06T15:22:53Z2009-05-06T15:22:53Z<p>An environment variable had been set to force that particular database.</p>
<p>When SSDIR is set, the VSS dialog option is ignored.</p>
<p>Clearing the SSDIR variable fixed the issue.</p>
http://stackoverflow.com/questions/827127/how-do-i-show-how-many-lines-of-code-my-project-contains-in-visual-studio/827162#8271623Answer by BQ for How do I show how many lines of code my project contains in Visual Studio?BQ2009-05-05T22:17:46Z2009-05-05T22:17:46Z<p>Code Metrics is only available in the Team System versions of Visual Studio 2008. If you have an Express Edition, Standard, or Professional you're out of luck.</p>
<p>See comments and screenshots here:</p>
<ul>
<li><a href="http://blogs.msdn.com/fxcop/archive/2007/10/03/new-for-visual-studio-2008-code-metrics.aspx" rel="nofollow">http://blogs.msdn.com/fxcop/archive/2007/10/03/new-for-visual-studio-2008-code-metrics.aspx</a></li>
<li><a href="http://blogs.msdn.com/somasegar/archive/2007/10/04/code-analysis-features-in-vs-2008.aspx" rel="nofollow">http://blogs.msdn.com/somasegar/archive/2007/10/04/code-analysis-features-in-vs-2008.aspx</a></li>
</ul>
http://stackoverflow.com/questions/783660/efficient-alternative-to-outer-join/783681#7836811Answer by BQ for Efficient Alternative to Outer JoinBQ2009-04-23T21:54:19Z2009-04-23T21:54:19Z<p>No need to nest queries. Try this:</p>
<pre><code>select s.full_name
from lims.operator o, lims.sample s
where o.operator_id = s.authorised_by(+)
and s.sample_template_id = 200
</code></pre>
http://stackoverflow.com/questions/443640/httplistener-start-accessdenied-error-on-vista/443793#4437930Answer by BQ for HttpListener.Start() AccessDenied error on VistaBQ2009-01-14T16:58:44Z2009-01-14T16:58:44Z<p>Is that URI already registered on the system?</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.net.httplistenerexception.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.net.httplistenerexception.aspx</a> says that would be one cause.</p>
http://stackoverflow.com/questions/339088/vsto-value-does-not-fall-within-the-expected-range/401539#4015391Answer by BQ for VSTO "Value does not fall within the expected range."BQ2008-12-30T21:17:13Z2008-12-30T21:32:05Z<blockquote>
<p>Gotcha. The <strong>path</strong> of the project was <strong>too
deep.</strong></p>
<p>Move the project a few folders above (in
the Windows Explorer folder tree) and
try <strong>re-building</strong>/ re-running again.</p>
</blockquote>
http://stackoverflow.com/questions/401536/which-development-practice-helps-you-the-most/401562#40156225Answer by BQ for Which Development Practice Helps You the Most?BQ2008-12-30T21:25:37Z2008-12-30T21:25:37Z<h2>Unit Testing</h2>
<p>The ability to repeatedly and reproducibly run the same tests on code allow for better practices all around. You can refactor code, fix bugs, and do anything else you'd like with an existing codebase and know much more readily the side effects you may have caused. Without unit tests, programming is done like driving with blinders on.</p>
http://stackoverflow.com/questions/399340/label-on-checkboxes-is-there-a-reason-why-more-websites-dont-use-it/399351#3993513Answer by BQ for <label> on checkboxes: is there a reason why more websites don't use it?BQ2008-12-30T02:11:39Z2008-12-30T02:11:39Z<p>The developer working on the site didn't know the <code><label></code> tag existed.</p>
http://stackoverflow.com/questions/398963/what-is-the-worst-web-usability-error-you-have-encountered/399051#3990519Answer by BQ for What is the worst web usability error you have encountered?BQ2008-12-29T23:17:49Z2008-12-29T23:17:49Z<p>I absolutely hate sites that only allow for navigation triggered by hover effects. Obviously it breaks accessibility guidelines, but it also renders such a site unusable via touch-screen devices like the iPhone where hovering isn't an option.</p>
http://stackoverflow.com/questions/348526/programming-by-guessing-hoping/348536#3485365Answer by BQ for Programming by guessing/hopingBQ2008-12-08T02:22:40Z2008-12-29T03:01:19Z<p>As you surmise, it can be a product of being tired. Or lazy. Or ignorant. It's not much different than driving a car while sleepy in many respects.</p>
<p>It's very dangerous because the tired/lazy/ignorant programmer here cannot tell the difference between a successful, correct program and one that happens to have produced successful or correct result once.</p>
<p>The best advice is to stop when you're realizing you're in this situation. Get sleep, Eat. Enlist the help of a coworker.</p>
<p>Or if it's from ignorance, then read up on whatever you're working on for better ideas and practices.</p>
http://stackoverflow.com/questions/378331/physical-or-logical-delete-of-database-record/378421#3784211Answer by BQ for Physical or Logical Delete of Database RecordBQ2008-12-18T16:34:44Z2008-12-29T03:00:20Z<p>It's fairly standard in cases where you'd like to keep a history of something (e.g. user accounts as @Jon Dewees mentions). And it's certainly a great idea if there's a strong chance of users asking for un-deletions.</p>
<p>If you're concerned about the logic of filtering out the deleted records from your queries getting messy and just complicating your queries, you can just build views that do the filtering for you and use queries against that. It'll prevent leakage of these records in reporting solutions and such.</p>
http://stackoverflow.com/questions/392011/access-via-odbc-oracle-default-not-working/392074#3920741Answer by BQ for Access via ODBC - Oracle DEFAULT not workingBQ2008-12-24T19:09:55Z2008-12-24T19:09:55Z<p>If you're doing this with the grid view as data entry, I'd think that Access may be explicitly trying to insert an empty string as that value. Try writing the plain SQL statement for the insert and see what happens.</p>
<p>I'd expect underlying SQL like this (assuming default values set for name="John", balance="0.0")...</p>
<p>Via grid view:</p>
<pre><code>insert into customers (cust_id, name, balance) values (1, "Bob", 50.25);
</code></pre>
<p>and if one were empty:</p>
<pre><code>insert into customers (cust_id, name, balance) values (2, "", 0);
</code></pre>
<p>But, via SQL:</p>
<pre><code>insert into customers (cust_id, name) values (3, "Pete");
insert into customers (cust_id) values (4);
</code></pre>
<p>I'd assume the SQL example to use the default values for the unset columns, but the grid view to supply blank values from the UI which would prevent the defaults from being used.</p>
http://stackoverflow.com/questions/392001/sql-string-formatter/392020#3920200Answer by BQ for SQL string formatterBQ2008-12-24T18:45:26Z2008-12-24T18:45:26Z<p>Not that I recommend spending the (relatively large) money on it for just this purpose, but <a href="http://www.quest.com/toad-for-oracle/" rel="nofollow">Toad</a> has a feature built in that does exactly what you're wanting. </p>
<p>It includes a bunch of options allowing you to set up exactly how you want your SQL formatted (all columns on separate lines, etc.). Pretty nice, but only if you've already got Toad. I know the Oracle version does this, but I'd assume the SQL Server or other versions would as well.</p>
http://stackoverflow.com/questions/387339/database-design-best-practices/387376#3873763Answer by BQ for Database Design Best PracticesBQ2008-12-22T21:15:50Z2008-12-22T21:15:50Z<p>As with anything, the answer here is, "It Depends."</p>
<p>Databases can be used to do different things, and some of those things will require opposing directions in design and development.</p>
<p>An OLTP database system will be designed entirely differently from one used as a reporting or warehousing solution. The first is often normalized, and a warehouse is often de-normalized. This helps the system get the desired performance for its intended behavior.</p>
<p>Even within a segment of this, depending on if the usage will be read-heavy or write-heavy, different design decisions might be appropriate.</p>
<p>The best bet is to look into best practices for a much smaller segment of database development that corresponds to the type of application you're trying to build.</p>
http://stackoverflow.com/questions/372114/serializing-objects-as-blobs-in-oracle/372131#3721310Answer by BQ for Serializing objects as BLOBs in OracleBQ2008-12-16T18:02:27Z2008-12-16T18:02:27Z<p>I haven't had the need to compare BLOBs, but it appears that it's supported through the <code>dbms_lob</code> package. </p>
<p>See <code>dbms_lob.compare()</code> at <a href="http://www.psoug.org/reference/dbms_lob.html" rel="nofollow">http://www.psoug.org/reference/dbms_lob.html</a></p>
http://stackoverflow.com/questions/370262/is-there-any-online-xslt-processing-service-available/370404#3704043Answer by BQ for Is there any online XSLT processing service available?BQ2008-12-16T03:40:52Z2008-12-16T15:37:32Z<p>Look into <a href="http://pipes.yahoo.com/" rel="nofollow">Yahoo Pipes (<a href="http://pipes.yahoo.com/" rel="nofollow">http://pipes.yahoo.com/</a>)</a>.</p>
<p>From the site:</p>
<blockquote>
<h2>About Pipes</h2>
<p>Pipes is a powerful composition tool to aggregate, manipulate, and mashup content from around the web.</p>
<p>Like Unix pipes, simple commands can be combined together to create output that meets your needs:</p>
<ul>
<li>combine many feeds into one, then sort, filter and translate it.</li>
<li>geocode your favorite feeds and browse the items on an interactive map.</li>
<li>power widgets/badges on your web site.</li>
<li>grab the output of any Pipes as RSS,JSON, KML, and other formats.</li>
</ul>
</blockquote>
http://stackoverflow.com/questions/370087/oracle-function-concurrency/370107#3701073Answer by BQ for Oracle function concurrencyBQ2008-12-15T23:51:46Z2008-12-16T15:30:13Z<p>No need to work out the exclusivity here. Oracle does that by managing your transactions.</p>
<p>The key is that each invocation of your "custom defined function" needs to return a unique code.</p>
<p>That means NOT using the system date/time, but something else to ensure uniqueness.</p>
<p>I recommend this:</p>
<pre><code>select sys_guid() from dual;
</code></pre>
<p>Use <code>sys_guid()</code> to salt your function, and all should be well in trigger land. </p>
<p>Just PLEASE don't try to update a different table with this value, or else you'll need to deal with mutating tables and such.</p>
<p>Edit: Obviously, as a couple others have mentioned, using a sequence in the trigger to seed your function is another good suggestion as Oracle enforces the uniqueness. Using it as a seed though may produce a predictable result, so be careful if the "custom defined function" is a password reset or something like that.</p>
http://stackoverflow.com/questions/353019/calling-oracle-sp-with-tableadapter-very-slow/355364#3553640Answer by BQ for Calling Oracle SP with TableAdapter very slowBQ2008-12-10T07:42:37Z2008-12-10T07:42:37Z<p>Make sure you're setting the <code>CommandType</code> to <code>CommandType.StoredProcedure</code>.</p>
<p>For example (from <a href="http://msdn.microsoft.com/en-us/library/ms971506.aspx" rel="nofollow">MSDN</a>):</p>
<pre><code>OracleCommand cmd = new OracleCommand();
cmd.Connection = conn;
cmd.CommandText = "COUNT_JOB_HISTORY";
cmd.CommandType = CommandType.StoredProcedure;
</code></pre>
http://stackoverflow.com/questions/347862/how-to-detect-when-laptop-power-cable-has-been-disconnected/347873#3478732Answer by BQ for How to detect when laptop power cable has been disconnected?BQ2008-12-07T18:28:48Z2008-12-07T18:28:48Z<p>This will probably get closed as not-programming-related, but you may want to check your BIOS setttings.</p>
<p>My Lenovo laptop does exactly what you're suggesting natively. There is a setting in my BIOS for beeping on power status change.</p>
http://stackoverflow.com/questions/335192/is-commit-necessary-when-updating-oracle-from-asp-net/335676#3356760Answer by BQ for Is "Commit" necessary when updating Oracle from asp.net?BQ2008-12-02T22:22:22Z2008-12-02T22:22:22Z<p>The behavior you're seeing in SQL Navigator is probably determined by an options setting.</p>
<p>I haven't used <a href="http://www.quest.com/sql-navigator/" rel="nofollow">SQL Navigator</a>, but I do use <a href="http://www.quest.com/toad-for-oracle/" rel="nofollow">TOAD</a> which is also by Quest Software. In the options dialog there, it's under View->Toad Options..., then the Oracle->Transactions node. </p>
<p>There's the following relevant settings:</p>
<ul>
<li><p>[ ] Commit after every statement (checkbox)</p></li>
<li><p>When closing connections: (radio selection)</p>
<ul>
<li>( ) Commit</li>
<li>( ) Rollback</li>
<li>( ) Prompt for commit/rollback when changes detected, or detection is not possible due to lack of privileges on dmbs_transaction.</li>
</ul></li>
</ul>
<p>So you could change the setting so you don't need to hit the commit button (or type "commit"), but it's generally a bad practice since a commit is something that you should explicitly be doing (or explicitly rolling back).</p>
http://stackoverflow.com/questions/321179/what-is-the-best-way-to-do-a-wildcard-search-in-sql-server-2005/321254#3212541Answer by BQ for What is the best way to do a wildcard search in sql server 2005?BQ2008-11-26T16:10:40Z2008-11-26T16:10:40Z<p>What your doing already is about the best you can do.</p>
<p>One optimization you might try is to ensure there's an index on the columns you're allowing this on. SQL Server will still need to do a full scan for the wildcard search, but it'll be only over the specific index rather than the full table.</p>
<p>As always, checking the query plan before and after any changes is a great idea.</p>
http://stackoverflow.com/questions/319159/generating-sql-using-xml-and-xslt/319175#3191751Answer by BQ for Generating SQL using XML and XSLTBQ2008-11-25T22:50:55Z2008-11-25T22:50:55Z<p>Your SQL statement scares me. XML is case-sensitive, and your comparison there is likely to fail if the input XML and XSLT (including all elements, attributes, and values) aren't cased exactly like that used in the original database insert.</p>
<p>I believe both Oracle (certain) and SQL Server (think so) have mechanisms to do a query against a column containing XML in a more XML-friendly way (for instance, using XPath).</p>
<p>What exactly are you trying to do? Your problem seems deeper than just getting this XSLT to transform correctly.</p>
http://stackoverflow.com/questions/319140/generating-sql-using-xml-and-xslt/319165#3191650Answer by BQ for Generating SQL using XML and XSLTBQ2008-11-25T22:46:54Z2008-11-25T22:46:54Z<p>Your SQL statement scares me. XML is case sensitive, and your comparison there is going to fail unless your XSLT transform generates exactly the same casing as your original insert used (including the casing of all element names, values, attributes) in the transformed XML.</p>
<p>I believe both Oracle (certain) and SQL Server (think so) have mechanisms by which you can query a column containing XML via XML-specific techniques like XPath.</p>
<p>What exactly are you trying to accomplish?</p>
http://stackoverflow.com/questions/318567/what-is-the-best-practice-for-handling-null-int-char-from-a-sql-database/318628#3186282Answer by BQ for What is the best practice for handling null int/char from a SQL Database?BQ2008-11-25T19:44:26Z2008-11-25T19:44:26Z<p>A decent discussion on this is at <a href="http://stackoverflow.com/questions/221582/most-efficient-way-to-check-for-dbnull-and-then-assign-to-a-variable">http://stackoverflow.com/questions/221582/most-efficient-way-to-check-for-dbnull-and-then-assign-to-a-variable</a>.</p>
http://stackoverflow.com/questions/317944/tools-to-search-for-strings-inside-files-without-indexing/317955#3179554Answer by BQ for Tools to search for strings inside files without indexingBQ2008-11-25T16:24:14Z2008-11-25T16:24:14Z<p>I'm a fan of the Find-In-Files dialog in <a href="http://notepad-plus.sourceforge.net/uk/download.php" rel="nofollow">Notepad++</a>. Bonus: It's free.</p>
http://stackoverflow.com/questions/317576/oracle-select-where-field-has-lowercase-characters/317601#31760115Answer by BQ for Oracle - Select where field has lowercase charactersBQ2008-11-25T14:53:00Z2008-11-25T14:53:00Z<p>How about this:</p>
<pre><code>select id, first, last from mytable
where first != upper(first) or last != upper(last);
</code></pre>
http://stackoverflow.com/questions/1711771/is-it-possible-to-override-the-auto-indentation-of-comments-in-vb-net-vs2008/1711867#1711867Comment by BQ on Is it possible to override the auto-indentation of comments in VB.NET/VS2008?BQ2009-11-10T23:29:30Z2009-11-10T23:29:30ZOther than adapting to put the comments after the case statement like @Jason suggests, I think so. Alternatively, tools like Resharper will allow you to customize a lot of those reformatting options very granularly and might work for you.http://stackoverflow.com/questions/1687025/sql-remove-appearances-of-a-comma-at-end-of-the-line/1687058#1687058Comment by BQ on SQL, remove appearances of a comma at end of the line.BQ2009-11-06T14:17:25Z2009-11-06T14:17:25ZCongrats, you've just removed any legitimate uses of '#' in the string.
My bitterness towards this technique is magnified from maintaining tons of code that does exactly this type of thing. Please don't intentionally inflict this sort of pain on the developer who gets to maintain this.http://stackoverflow.com/questions/783660/efficient-alternative-to-outer-join/783690#783690Comment by BQ on Efficient Alternative to Outer JoinBQ2009-04-23T22:34:34Z2009-04-23T22:34:34ZIt's actually the operator_id column on the operator table he's using (you may want to edit your answer to reflect this), but Oracle can use a composite index if needed (and if the query plan show's it's the best option).http://stackoverflow.com/questions/783660/efficient-alternative-to-outer-joinComment by BQ on Efficient Alternative to Outer JoinBQ2009-04-23T22:06:20Z2009-04-23T22:06:20ZThen don't include them in the SELECT clause. They're still valid in your JOIN and WHERE clauses.http://stackoverflow.com/questions/783660/efficient-alternative-to-outer-join/783681#783681Comment by BQ on Efficient Alternative to Outer JoinBQ2009-04-23T22:04:45Z2009-04-23T22:04:45Z@Stefan: Point noted (it's a habit I've used since Oracle 8i at least), but works fine if you're aware of its limitations. Much of the code I work with (and maintain) is written like this, so it's more familiar to me.http://stackoverflow.com/questions/783660/efficient-alternative-to-outer-join/783681#783681Comment by BQ on Efficient Alternative to Outer JoinBQ2009-04-23T22:01:22Z2009-04-23T22:01:22ZThen you aren't indexed by operator_id on the lims.operator table.
http://stackoverflow.com/questions/783660/efficient-alternative-to-outer-join/783690#783690Comment by BQ on Efficient Alternative to Outer JoinBQ2009-04-23T22:00:37Z2009-04-23T22:00:37Z+1: Essentially the same as mine, but with the "RIGHT JOIN" syntax instead of Oracle's (+) syntax. Probably easier to read if you alias the tables too.http://stackoverflow.com/questions/520439/how-do-i-close-the-gap-between-developers-and-production-support-teams/520604#520604Comment by BQ on How do I close the gap between developers and production support teams?BQ2009-02-06T18:57:55Z2009-02-06T18:57:55ZI do the same thing here, listening over the walls and helping when I can. The pass-the-issue-up-the-chain-and-then-back-down-to-a-developer official model really filters the issues, and as a developer I'll never know about any of my issues if someone else is always fixing them.http://stackoverflow.com/questions/514083/why-is-good-ui-design-so-hard-for-some-developers/514117#514117Comment by BQ on Why is good UI design so hard for some Developers?BQ2009-02-05T15:39:01Z2009-02-05T15:39:01ZI've found that past experience with things as diverse as Photoshop, some 3D design packages, AutoCAD, MS Office, and even various point-of-sale order entry applications helps me immensely building and maintaining empathy for users of software I'm developing. Notice how each has it's own paradigm.http://stackoverflow.com/questions/514083/why-is-good-ui-design-so-hard-for-some-developers/514117#514117Comment by BQ on Why is good UI design so hard for some Developers?BQ2009-02-05T15:34:28Z2009-02-05T15:34:28Z+1, only because I can't +100 myself! I'll add that gaining experience using vastly different applications as they were intended helps you grow as a UI developer. Only using tools like Visual Studio or other dev tools will hamper this ability...
http://stackoverflow.com/questions/488020/what-is-your-most-useful-sql-trick-to-avoid-writing-more-code/488205#488205Comment by BQ on What is your most useful sql trick to avoid writing more code?BQ2009-01-30T20:12:09Z2009-01-30T20:12:09Z@christian, for example, "INSERT INTO CurrentEmployee SELECT * FROM Employee WHERE FireDate IS NULL;" will populate your new table with existing data. It avoids the need to do an ETL operation or use multiple insert statements to load your data.http://stackoverflow.com/questions/488229/personal-project-idea-database-and-tracking/488284#488284Comment by BQ on Personal project/idea database and trackingBQ2009-01-28T19:21:29Z2009-01-28T19:21:29Z+1 for using your friends as a motivator.http://stackoverflow.com/questions/488020/what-is-your-most-useful-sql-trick-to-avoid-writing-more-code/488205#488205Comment by BQ on What is your most useful sql trick to avoid writing more code?BQ2009-01-28T19:06:40Z2009-01-28T19:06:40ZSee this answer for an Oracle-specific solution: <a href="http://stackoverflow.com/questions/260679/is-there-an-easy-way-to-clone-the-structure-of-a-table-in-oracle#260771" rel="nofollow" title="is there an easy way to clone the structure of a table in oracle%23260771">stackoverflow.com/questions/260679/…</a>http://stackoverflow.com/questions/488020/what-is-your-most-useful-sql-trick-to-avoid-writing-more-code/488465#488465Comment by BQ on What is your most useful sql trick to avoid writing more code?BQ2009-01-28T19:05:38Z2009-01-28T19:05:38ZAssuming you're putting line breaks in your query for readability, the FIRST condition starts with WHERE, while all the others will start the line with AND. Using 1=1 allows all the queries you care about to be interchangeable (and easy to comment out with -- at the beginnning of the line).http://stackoverflow.com/questions/443640/httplistener-start-accessdenied-error-on-vista/443902#443902Comment by BQ on HttpListener.Start() AccessDenied error on VistaBQ2009-01-14T20:44:54Z2009-01-14T20:44:54ZThe only other thing I can think of based on your example is the trailing slash after "app/" in Prefixes.Add(), but not in netsh. But I figured that was just a remnant of the multiple port/app combos you tried.