User Loris - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T00:54:57Zhttp://stackoverflow.com/feeds/user/23824http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1900017/is-goto-in-php-evil/1900118#19001186Answer by Loris for Is GOTO in PHP evil?Loris2009-12-14T10:30:39Z2009-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#18229550Answer by Loris for Can I flush the event stack within Firefox using Javascript?Loris2009-11-30T22:45:48Z2009-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#18004701Answer by Loris for When NOT to use AJAX in web application development?Loris2009-11-25T22:47:04Z2009-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#13743573Answer by Loris for Firefox ignores Response.ContentTypeLoris2009-09-03T16:03:28Z2009-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#6594510Answer by Loris for How do I get the month number from the year and week number in c#?Loris2009-03-18T18:04:25Z2009-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 <= 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-c4How do I get the month number from the year and week number in c#?Loris2009-03-18T17:03:07Z2009-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-instruction3How often do you check for an exception in a C++ new instruction?Loris2008-12-30T10:35:13Z2009-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-linq1Shortest method to convert an array to a string in c#/LINQ [closed]Loris2008-12-19T11:17:19Z2008-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] => "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<arr.Length; ++i)
{
str += arr[i].ToString();
if(i<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-1Answer by Loris for WinForms - How do I execute C# application code from inside WebBrowser control?Loris2008-11-20T16:42:24Z2008-11-20T16:42:24Z<p>What I did in VB6:</p>
<ul>
<li>Add a bunch of custom < 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#2815992Answer by Loris for Batch script for re-creating database from source controlLoris2008-11-11T17:40:37Z2008-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#2724304Answer by Loris for SQL Server Print Blank Line Without SpaceLoris2008-11-07T15:26:33Z2008-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
' <- the string finishes here!
</code></pre>
http://stackoverflow.com/questions/272342/free-javascript-obfuscators/272390#2723902Answer by Loris for Free JavaScript obfuscators?Loris2008-11-07T15:17:25Z2008-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#2723663Answer by Loris for ASP.NET application breaks when deploying to IISLoris2008-11-07T15:11:51Z2008-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#2716053Answer by Loris for C# Combine GDI+ and OpenGL/DirectXLoris2008-11-07T09:23:28Z2008-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#2715851Answer by Loris for Automatic casting to string in C# and VB.NETLoris2008-11-07T09:08:23Z2008-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#2715670Answer by Loris for VB.NET - How do I assign an object to an object instance (better description inside)Loris2008-11-07T08:59:22Z2008-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-app0How can I check whether I am in a debug or release build in a web app?Loris2008-11-03T12:24:39Z2008-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#2592710Answer by Loris for How can I check whether I am in a debug or release build in a web app?Loris2008-11-03T16:57:18Z2008-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#2406570Answer by Loris for How to add to a textbox the red line (like bad spelling in Word)?Loris2008-10-27T17:09:37Z2008-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#1817665Answer by Loris for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.Loris2008-10-08T08:03:47Z2008-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#1776791Answer by Loris for How can a programmer improve their web-design abilities?Loris2008-10-07T08:55:58Z2008-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#1775073Answer by Loris for Prevent site data from being crawled and ripped Loris2008-10-07T07:40:18Z2008-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#1899813Comment by Loris on connecting database in javaScriptLoris2009-12-14T11:06:37Z2009-12-14T11:06:37Zwhat's funny is that jjj wrote "hole" instead of "whole" in the second comment. But really, you want a security hole in javascript :Phttp://stackoverflow.com/questions/555752/c-what-is-the-proper-way-to-perform-sql-like-searches-using-any-characters/555775#555775Comment by Loris on c#: what is the proper way to perform sql LIKE searches using any charactersLoris2009-02-17T10:51:25Z2009-02-17T10:51:25ZShouldn't it be "select * from Foo where Bar like '%' + @p + '%'" ?http://stackoverflow.com/questions/380708/shortest-method-to-convert-an-array-to-a-string-in-c-linq/380712#380712Comment by Loris on Shortest method to convert an array to a string in c#/LINQLoris2008-12-19T11:22:43Z2008-12-19T11:22:43Zwow, 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#258495Comment by Loris on How can I check whether I am in a debug or release build in a web app?Loris2008-11-03T14:28:29Z2008-11-03T14:28:29ZThanks, 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-appComment by Loris on How can I check whether I am in a debug or release build in a web app?Loris2008-11-03T14:05:13Z2008-11-03T14:05:13ZJust 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#203370Comment by Loris on What things didn't you know you needed but are now very glad you have?Loris2008-10-17T10:05:53Z2008-10-17T10:05:53ZA second computer and synergy installed on both computers!