User Haoest - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T19:42:16Zhttp://stackoverflow.com/feeds/user/10088http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/104203/anyone-know-of-any-good-database-diff-tools7Anyone know of any good Database Diff tools?Haoest2008-09-19T18:14:36Z2009-11-27T02:11:53Z
<p>I can't find any good ones in sourceforge :( Anyone has any success with open source (or retail) database diff tool?</p>
<p>EDIT: for sqlserver 2005</p>
http://stackoverflow.com/questions/679181/javascript-extending-map-objects2Javascript: extending map objectsHaoest2009-03-24T20:46:25Z2009-11-04T02:23:06Z
<p>I don't know how to extend the map object with prototype and hope you can help.
I have something like this:</p>
<pre><code>var map = {'one':1, 'two':2};
</code></pre>
<p>and I would like to have a method to check for the existence of a key:</p>
<pre><code>if (map.containsKey('one')){...}
</code></pre>
<p>How would I extend the map object?</p>
http://stackoverflow.com/questions/481080/stored-procedure-name-tagging0Stored procedure name taggingHaoest2009-01-26T19:48:23Z2009-11-03T03:47:13Z
<p>Ever wonder what wikipedia's database schema looks like? I recently read this thread from <a href="http://www.reddit.com/r/programming/comments/7r3mg/ever_wonder_what_the_wikipedia_database_schema/" rel="nofollow">reddit</a>. </p>
<p>I like how their tables are tagged with a prefix so you can sort of tell its functionality, purpose, and relationship with other tables right off the bat. </p>
<p>One thing I do not notice is how they name their stored procedures. Do they even use SP? </p>
<p>I use MS SQL Server. Prefixing all stored procedures with USP_ or SP_ seems redundant and anti-beneficial as the object explorer already sorts it all out for me. How do you name your SPs?</p>
http://stackoverflow.com/questions/263010/whats-your-favorite-cross-domain-cookie-sharing-approach3What's your favorite cross domain cookie sharing approach?Haoest2008-11-04T19:09:41Z2009-10-22T22:37:14Z
<p>I see iframe/p3p trick is the most popular one around, but I personally don't like it because javascript + hidden fields + frame really make it look like a hack job. I've also come across a master-slave approach using web service to communicate (<a href="http://www.15seconds.com/issue/971108.htm" rel="nofollow">http://www.15seconds.com/issue/971108.htm</a>) and it seems better because it's transparent to the user and it's robust against different browsers. </p>
<p>Is there any better approaches, and what are the pros and cons of each?</p>
http://stackoverflow.com/questions/185521/what-other-objects-are-accessible-inside-tags-in-aspx2What other objects are accessible inside <%# %> tags in aspx?Haoest2008-10-09T00:51:10Z2009-10-06T19:07:28Z
<p>I run into similar codes like this all the time in aspx pages:</p>
<pre><code><asp:CheckBox Runat="server" ID="myid" Checked='<%# DataBinder.Eval(Container.DataItem, "column").Equals(1) %>'>
</code></pre>
<p>I was wondering what other objects I have access to inside of that <%# %> tag. How come DataBinder.Eval() and Container.DataItem are not visible anywhere inside .CS code?</p>
http://stackoverflow.com/questions/87422/disabling-back-button-on-the-browser7Disabling Back button on the browserHaoest2008-09-17T20:39:23Z2009-09-09T15:03:43Z
<p>I am writing an application that if the user hits back, it may resend the same information and mess up the flow and integrity of data. How do I disable it for users who are with and without javascript on?</p>
http://stackoverflow.com/questions/1360871/converting-non-decimal-numbers-to-another-non-decimal0Converting non-decimal numbers to another non-decimalHaoest2009-09-01T06:40:01Z2009-09-01T06:52:40Z
<p>Not that it's a lot of work, but the only way I know to convert a non-decimal to another non-decimal is by converting the number to decimal first, then take a second step to convert it to a new base. For example, to convert 456 (in base 7) to 567 (in base 8), I would calculate the decimal value of 456, then convert that value into base 8... </p>
<p>Is there a better way to go directly from 7 to 8? or any base to any other base for that matter? </p>
<p>Here's what I have:</p>
<pre><code>
//source_lang and target_lang are just the numeric symbols, they would be "0123456789" if they were decimal, and "0123456789abcdef" if hex.
private string translate(string num, string source_lang, string target_lang)
{
int b10 = 0;
string rv = "";
for (int i=num.Length-1; i>=0; i--){
b10 += source_lang.IndexOf( num[i] ) * ((int)Math.Pow(source_lang.Length, num.Length -1 - i));
}
while (b10 > 0) {
rv = target_lang[b10 % target_lang.Length] + rv;
b10 /= target_lang.Length;
}
return rv;
}
</code></pre>
http://stackoverflow.com/questions/738795/creating-column-with-user-defined-constraint0Creating column with user defined constraintHaoest2009-04-10T20:38:37Z2009-08-19T07:39:27Z
<p>I want to limit my varchar columns to have only ascii characters within a specified range, say 0-9 or A-F (for hex characters) What would my constraint look like?</p>
http://stackoverflow.com/questions/273297/whats-your-favorite-dummy-line-to-put-a-break-point-on1What's your favorite dummy line to put a break point on?Haoest2008-11-07T19:24:04Z2009-08-13T04:58:36Z
<p>Few of us would deny the awesomeness of debuggers, but to make it more useful, some tricks can be used. </p>
<p>For example in Python, you can use <strong><em>pass</em></strong> to do absolutely nothing except to leave you room to put a break point and allow you to observe the values in the Watch window. </p>
<p>In C#, I used to do <strong><em>GC.Collect()</em></strong>, but now I use <strong><em>if (false){}</em></strong></p>
<p>What's your most playful dummy line?</p>
http://stackoverflow.com/questions/110477/anyone-know-of-any-free-open-source-vi-integration-for-visual-studio8Anyone know of any (free / open source) VI integration for Visual Studio?Haoest2008-09-21T07:27:07Z2009-07-28T20:30:50Z
<p>vi is for cool kids.</p>
http://stackoverflow.com/questions/779754/import-data-wizard-does-not-like-data-type-i-choose-for-a-column0Import Data Wizard Does Not Like Data Type I Choose For A ColumnHaoest2009-04-23T00:04:26Z2009-07-16T16:52:16Z
<p>Does anybody else have this same problem, when you import data from Excel file to MSSQL Server 2005, if some column contains mostly numeric data, but even if you set the column type to varchar, the wizard fails to import those fields that fail to parse as numbers?</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro59Anyone else find naming classes and methods one of the most difficult part in programming?Haoest2009-01-07T20:36:20Z2009-05-30T22:52:36Z
<p>So I am working on this class that's suppose to request help documentation from a vendor through web service. I try to name it DocumentRetriever, VendorDocRequester, DocGetter, but they just doesn't sound right. I ended up browsing through dictionary.com for half an hour trying to come up with an adequate word. </p>
<p>Start programming with bad names is like having a very bad hair day in the morning, the rest of the day goes down hill from there. Feel me?</p>
http://stackoverflow.com/questions/235474/what-infuriates-you-the-most-when-maintaining-others-code28What infuriates you the most when maintaining others' code?Haoest2008-10-24T22:28:17Z2009-05-19T17:44:19Z
<p>Maybe infuriate is not the politically correct term, but what kind of code would qualify for a genuine face palm?</p>
<p>Addendum:
For me, it's the misuse of technology. The group of people who develop .NET like classic asp apps are very likely the same group of people who use recursion for simple iteration, standard array where linked list is blatantly the answer, massive number of individual variables in combination with if-statements for hash tables, functions for properties, validating input forms with only javascript, placing important naked-eye readable information in cookie,and on and on and on....</p>
http://stackoverflow.com/questions/748605/automatically-assigning-a-random-string-to-new-records0Automatically assigning a random string to new recordsHaoest2009-04-14T17:28:42Z2009-05-12T07:05:00Z
<p>I already have a customer table, but from now on new records have to be assigned a <em>unique random alphanumeric string of 5 characters</em> in a new column. Is there anyways I can do this without having to use Trigger (on insert?)</p>
http://stackoverflow.com/questions/754070/ensuring-thread-synchronization-in-sql-possible0Ensuring thread synchronization in SQL possible?Haoest2009-04-15T22:52:44Z2009-05-12T07:02:49Z
<p>If I have several SPs</p>
<pre>
SP1
SP2
some_inline_queries
</pre>
<p>how do I ensure that they are all run at once without interruption from other threads?
Is it possible to do this from SQL Server level?</p>
<p>edit:</p>
<p>Let's say we have a main script with 3 major actions:</p>
<p><strong>sp1</strong> scans table t1 to generate a random string that is unique to column c1 in t1; </p>
<p><strong>sp2</strong> does some fairly intensive stuff; </p>
<p><strong>some statement</strong> inserts the random string returned by sp1 into c1 of table t1. So if I run many instances of this main script simultaneously,I need all contents in t1.c1 to be distinct when all scripts finished running. </p>
http://stackoverflow.com/questions/389660/how-do-you-show-a-list-of-tables-in-another-database4How do you show a list of tables in another database?Haoest2008-12-23T18:20:10Z2009-04-21T12:03:12Z
<p>I can use
select * from sys.tables
in mssql to show a list of all tables in the current database. Is there anyways I can use similar syntax to show list of tables in another database?</p>
<p>Say I am using A with
use A
statement, can I show tables in database B?</p>
http://stackoverflow.com/questions/699687/classic-asp-posting-with-content-of-pdf-file-to-a-net-page0Classic ASP: posting with content of PDF file to a .NET page Haoest2009-03-31T01:19:30Z2009-04-19T03:37:14Z
<p>So the problem is half the app is written in classic asp and half is in asp.net. There's a PDF file (in memory) that is generated by classic asp code that I need to share with the .NET half. I thought of saving the PDF to the FS or DB, which I am pretty sure most of you wouldn't recommend because it would need to go through a very slow process of saving to IO, and then I would need to manually clean up after -- unnecessarily creating more bottlenecks and failure points. </p>
<p>I thought of mimicking a post from the classic asp page to .NET by using Server.Transfer or Microsoft.XMLHTTP objects, but neither exactly fits the scenario as I really do want the URL on the client side to be pointing at the .NET aspx page. So is there a simple way to manufacture a POST from classic ASP to a .NET page with a PDF file embedded?</p>
<p>Thanks in advance for any comments or suggestions.</p>
http://stackoverflow.com/questions/738935/sql-server-column-with-auto-generated-data0Sql Server Column with Auto-Generated DataHaoest2009-04-10T21:31:14Z2009-04-13T16:47:47Z
<p>I have a customer table, and my requirement is to add a new varchar column that automatically obtains a random unique value each time a new customer is created. </p>
<p>I thought of writing an SP that randomizes a string, then check and re-generate if the string already exists. But to integrate the SP into the customer record creation process would require transactional SQL stuff at code level, which I'd like to avoid. </p>
<p>Help please?</p>
<p>edit:
I should've emphasized, the varchar has to be 5 characters long with numeric values between 1000 and 99999, and if the number is less than 10000, pad 0 on the left. </p>
http://stackoverflow.com/questions/731483/telling-quality-of-source-code-from-its-shape0Telling quality of source code from its shapeHaoest2009-04-08T19:34:16Z2009-04-08T21:02:35Z
<p><a href="http://imgur.com/HDTGI.png" rel="nofollow">This is a jigsaw piece</a> I am maintaining (bonus: green = commented response.write used for debugging)</p>
<p>So I am wondering, what kind of <strong>shape</strong> do good code tend to have?</p>
http://stackoverflow.com/questions/636959/is-require-home-http-as-fast-as-require-http/636965#6369651Answer by Haoest for Is require '/home/../http/' as fast as require '/http/' ?Haoest2009-03-12T00:41:36Z2009-03-12T00:41:36Z<p>Either ways, an organized structure far out-weighs the small penalty spent on parsing a longer string. </p>
http://stackoverflow.com/questions/611704/how-can-i-achieve-a-consistent-layout-in-all-browsers/627116#627116-5Answer by Haoest for How can I achieve a consistent layout in all browsers?Haoest2009-03-09T17:01:10Z2009-03-09T17:01:10Z<p>It sounds silly, but for each request, you can render all your content to a single image file, then respond to the request with nothing else but that one file. </p>
<p>Okay?</p>
http://stackoverflow.com/questions/616001/quick-dirty-way-of-disabling-a-particular-foreign-key0Quick & Dirty Way of Disabling a Particular Foreign KeyHaoest2009-03-05T18:33:35Z2009-03-05T18:42:32Z
<p>Ideally I would have a "isActive" field in the table to indicate if a record is active, but it would involve changes in multiple stored procedures to make the field do what it is meant to do. </p>
<p>I came up with a dirty trick, and kind of tempted to carry it out. Since the result set is generated by a few joins, I was thinking of slightly changing the foreign key in one of the tables by appending an "*", "x", or whatever symbol that doesn't usually end up in a key. </p>
<p>Is there anything I should be afraid of?</p>
http://stackoverflow.com/questions/603619/i-need-the-highest-id-from-database-am-i-doing-this-right0I need the highest ID from database. Am I doing this right?Haoest2009-03-02T19:25:19Z2009-03-02T19:47:02Z
<pre><code> set qv = createobject("adodb.recordset")
q ="select * from tbl order by ID"
qv.open q,QuoteConn,3,1,1
qv.movelast
qid=qv("ID")
qv.close
</code></pre>
<p>EDIT:</p>
<p>awwww, y'all killed the joke. In year 2009, I am maintaining this piece of code...</p>
http://stackoverflow.com/questions/582911/relationaldatabase-vs-configfile-vs-spreadsheet-usage1relational_database vs config_file vs spreadsheet usageHaoest2009-02-24T18:21:02Z2009-02-24T18:50:06Z
<p>I have heard some genuine arguments for the use of relational database vs spreadsheet before. Relational database provides fast reporting and (relatively speaking) reliable data warehousing,where spreadsheets are lightweight, fast replicating, and easy to float around the organization to different audience. Although I notice the advantages of either, I can rarely distinguish what's better in which scenario, and always end up using database. </p>
<p>In development, it's easy to forget to consider other options when one can place config settings in the database. I've ran into quite a few apps where user menus, work flows and their orders, and constants are defined in the database level. While this is good if these entities were subject to change by end user from application level, it was not the case.</p>
<p>So, men of wisdom, what's your take on the roles of databases, config files, and spread sheets?</p>
http://stackoverflow.com/questions/571569/do-you-put-non-code-files-such-as-dll-images-and-flv-into-version-control2Do you put non-code files, such as DLL, images, and flv, into version control?Haoest2009-02-20T22:57:45Z2009-02-20T23:33:36Z
<p>Well, relatively speaking they don't change often, but a positive side of it is that you can check out a website and expect it to run and look normal on your local machine. </p>
<p>What do you do?</p>
http://stackoverflow.com/questions/542760/i-have-startdate-and-enddate-for-each-record-should-i-give-null-a-special-meanin2I have StartDate and EndDate for each record. Should I give NULL a special meaning when used in these 2 fields?Haoest2009-02-12T18:58:11Z2009-02-12T22:50:16Z
<p>So, I have a table where StartDate and EndDate's are used to determine the activeness of a record. I thought of using NULLs to relieve the maintainers from having to manufacture some crazy dates for some of the records. For example, if NULL had defined as positive infinite when used in EndDate, the data maintainers wouldn't need to come up with something like 1-1-2100 for long-lived records. </p>
<p>I can speculate some of the trade offs on my own: defining NULL as infinities means cleaner data and elimination of periodic maintenance work, but it also means longer queries and stored procedures. So I was wondering how you guys in the real world weigh in on this. </p>
<p>EDIT: the opinions are about half-half. If I had clarified that the StartDate and EndDate are used solely for the purpose of determining the activeness of a record in the where clause, and never appears in the select list, would that tilt the scale? One subject I need to read on is probably indexing. Thanks'all. </p>
http://stackoverflow.com/questions/529374/whats-the-property-way-to-transform-with-xsl-without-html-encoding-my-final-outp2What's the property way to transform with XSL without HTML encoding my final output?Haoest2009-02-09T18:54:37Z2009-02-09T20:17:12Z
<p>So, I am working with .NET. I have an XSL file, XslTransform object in C# that reads in the XSL file and transforms a piece of XML data (manufactured in-house) into HTML. </p>
<p>I notice that my final output has <strong><</strong> and <strong>></strong> automatically encoded into <strong>&lt;</strong> and <strong>&gt;</strong>. Is there any ways I can prevent that from happening? Sometimes I need to bold or italicize my text but it's been unintentionally sanitized. </p>
http://stackoverflow.com/questions/488020/what-is-your-most-useful-sql-trick-to-avoid-writing-more-code/508270#5082700Answer by Haoest for What is your most useful sql trick to avoid writing more code?Haoest2009-02-03T18:16:22Z2009-02-03T18:16:22Z<pre><code>SELECT TOP 0 * INTO #tmp FROM MyTbl
</code></pre>
<p>It constructs a temp table with the same structure as your source table in 1 simple line. Then you can run all the logic you want to fill up #tmp, diff the data for integrity, validate it before inserting... </p>
<p>Everything is simplified when you are focused on a small set of relevant data. </p>
http://stackoverflow.com/questions/118288/sql-coding-style-guide12SQL coding style guideHaoest2008-09-22T23:52:47Z2009-01-25T03:35:39Z
<p>I AM SO TIRED OF READING THE WHOLE SQL STATEMENT / STORED PROCEDURE IN FULL CAPS. WHAT THE HELL WERE THE INITIAL DEVELOPERS THINKING?</p>
<p>What's the best style (in terms of cap, indentation, lines breaks, etc) to write SQL in?</p>
http://stackoverflow.com/questions/387815/how-do-you-familiarize-with-a-codebase-that-has-no-documentation9How do you familiarize with a codebase that has no documentation?Haoest2008-12-22T23:59:31Z2008-12-23T10:32:28Z
<p>I don't know, I've been told that the previous developers did fine in picking up and heading straight into coding with no major problem. I wonder if I am doing it wrong by requesting my manager for some brief meetings with some senior programmers here. Is it better to be cautious and finish this time sensitive tracker the long way, or rush it to meat the deadline? </p>
<p>Just on the side note, the previous programmers who maintain this app are all gone after less than a year in the company. Don't know if there's any relation in anything.</p>
http://stackoverflow.com/questions/779754/import-data-wizard-does-not-like-data-type-i-choose-for-a-column/779956#779956Comment by Haoest on Import Data Wizard Does Not Like Data Type I Choose For A ColumnHaoest2009-04-23T16:43:37Z2009-04-23T16:43:37ZUnfortunately I have excel 2002. I had to save my sheet as tab delimited txt file to work around that. That introduced other headaches, but worked after some massage.
http://stackoverflow.com/questions/699687/classic-asp-posting-with-content-of-pdf-file-to-a-net-page/764749#764749Comment by Haoest on Classic ASP: posting with content of PDF file to a .NET page Haoest2009-04-19T23:39:00Z2009-04-19T23:39:00ZI ended up doing it this way. It takes some extra bandwidth but least maintenance headache.
http://stackoverflow.com/questions/754070/ensuring-thread-synchronization-in-sql-possible/754349#754349Comment by Haoest on Ensuring thread synchronization in SQL possible?Haoest2009-04-16T04:17:30Z2009-04-16T04:17:30ZPlease see edit in OP. Thanks for the help.http://stackoverflow.com/questions/748605/automatically-assigning-a-random-string-to-new-records/748655#748655Comment by Haoest on Automatically assigning a random string to new recordsHaoest2009-04-14T18:43:46Z2009-04-14T18:43:46ZI like that approach, but I can not verify the uniqueness of the string generated by the function by looking through the customer table, though. Any ideas?
http://stackoverflow.com/questions/748605/automatically-assigning-a-random-string-to-new-records/748690#748690Comment by Haoest on Automatically assigning a random string to new recordsHaoest2009-04-14T17:55:04Z2009-04-14T17:55:04ZOohhh, I was hoping to implement this feature in DB level, but if it comes to that I will have to escalate. http://stackoverflow.com/questions/738935/sql-server-column-with-auto-generated-data/738943#738943Comment by Haoest on Sql Server Column with Auto-Generated DataHaoest2009-04-10T21:50:03Z2009-04-10T21:50:03ZI should've emphasized, the varchar has to be 5 characters long with numeric values between 1000 and 99999, and if the number is less than 10000, pad 0 on the left. http://stackoverflow.com/questions/738795/creating-column-with-user-defined-constraint/738803#738803Comment by Haoest on Creating column with user defined constraintHaoest2009-04-10T21:09:49Z2009-04-10T21:09:49ZI get this message when testing the function with "select db.RegexMatch('abc123', '[a-z]+')"
Cannot find either column "dbo" or the user-defined function or aggregate "dbo.RegexMatch", or the name is ambiguous.http://stackoverflow.com/questions/731483/telling-quality-of-source-code-from-its-shapeComment by Haoest on Telling quality of source code from its shapeHaoest2009-04-08T20:09:50Z2009-04-08T20:09:50ZYes, and it is 1 single include file, which is called in a nested loop. Function is an unknown concept here. But hey at least there's no goto's. I am optimistic.
http://stackoverflow.com/questions/731483/telling-quality-of-source-code-from-its-shape/731538#731538Comment by Haoest on Telling quality of source code from its shapeHaoest2009-04-08T20:06:33Z2009-04-08T20:06:33Zupvoted for source monitor :) First impression is good.
http://stackoverflow.com/questions/715181/what-kind-of-artificial-intelligence-jobs-are-out-there/715193#715193Comment by Haoest on What kind of artificial intelligence jobs are out there?Haoest2009-04-03T19:08:32Z2009-04-03T19:08:32ZWhat are your students going to do with their skills, teach more? http://stackoverflow.com/questions/679181/javascript-extending-map-objects/679201#679201Comment by Haoest on Javascript: extending map objectsHaoest2009-03-24T21:00:49Z2009-03-24T21:00:49Zic, many ways to skin this cat </cat_hating>
http://stackoverflow.com/questions/679181/javascript-extending-map-objects/679201#679201Comment by Haoest on Javascript: extending map objectsHaoest2009-03-24T20:54:45Z2009-03-24T20:54:45Znice, it works for now. How do I generalize it to work if I have several instances of maps?
http://stackoverflow.com/questions/611704/how-can-i-achieve-a-consistent-layout-in-all-browsers/627037#627037Comment by Haoest on How can I achieve a consistent layout in all browsers?Haoest2009-03-23T21:28:14Z2009-03-23T21:28:14ZMe too. Check out my response below. I am trying to get 1024 rep points for my account and leave it there. I have 1115 right now -- 91 points over. http://stackoverflow.com/questions/616001/quick-dirty-way-of-disabling-a-particular-foreign-key/616020#616020Comment by Haoest on Quick & Dirty Way of Disabling a Particular Foreign KeyHaoest2009-03-05T19:14:53Z2009-03-05T19:14:53Zi actually like this idea :) but then you would end up having a lot of mirror tables for that purpose. It's slick nevertheless.
http://stackoverflow.com/questions/611796/how-can-i-delete-the-last-line-of-a-text-file-using-the-command-prompt/611818#611818Comment by Haoest on How can I delete the last line of a text file using the command prompt?Haoest2009-03-04T18:48:13Z2009-03-04T18:48:13Zcome on now, don't you see this can be done in 1 line with the right tool?