User Johnny Bravado - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T05:53:12Zhttp://stackoverflow.com/feeds/user/12222http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/87679/advice-on-handling-large-data-volumes/87706#877060Answer by Johnny Bravado for Advice on handling large data volumes.Johnny Bravado2008-09-17T21:10:55Z2008-09-17T21:10:55Z<p>You really haven't given us enough info to help you. Do you need to load each file in its entiretly in order to process it? Or can you process it line by line?</p>
<p>Loading an entire file at a time is likely to result in poor performance even for files that aren't terribly large. Your best bet is to define a buffer size that works for you and read/process the data a buffer at a time.</p>
http://stackoverflow.com/questions/84058/is-net-a-write-once-run-anywhere-wora-platform-like-java-claims-to-be/84080#840802Answer by Johnny Bravado for Is .NET a write once, run anywhere (WORA) platform like Java claims to be?Johnny Bravado2008-09-17T14:53:07Z2008-09-17T14:53:07Z<p>I don't think the official "intention" of .NET was WORA. I think that you could safely say that .NET was designed so that it would always run on future MS OS's. But there is nothing that precludes .NET from running on other platforms. Mono is an example of an implementation of the .NET runtime for an OS other than Windows.</p>
http://stackoverflow.com/questions/49799/how-often-do-you-use-system-component-backgroundworker-in-your-uis-if-ever/84059#84059-1Answer by Johnny Bravado for How often do you use System.Component.BackgroundWorker in your UIs ? (if ever)Johnny Bravado2008-09-17T14:50:54Z2008-09-17T14:50:54Z<p>My biggest issue with the background worker class is that there really is no way to know when the worker has finished due to cancellation. The BackgroundWorker does not expose the thread it uses so you can't use the standard techniques for synchronizing thread termination (join, etc.). You also can't just wait in a loop on the UI thread for it to end because the RunWorkerCompleted event will never end up firing. The hack I've always had to use is to simply set a flag and then start a timer that will continue checking for the background worker to end. But it's very messy and complicates the business logic.</p>
<p>So it is great as long as you don't need to support deterministic cancellation.</p>
http://stackoverflow.com/questions/82483/how-to-catch-all-exceptions-crashes-in-a-net-app/83357#833570Answer by Johnny Bravado for How to catch ALL exceptions/crashes in a .NET appJohnny Bravado2008-09-17T13:43:15Z2008-09-17T13:43:15Z<p>Be aware that catching these unhandled exceptions can change the security requirements of your application. Your application may stop running correctly under certain contexts (when run from a network share, etc.). Be sure to test thoroughly.</p>
http://stackoverflow.com/questions/83086/vs-2008-vs-vs-2008-express/83188#831881Answer by Johnny Bravado for VS 2008 vs VS 2008 ExpressJohnny Bravado2008-09-17T13:29:25Z2008-09-17T13:29:25Z<p>You actually CAN do commercial work with the VS 2008 Express editions. </p>
<p>See the answer to question #7 of the FAQ at this link:
<a href="http://www.microsoft.com/express/support/faq/" rel="nofollow">http://www.microsoft.com/express/support/faq/</a></p>
http://stackoverflow.com/questions/74385/how-to-convert-datetime-to-varchar/74473#744730Answer by Johnny Bravado for How to convert DateTime to VarCharJohnny Bravado2008-09-16T16:52:47Z2008-09-16T16:52:47Z<p>You don't say what language but I am assuming C#/.NET because it has a native DateTime data type. In that case just convert it using the ToString method and use a format specifier such as:</p>
<p>DateTime d = DateTime.Today;
string result = d.ToString("yyyy-MM-dd");</p>
<p>Howerver, I would caution against using this in a database query or concatenated into a SQL statement. Databases require a specific formatting string to be used. You are better off zeroing out the time part and using the DateTime as a SQL parameter if that is what you are trying to accomplish.</p>
http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/73413#734134Answer by Johnny Bravado for What should a developer know before building a public web site?Johnny Bravado2008-09-16T15:13:31Z2008-09-16T15:13:31Z<p>You should consult the OWASP web site and understand the vulnerabilities listed there. Keep in mind OWASP does not talk about issues like scalability, session state management issues, and browser compatibility. Those areas will need to be understood as well. But I would argue that they certainly are less important than security. </p>
http://stackoverflow.com/questions/71390/which-operating-systems-come-with-net/72741#727410Answer by Johnny Bravado for Which operating systems come with .net?Johnny Bravado2008-09-16T14:15:01Z2008-09-16T14:15:01Z<p>Vista is the only Microsoft DESKTOP operating system that comes with a version of .NET preinstalled. The version installed on Vista is .NET 3.0. Windows XP SP2 does NOT include any version of .NET by default. It is listed as an optional update on the Windows Update web site so you can not count on it being installed.</p>
http://stackoverflow.com/questions/71756/is-there-some-way-to-inject-sql-even-if-the-character-is-deleted/72398#723981Answer by Johnny Bravado for Is there some way to inject SQL even if the ' character is deleted?Johnny Bravado2008-09-16T13:48:19Z2008-09-16T13:48:19Z<p>Parameterized inline SQL or parameterized stored procedures is the best way to protect yourself. As others have pointed out, simply stripping/escaping the single quote character is not enough.</p>
<p>You will notice that I specifically talk about "parameterized" stored procedures. Simply using a stored procedure is not enough either if you revert to concatenating the procedure's passed parameters together. In other words, wrapping the exact same vulnerable SQL statement in a stored procedure does not make it any safer. You need to use parameters in your stored procedure just like you would with inline SQL.</p>