lc

8,752
reputation
607 views

Registered User

name lc
member for 1 year
seen yesterday
website
location Japan
age 26
Dec
11
awarded  Yearling
Dec
6
awarded  Mortarboard
Nov
27
revised python: how can i avoid “ list index out of range” in this simple while loop
formatting
Nov
27
comment Trim all whitespace in an array
@Matt Hamilton - it looks like "trim" means all whitespace. From the example, I assume the 2nd, 4th, and 6th elements should be one word each (i.e. "Amargasaurus", "Brachiosaurus", and "Tyrannosaurus" respectively).
Nov
27
comment Trim all whitespace in an array
Curiosity question, but what's the cost of making a new array vs editing the current one in place? Does the compiler optimize it to the same thing?
Nov
27
comment Trim all whitespace in an array
You could also use a foreach loop.
Nov
25
comment How to close dialog opened by showModalDialog?
Well, the dialog could close itself with window.close(), but just as @sdwilsh says, you can't do anything from outside of it.
Nov
25
comment T-SQL STR() C#.NET LINQ to SQL Equivalent
Why don't you take the number as is from the database, then convert it to a string when you go to display it?
Nov
25
answered T-SQL STR() C#.NET LINQ to SQL Equivalent
Nov
25
revised Linq, Where Extension Method, Lambda Expressions, and Bool’s
edited body; edited tags
Nov
25
revised Linq, Where Extension Method, Lambda Expressions, and Bool’s
added 463 characters in body; deleted 211 characters in body
Nov
25
answered Linq, Where Extension Method, Lambda Expressions, and Bool’s
Nov
25
accepted Change DateTime in debugger
Nov
25
revised .NET Framework at Windows 7
added 4 characters in body
Nov
25
answered Change DateTime in debugger
Nov
25
comment Gridview: Export to csv issue
Is it possible the GridView isn't actually bound yet at the time you're trying to export (and thus has no rows)?
Nov
25
revised Gridview: Export to csv issue
edited body; edited tags
Nov
25
revised Innoseup - no error reporting on #include scripts?
edited tags
Nov
25
answered How to close dialog opened by showModalDialog?
Nov
24
answered Copy a column of data from one excel file to another file..
Nov
24
revised What is the best and easiest-to-use 5 star rating script for JQuery?
grammar, typo
Nov
24
answered search functionality
Nov
24
comment Username & password string comparison problem
What's passwordField.getPassword() returning?
Nov
24
revised check time difference in javascript
deleted 48 characters in body
Nov
24
comment check time difference in javascript
What format is the user entering the times?
Nov
24
comment Can I know what opensource/paid script are they using ?
Not sure what you mean by 'script', but can't you just check the source?
Nov
24
answered How to reference one foreign key column with multiple primary key column
Nov
24
revised Is there a g++ equivalent to Visual Studio’s __declspec(novtable)?
typo, formatting
Nov
24
comment C# which is faster do/while or for?
In my world, 0 is always less than 13, and thus the for loop above will always be executed. Besides, isn't a for loop just syntactic sugar for a do-while loop anyway? Am I just missing something in your explanation?
Nov
24
revised Help on an (another) SQL query
formatting
Nov
24
comment How to get from sub query where id does not exist
@Ali Very true. Frankly, I've had flaky results with IN before; replacing it with EXISTS or JOIN has fixed the problem. Perhaps it's another example of this...
Nov
24
comment How to get from sub query where id does not exist
@o.k.w It's a left-join, which says to take all records where the join conditions match and if there are no records matching the join condition to take the left side (TABLE_1 in this case) and set the right side NULL. Thus this query returns all rows where there is no matching TABLE_2 row.
Nov
24
comment How to get from sub query where id does not exist
This should produce the same result set as the OP's query, though, no? (Depending on how the RDBMS uses indexes, however, one may be faster than the other, but that's not the original question..)
Nov
24
comment How to get from sub query where id does not exist
What is going wrong? At first glance your query looks OK for what you're describing...
Nov
24
answered What would happen if I re-apply the job that I failed the interview previously?
Nov
24
revised Can a binary search be done in a database in SQL?
formatting, grammar, spelling
Nov
24
revised SQL Time Tracking Query
formatting
Nov
24
comment SQL Time Tracking Query
I'm not following the "To complicate things further" bit. Also, what's your question?
Nov
24
answered Dealing with Tokens in C#
Nov
20
answered Code-Golf: What is the shortest program that compiles and crashes?
Nov
20
comment Code-Golf: What is the shortest program that compiles and crashes?
This should be a wiki
Nov
20
revised Code-Golf: What is the shortest program that compiles and crashes?
edited tags
Nov
20
comment c#/sql-server, trying to get data to two ddl’s from two tables…in one sqlDataReder
Do you mean one connection or one query/trip to the database?
Nov
20
revised How to write an app-launching application with arguments in C#?
formatting
Nov
20
comment Paint event handler stops executing after a few iterations
Is there a reason you're not using PictureBox? There's a lot of overhead on painting the entire image this way every time a little bit has to be repainted...if you're going to do it yourself, I recommend at least paying heed to the region that should be redrawn you get from PaintEventArgs.
Nov
20
comment Error at json: “missing ] after element list” or just “undefined”
Well, guess it's not just me then...
Nov
20
comment Error at json: “missing ] after element list” or just “undefined”
Is it just me, or are you missing closing braces and commas?
Nov
20
comment How do I alter a mysql table column defaults?
You sure it isn't using a trigger to update it?
Nov
20
answered Send a key press to an active app problem
Nov
20
comment Duplicate Elimination
And your problem would be?