User Sean - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T19:09:49Z http://stackoverflow.com/feeds/user/5446 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/96952/how-to-trim-leading-zeros-from-alphanumeric-text-in-mysql-function 0 how to trim leading zeros from alphanumeric text in mysql function Sean 2008-09-18T21:04:11Z 2009-08-07T21:55:48Z <p>What mysql functions are there (if any) to trim leading zeros from an alphanumeric text field? </p> <p>Field with value "00345ABC" would need to return "345ABC".</p> http://stackoverflow.com/questions/940617/net-and-tsql-for-xml-auto-splits-xml-result/953440#953440 0 Answer by Sean for .NET and TSQL "For Xml Auto" Splits XML Result Sean 2009-06-04T22:24:45Z 2009-06-04T22:24:45Z <p>Check this out: <a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;310378" rel="nofollow">http://support.microsoft.com/default.aspx?scid=kb;en-us;310378</a></p> <p>You can workaround in SQL (if that is an option) by assigning the xml result into a variable of type "xml" and returning this.</p> <pre><code>DECLARE @ResultXML xml SET @ResultXML = (SELECT ... FROM MyTable FOR XML AUTO) SELECT @ResultXML as [MyXML] </code></pre> http://stackoverflow.com/questions/839707/any-code-quality-tool-for-pl-sql/845386#845386 0 Answer by Sean for Any code quality tool for pl/sql? Sean 2009-05-10T14:02:13Z 2009-05-10T14:02:13Z <p>Check out: </p> <p><a href="http://www.sqlinform.com/" rel="nofollow">http://www.sqlinform.com/</a></p> <p>Tool for re-formatting SQL source with many configurable options. Free online version. </p> http://stackoverflow.com/questions/566922/how-do-i-download-javascript-string-as-a-file 3 How do I download javascript string as a file Sean 2009-02-19T20:05:11Z 2009-02-19T23:19:04Z <p>Application requests KML data through AJAX from server. This data is stored in javascript variables, and displayed in Google Earth plugin. </p> <p>In javascript, how do I provide a link to download the KML data stored in javascript variable (as a string) without requiring a request back to server?</p> <p>This link: <a href="http://forum.mootools.net/viewtopic.php?id=9728" rel="nofollow">http://forum.mootools.net/viewtopic.php?id=9728</a></p> <p>suggests the use of data URI, but that probably won't work across enough browsers for my needs. Probably simplest just to go back to server to get data again for download, but curious if anyone has pulled this off with javascript.</p> http://stackoverflow.com/questions/562148/owner-id-type-database-fields/562221#562221 0 Answer by Sean for Owner ID type database fields Sean 2009-02-18T18:13:47Z 2009-02-18T18:13:47Z <p>If you want to take advantage of foreign key constraint and normalize the attributes of comments (and ratings) across base tables, you may need to create relationship tables between base tables and comments (and ratings). </p> <p>e.g. for Restaurants and Comments:</p> <pre><code>Restaurants id (PK) (attributes of restaurants...) RestaurantComments id (PK) restaurantid (FK to Restaurants) commentid (FK to Comments) Comments id (PK) (attributes of comments...) </code></pre> http://stackoverflow.com/questions/493487/variable-length-packets-in-php/493569#493569 0 Answer by Sean for variable length packets in php Sean 2009-01-29T21:40:14Z 2009-01-29T21:40:14Z <p>Application dealing with the read payload will need to recognize when you have reached "end of record" for whatever application message you are passing. Expect arbitrary length on read.</p> <p>Careful with use of UDP, as you can not guarantee order of packets read are order sent by peer either, if you are trying to stream several reads into a message. Recommend use of TCP socket in this case.</p> http://stackoverflow.com/questions/487973/inheriting-applications-at-a-new-job/487999#487999 3 Answer by Sean for Inheriting applications at a new job... Sean 2009-01-28T15:18:31Z 2009-01-28T15:18:31Z <p>Publish a style guide that follows best practices, and build consensus around following it. Refactor old code as you need to maintain it.</p> http://stackoverflow.com/questions/368938/delphi-profiling-tools/368986#368986 3 Answer by Sean for Delphi Profiling tools Sean 2008-12-15T16:48:09Z 2008-12-15T16:48:09Z <p>I have used <a href="http://www.prodelphi.de" rel="nofollow">http://www.prodelphi.de</a> with success on Delphi 7 project in the past. Cheap and works. Don't let the bush league web site scare you off.</p> http://stackoverflow.com/questions/40608/loading-json-with-php/166701#166701 0 Answer by Sean for Loading JSON with PHP Sean 2008-10-03T12:58:45Z 2008-10-03T15:48:50Z <p>LIbrary has worked great for me. FWIW I needed to do this on a project with earlier version of PHP lacking JSON support. Function below worked as a granted risky version of "json_encode" for arrays of strings.</p> <pre><code>function my_json_encode($row) { $json = "{"; $keys = array_keys($row); $i=1; foreach ($keys as $key) { if ($i&gt;1) $json .= ','; $json .= '"'.addslashes($key).'":"'.addslashes($row[$key]).'"'; $i++; } $json .= "}"; return $json; } </code></pre> http://stackoverflow.com/questions/120283/working-with-latitude-longitude-values-in-java/123305#123305 4 Answer by Sean for Working with latitude/longitude values in Java Sean 2008-09-23T19:42:23Z 2008-10-02T15:45:16Z <p>Here is a Java implementation of <a href="http://en.wikipedia.org/wiki/Haversine_formula" rel="nofollow">Haversine</a> formula. I use this in a project to calculate distance in miles between lat/longs.</p> <pre><code> public static float distFrom(float lat1, float lng1, float lat2, float lng2) { double earthRadius = 3958.75; double dLat = Math.toRadians(lat2-lat1); double dLng = Math.toRadians(lng2-lng1); double a = Math.sin(dLat/2) * Math.sin(dLat/2) + Math.cos(Math.toRadians(lat1)) * Math.cos(Math.toRadians(lat2)) * Math.sin(dLng/2) * Math.sin(dLng/2); double c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a)); double dist = earthRadius * c; return new Float(dist).floatValue(); } </code></pre> http://stackoverflow.com/questions/159521/text-editor-to-open-big-giant-huge-large-text-files/159609#159609 2 Answer by Sean for Text editor to open big (giant, huge, large) text files Sean 2008-10-01T20:43:51Z 2008-10-01T20:43:51Z <p>I've opened and browsed 100MB text files with <a href="http://www.slickedit.com/" rel="nofollow">SlickEdit</a>.</p> http://stackoverflow.com/questions/154314/when-to-use-final/154375#154375 1 Answer by Sean for When to use final Sean 2008-09-30T18:38:05Z 2008-09-30T18:38:05Z <p>Somewhat of a trade-off as you mention, but I prefer explicit use of something over implicit use. This will help remove some ambiguity for future maintainers of code - even if it is just you. </p> http://stackoverflow.com/questions/127116/sql-server-convert-integer-to-binary-string/127371#127371 3 Answer by Sean for SQL Server Convert integer to binary string Sean 2008-09-24T14:10:26Z 2008-09-24T14:10:26Z <p>Following could be coded into a function. You would need to trim off leading zeros to meet requirements of your question.</p> <pre><code>declare @intvalue int set @intvalue=5 declare @vsresult varchar(64) declare @inti int select @inti = 64, @vsresult = '' while @inti&gt;0 begin select @vsresult=convert(char(1), @intvalue % 2)+@vsresult select @intvalue = convert(int, (@intvalue / 2)), @inti=@inti-1 end select @vsresult </code></pre> http://stackoverflow.com/questions/127156/how-do-i-check-if-index-exists-on-a-table-field-in-mysql 2 How do I check if index exists on a table field in mysql Sean 2008-09-24T13:35:13Z 2008-09-24T13:36:50Z <p>I've needed to Google this a couple times, so I'm sharing my Q/A.</p> http://stackoverflow.com/questions/127156/how-do-i-check-if-index-exists-on-a-table-field-in-mysql/127157#127157 3 Answer by Sean for How do I check if index exists on a table field in mysql Sean 2008-09-24T13:35:35Z 2008-09-24T13:35:35Z <pre><code>SHOW INDEX FROM [tablename] </code></pre> http://stackoverflow.com/questions/103423/what-are-the-best-sql-server-performance-optimization-techniques/108737#108737 0 Answer by Sean for What are the best SQL Server performance optimization techniques? Sean 2008-09-20T16:58:29Z 2008-09-20T16:58:29Z <p>Generally, the tips here: </p> <p><a href="http://www.sql-server-performance.com/" rel="nofollow">http://www.sql-server-performance.com/</a></p> <p>have been high quality and useful for me in the past.</p> http://stackoverflow.com/questions/105034/how-to-create-a-guid-uuid-in-javascript/105219#105219 4 Answer by Sean for How to create a GUID / UUID in Javascript? Sean 2008-09-19T20:21:09Z 2008-09-19T20:35:27Z <p>A web service would be useful. </p> <p>Quick Google found: <a href="http://www.hoskinson.net/GuidGenerator/" rel="nofollow">http://www.hoskinson.net/GuidGenerator/</a></p> <p>Can't vouch for this implementation, but SOMEONE must publish a bonafide GUID generator.</p> <p>With such a web service, you could develop a REST web interface that consumes the GUID web service, and serves it through AJAX to javascript in a browser.</p> http://stackoverflow.com/questions/99285/would-it-be-useful-to-add-extra-info-to-stack-traces/104593#104593 1 Answer by Sean for Would it be useful to add extra info to stack traces? Sean 2008-09-19T19:04:07Z 2008-09-19T19:04:07Z <p>Tempting, but I don't think this feature warrants a new keyword in Java (and that much more complexity in the language). </p> <p>I've found the use of Throwable.printStackTrace has usually been plenty to quickly point to the problems that need my attention.</p> http://stackoverflow.com/questions/76254/access-to-auto-increment-identity-field-after-sql-insert-in-java 5 access to auto increment identity field after SQL insert in java Sean 2008-09-16T19:55:17Z 2008-09-17T20:27:11Z <p>Any advise on how to read auto incrementing identity field assigned to newly created record from call through java.sql.Statement.executeUpdate ?</p> <p>I know how to do this in SQL for several DB platforms, but would like to know what database independent interfaces exist in java.sql to do this, and any input on peoples' experience with this across DB platforms.</p> http://stackoverflow.com/questions/85978/query-a-tables-foreign-key-relationships/86113#86113 0 Answer by Sean for Query a Table's Foreign Key relationships Sean 2008-09-17T18:22:41Z 2008-09-17T18:22:41Z <p>This article may help: <a href="http://www.databasejournal.com/features/oracle/article.php/3665591" rel="nofollow">http://www.databasejournal.com/features/oracle/article.php/3665591</a></p> http://stackoverflow.com/questions/50618/what-is-the-point-of-the-finally-block/52247#52247 1 Answer by Sean for What is the point of the finally block? Sean 2008-09-09T16:05:45Z 2008-09-09T16:05:45Z <p>@iAn and @<a href="#50665" rel="nofollow">mats</a>:</p> <p>I would not "tear down" anything in finally {} that was "set up" within the try {} as a rule. Would be better to pull the stream creation outside of the try {}. If you need to handle an exception on stream create this could be done in a greater scope. </p> <pre><code>StreamReader stream = new StreamReader("foo.bar"); try { mySendSomethingToStream(stream); } catch(noSomethingToSendException e) { //Swallow this logger.error(e.getMessage()); } catch(anotherTypeOfException e) { //More serious, throw this one back throw(e); } finally { stream.close(); } </code></pre> http://stackoverflow.com/questions/765867/list-of-all-index-index-columns-in-sql-server-db/765892#765892 Comment by Sean on List of all index & index columns in SQL Server DB Sean 2009-05-26T14:47:31Z 2009-05-26T14:47:31Z The &quot;order by&quot; clause of this query may not group the columns of the same index together as I think you want. 2 indexes may have same name across tables, and ind.index_id is not unique id of an index. Suggest order by table name first &quot;order by t.name, ind.name, ind.index_id, ic.index_column_id&quot; http://stackoverflow.com/questions/346770/dealing-with-timezones-in-php/350010#350010 Comment by Sean on Dealing with timezones in PHP Sean 2008-12-16T19:47:37Z 2008-12-16T19:47:37Z We too use the same solution after some research. Would like to here alternatives people have used. http://stackoverflow.com/questions/76254/access-to-auto-increment-identity-field-after-sql-insert-in-java/76348#76348 Comment by Sean on access to auto increment identity field after SQL insert in java Sean 2008-09-17T19:33:21Z 2008-09-17T19:33:21Z Slight typo in answer above &quot;res.getInt(0)&quot; should be &quot;res.getInt(1)&quot;. Can't edit myself yet. Someday :)