User Loris - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T00:54:57Z http://stackoverflow.com/feeds/user/23824 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1900017/is-goto-in-php-evil/1900118#1900118 6 Answer by Loris for Is GOTO in PHP evil? Loris 2009-12-14T10:30:39Z 2009-12-14T10:30:39Z <p>I can't believe nobody posted this :)</p> <p><a href="http://xkcd.com/292/" rel="nofollow"> <img src="http://imgs.xkcd.com/comics/goto.png" alt="xkcd - goto"> </a></p> <p>Granted, PHP is not compiled... Maybe the raptor will chase you on every visit to your website?</p> http://stackoverflow.com/questions/1822838/can-i-flush-the-event-stack-within-firefox-using-javascript/1822955#1822955 0 Answer by Loris for Can I flush the event stack within Firefox using Javascript? Loris 2009-11-30T22:45:48Z 2009-11-30T22:45:48Z <p>I think this article on QuirksMode can help you: <a href="http://www.quirksmode.org/js/events%5Forder.html" rel="nofollow">Javascript - Event order</a></p> http://stackoverflow.com/questions/1799912/when-not-to-use-ajax-in-web-application-development/1800470#1800470 1 Answer by Loris for When NOT to use AJAX in web application development? Loris 2009-11-25T22:47:04Z 2009-11-25T22:47:04Z <p>It depends on the complexity of your web application. <br /> If you can, having it functional with javascript disabled is great, because it makes your application usable not only by users on js-disabled browsers but also by <em>robots</em>. The day you decide to write an application to automatically fill your forms, for example, you don't have to write an API from the ground up.</p> <p>In any case, do not user AJAX for EVERYTHING! I have just inherited a project that basically consists of a single page that is populated by a ton of AJAX calls and I can tell that you just <em>thinking</em> about it gives me physical pain. I guess the original developer didn't like the concept of using the back/forward button in the browser as a mean of navigation.</p> http://stackoverflow.com/questions/1345355/firefox-ignores-response-contenttype/1374357#1374357 3 Answer by Loris for Firefox ignores Response.ContentType Loris 2009-09-03T16:03:28Z 2009-09-03T16:03:28Z <p>Try adding a <code>Response.ClearHeaders()</code> before calling <code>ClearContents()</code> like x2 mentioned and sending the file as <code>application/octet-stream</code>:</p> <pre><code>Response.ClearHeaders(); Response.ClearContent(); Response.ContentType = "application/octet-stream"; Response.AddHeader("Content-Disposition", "attachment; filename=\"blah\""); ... </code></pre> <p>Works for me when I need to transmit downloadable files (not necessarily mp3s) to the client.</p> http://stackoverflow.com/questions/659183/how-do-i-get-the-month-number-from-the-year-and-week-number-in-c/659451#659451 0 Answer by Loris for How do I get the month number from the year and week number in c#? Loris 2009-03-18T18:04:25Z 2009-03-18T18:04:25Z <p>This is what I ended up doing:</p> <pre><code>static int GetMonth(int Year, int Week) { DateTime tDt = new DateTime(Year, 1, 1); tDt.AddDays((Week - 1) * 7); for (int i = 0; i &lt;= 365; ++i) { int tWeek = CultureInfo.CurrentCulture.Calendar.GetWeekOfYear( tDt, CalendarWeekRule.FirstDay, DayOfWeek.Monday); if (tWeek == Week) return tDt.Month; tDt = tDt.AddDays(1); } return 0; } </code></pre> <p>I would have preferred something simpler, but it works :)</p> http://stackoverflow.com/questions/659183/how-do-i-get-the-month-number-from-the-year-and-week-number-in-c 4 How do I get the month number from the year and week number in c#? Loris 2009-03-18T17:03:07Z 2009-03-18T18:04:25Z <p>As the title says, given the year and the week number, how do I get the month number?</p> <p>edit: if a week crosses two months, I want the month the first day of the week is in.</p> <p>edit(2): This is how I get the week number:</p> <pre><code>CultureInfo.CurrentCulture.Calendar.GetWeekOfYear(DateTime.Now, CalendarWeekRule.FirstDay, DayOfWeek.Monday); </code></pre> <p>I'm just trying to do the reverse.</p> http://stackoverflow.com/questions/399946/how-often-do-you-check-for-an-exception-in-a-c-new-instruction 3 How often do you check for an exception in a C++ new instruction? Loris 2008-12-30T10:35:13Z 2009-01-02T14:58:16Z <p>I just started reading Effective C++ today and got to the point where the author talks about the operator new.</p> <p>The book explains very well how you can catch (with various degrees of elegance) the std::bad_alloc exception that the operator new can raise if you run out of memory.</p> <p>My question is: How often do you check for the case when there isn't enough memory to instantiate a object, if at all? and why? Is it worth the hassle?</p> http://stackoverflow.com/questions/380708/shortest-method-to-convert-an-array-to-a-string-in-c-linq 1 Shortest method to convert an array to a string in c#/LINQ [closed] Loris 2008-12-19T11:17:19Z 2008-12-19T11:21:53Z <p>Closed as exact duplicate of <a href="http://stackoverflow.com/questions/145856">this question</a>.</p> <p>I have an array/list of elements. I want to convert it to a string, separated by a custom delimitator. For example:</p> <pre><code>[1,2,3,4,5] =&gt; "1,2,3,4,5" </code></pre> <p>What's the shortest/esiest way to do this in c#?</p> <p>I have always done this by cycling the list and checking if the current element is not the last one before adding the separator.</p> <pre><code>for(int i=0; i&lt;arr.Length; ++i) { str += arr[i].ToString(); if(i&lt;arr.Length) str += ","; } </code></pre> <p>Is there a LINQ function that can help me write less code?</p> http://stackoverflow.com/questions/305915/winforms-how-do-i-execute-c-application-code-from-inside-webbrowser-control/305977#305977 -1 Answer by Loris for WinForms - How do I execute C# application code from inside WebBrowser control? Loris 2008-11-20T16:42:24Z 2008-11-20T16:42:24Z <p>What I did in VB6:</p> <ul> <li>Add a bunch of custom &lt; A > tags in the HTML document, set their href to something meaningful to you, like '#closeform'</li> <li>On the BeforeNavigate method, check the address the browser is trying to go to and act accordingly. Then cancel the browser navigation.</li> </ul> http://stackoverflow.com/questions/280539/batch-script-for-re-creating-database-from-source-control/281599#281599 2 Answer by Loris for Batch script for re-creating database from source control Loris 2008-11-11T17:40:37Z 2008-11-11T17:40:37Z <p>I developed a small utility that helps me version my tables, SPs, triggers and Views by exporting them to text files: <a href="http://www.gljakal.com/sqlexporter/index.php" rel="nofollow">gljakal's Sql Exporter</a>. It has a GUI mode and a command line mode (so I can use it in batch files).</p> <p>Works on SQL 2005+.</p> http://stackoverflow.com/questions/272387/sql-server-print-blank-line-without-space/272430#272430 4 Answer by Loris for SQL Server Print Blank Line Without Space Loris 2008-11-07T15:26:33Z 2008-11-07T15:26:33Z <p>You could just add a newline on your previous print statement, if you have one.</p> <p>Instead of:</p> <pre><code>PRINT 'BLABLABLA' PRINT '' </code></pre> <p>You could write:</p> <pre><code>PRINT 'BLABLABLA ' &lt;- the string finishes here! </code></pre> http://stackoverflow.com/questions/272342/free-javascript-obfuscators/272390#272390 2 Answer by Loris for Free JavaScript obfuscators? Loris 2008-11-07T15:17:25Z 2008-11-07T15:17:25Z <p>If you want simple obfuscation and excellent compression, I can recommend the <a href="http://developer.yahoo.com/yui/compressor/" rel="nofollow">YUI Compressor</a> from Yahoo.</p> http://stackoverflow.com/questions/272338/asp-net-application-breaks-when-deploying-to-iis/272366#272366 3 Answer by Loris for ASP.NET application breaks when deploying to IIS Loris 2008-11-07T15:11:51Z 2008-11-07T15:11:51Z <p>Usually, when something that works on the dev sever doesn't work on IIS, the problem is authorizations (the VS server runs under your credentials, but IIS runs as "Network Service" or another system user).</p> <p>For example, I see your code breaks on fulfiller.toLog().</p> <p>Could it be that the toLog() function is trying to open a log file and that the user impersonated by IIS is not authorized to read or write it?</p> http://stackoverflow.com/questions/271498/c-combine-gdi-and-opengl-directx/271605#271605 3 Answer by Loris for C# Combine GDI+ and OpenGL/DirectX Loris 2008-11-07T09:23:28Z 2008-11-07T09:23:28Z <p>AFAIK you can't really mix GDI+ and OpenGL/DX.</p> <p>If you're getting slow performance and are <strong>absolutely sure</strong> that it's a bottleneck in GDI+ rather than in your code, than it <em>could</em> make sense to ditch GDI+ and replace it with DX/OGL. (You would have to write your own controls, though, which would be a major pain in the @$$)</p> <p>Or, for a simpler approach, try WPF/Silverlight! It's customizable and skinnable by default and it's based on DX.</p> http://stackoverflow.com/questions/271520/automatic-casting-to-string-in-c-and-vb-net/271585#271585 1 Answer by Loris for Automatic casting to string in C# and VB.NET Loris 2008-11-07T09:08:23Z 2008-11-07T09:08:23Z <p>I'd suggest to stay away from raw string concatenation, if possible.</p> <p>Good alternatives are using string.format:</p> <pre><code>str = String.Format("Hello {0} workd", Number) </code></pre> <p>Or using the System.Text.StringBuilder class, which is also more efficient on larger string concatenations.</p> <p>Both automatically cast their parameters to string.</p> http://stackoverflow.com/questions/271546/vb-net-how-do-i-assign-an-object-to-an-object-instance-better-description-insi/271567#271567 0 Answer by Loris for VB.NET - How do I assign an object to an object instance (better description inside) Loris 2008-11-07T08:59:22Z 2008-11-07T08:59:22Z <p>You can't. What you're looking for is a static (shared in VB) method:</p> <pre><code>Dim Book as BookEntity Book = BookEntity.FeaturedBook() </code></pre> http://stackoverflow.com/questions/258481/how-can-i-check-whether-i-am-in-a-debug-or-release-build-in-a-web-app 0 How can I check whether I am in a debug or release build in a web app? Loris 2008-11-03T12:24:39Z 2008-11-03T16:57:18Z <p>In any (non-web) .net project, the compiler automatically declares the DEBUG and TRACE constants, so I can use conditional compiling to, for example, handle exceptions differently in debug vs release mode.</p> <p>For example:</p> <pre><code>#if DEBUG /* re-throw the exception... */ #else /* write something in the event log... */ #endif </code></pre> <p>How do I obtain the same behavior in an ASP.net project? It looks like the system.web/compilation section in the web.config could be what I need, but how do I check it programmatically? Or am I better off declaring a DEBUG constant myself and comment it out in release builds?</p> <p>EDIT: I'm on VS 2008</p> http://stackoverflow.com/questions/258481/how-can-i-check-whether-i-am-in-a-debug-or-release-build-in-a-web-app/259271#259271 0 Answer by Loris for How can I check whether I am in a debug or release build in a web app? Loris 2008-11-03T16:57:18Z 2008-11-03T16:57:18Z <p>This is what I ended up doing:</p> <pre><code>protected bool IsDebugMode { get { System.Web.Configuration.CompilationSection tSection; tSection = ConfigurationManager.GetSection("system.web/compilation") as System.Web.Configuration.CompilationSection; if (null != tSection) { return tSection.Debug; } /* Default to release behavior */ return false; } } </code></pre> http://stackoverflow.com/questions/179423/how-to-add-to-a-textbox-the-red-line-like-bad-spelling-in-word/240657#240657 0 Answer by Loris for How to add to a textbox the red line (like bad spelling in Word)? Loris 2008-10-27T17:09:37Z 2008-10-27T17:09:37Z <p><a href="http://www.codedblog.com/2007/09/17/owner-drawing-a-windowsforms-textbox/" rel="nofollow">This page</a> shows how to owner-draw a TextBox to draw the wavy red line.</p> http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/181766#181766 5 Answer by Loris for Simplest, efficient ways to read binary and ascii files to string or similar in various languages. Loris 2008-10-08T08:03:47Z 2008-10-08T08:03:47Z <p>c#:</p> <pre><code>1: string s = System.IO.File.ReadAllText(fileName); 2: System.IO.File.WriteAllText(fileName, s); 3: byte[] data = System.IO.File.ReadAllBytes(fileName); 4: System.IO.File.WriteAllBytes(fileName, data); </code></pre> http://stackoverflow.com/questions/177404/how-can-a-programmer-improve-their-web-design-abilities/177679#177679 1 Answer by Loris for How can a programmer improve their web-design abilities? Loris 2008-10-07T08:55:58Z 2008-10-07T08:55:58Z <p>The best (as in only) way to improve your design skills is to practice a lot.</p> <p>Follow the online tutorials. Challenge yourself with full-immersion weekend projects. Don't be afraid to spend a lot of hours with your HTML editor and graphics program of choice.</p> <p>Practice makes perfect!</p> http://stackoverflow.com/questions/177479/prevent-site-data-from-being-crawled-and-ripped/177507#177507 3 Answer by Loris for Prevent site data from being crawled and ripped Loris 2008-10-07T07:40:18Z 2008-10-07T07:40:18Z <p>Good crawlers will follow the rules you specify in your robots.txt, malicious ones will not. You can set up a "trap" for bad robots, like it is explained here: <a href="http://www.fleiner.com/bots/" rel="nofollow">http://www.fleiner.com/bots/</a>.<br> But then again, if you put your content on the internet, I think it's better for everyone if it's as painless as possible to find (in fact, you're posting here and not at some lame forum where <em>experts exchange</em> their opinions)</p> http://stackoverflow.com/questions/1899797/connecting-database-in-javascript/1899813#1899813 Comment by Loris on connecting database in javaScript Loris 2009-12-14T11:06:37Z 2009-12-14T11:06:37Z what's funny is that jjj wrote &quot;hole&quot; instead of &quot;whole&quot; in the second comment. But really, you want a security hole in javascript :P http://stackoverflow.com/questions/555752/c-what-is-the-proper-way-to-perform-sql-like-searches-using-any-characters/555775#555775 Comment by Loris on c#: what is the proper way to perform sql LIKE searches using any characters Loris 2009-02-17T10:51:25Z 2009-02-17T10:51:25Z Shouldn't it be &quot;select * from Foo where Bar like '%' + @p + '%'&quot; ? http://stackoverflow.com/questions/380708/shortest-method-to-convert-an-array-to-a-string-in-c-linq/380712#380712 Comment by Loris on Shortest method to convert an array to a string in c#/LINQ Loris 2008-12-19T11:22:43Z 2008-12-19T11:22:43Z wow, that was fast! Thanks! http://stackoverflow.com/questions/258481/how-can-i-check-whether-i-am-in-a-debug-or-release-build-in-a-web-app/258495#258495 Comment by Loris on How can I check whether I am in a debug or release build in a web app? Loris 2008-11-03T14:28:29Z 2008-11-03T14:28:29Z Thanks, ConfigurationManager.GetSection() is what I was looking for! http://stackoverflow.com/questions/258481/how-can-i-check-whether-i-am-in-a-debug-or-release-build-in-a-web-app Comment by Loris on How can I check whether I am in a debug or release build in a web app? Loris 2008-11-03T14:05:13Z 2008-11-03T14:05:13Z Just to clarify: the IDE (at least my version?) has no option to declare the DEBUG and TRACE constants on a <i>web</i> project! http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203370#203370 Comment by Loris on What things didn't you know you needed but are now very glad you have? Loris 2008-10-17T10:05:53Z 2008-10-17T10:05:53Z A second computer and synergy installed on both computers!