User rslite - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T17:53:32Zhttp://stackoverflow.com/feeds/user/15682http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1666557/hints-for-testing-a-web-application-which-had-a-db-migration-from-sql-2000-to-200/1666593#16665930Answer by rslite for Hints for testing a web application which had a DB migration from SQL 2000 to 2005.rslite2009-11-03T10:49:13Z2009-11-03T10:49:13Z<p>You should test all main areas of the application (administration, end user testing etc.). If the application was tested before you should have some test plans that you should follow. You never know which part might be affected, so it would be better to have a comprehensive testing.</p>
http://stackoverflow.com/questions/1624149/django-send-output-continually1Django - Send Output Continuallyrslite2009-10-26T10:46:03Z2009-10-26T12:36:39Z
<p>I want to start processing some files from a django view and I want to be able to send the name of the files to the browser as they are processed. Is there a way to do this (easily)? I could probably do this using threads and ajax calls, but I want the simplest solution for now.</p>
http://stackoverflow.com/questions/1624149/django-send-output-continually/1624558#16245581Answer by rslite for Django - Send Output Continuallyrslite2009-10-26T12:36:39Z2009-10-26T12:36:39Z<p>I found what I needed in an <a href="http://stackoverflow.com/questions/1081340/how-do-you-do-something-after-you-render-the-view-django/1081766#1081766">answer</a> from one of the links that <em>Andre Miller</em> provided.</p>
<p>I found out that's possible to pass an iterator to HttpResponse so I used this code and it worked:</p>
<pre><code>def import_iter():
""" Used to return output as it is generated """
# First return the template
t = loader.get_template('main/qimport.htm')
c = Context()
yield t.render(c)
# Now process the files
if req.method == 'POST':
location = req.POST['location']
if location:
for finfo in import_location(location):
yield finfo+"<br/>"
return HttpResponse(import_iter())
</code></pre>
http://stackoverflow.com/questions/1624120/convert-a-subnet-mask-into-binary-octets-in-vb-net/1624165#16241650Answer by rslite for Convert a subnet mask into binary (octets) in vb.netrslite2009-10-26T10:50:44Z2009-10-26T10:50:44Z<p>If you convert each byte separately then before the concatenate step you can do a PadLeft(8, '0') on each value. This would add the missing '0's.</p>
http://stackoverflow.com/questions/1594411/call-php-from-javascript-and-return-an-array-from-php-to-javascript-function/1594462#15944620Answer by rslite for Call php from javascript and return an array from php to Javascript functionrslite2009-10-20T13:01:44Z2009-10-20T13:01:44Z<p>Check this page <a href="http://ajaxpatterns.org/XMLHttpRequest_Call" rel="nofollow">http://ajaxpatterns.org/XMLHttpRequest_Call</a></p>
<p>The whole site is worth a look too.</p>
http://stackoverflow.com/questions/1593500/get-namespace-classname-from-a-dll-in-c-2-0/1593520#15935200Answer by rslite for Get Namespace, classname from a dll in C# 2.0rslite2009-10-20T09:44:01Z2009-10-20T09:44:01Z<p>Check here: <a href="http://dotnetguts.blogspot.com/2008/12/reflection-in-c-list-of-class-name.html" rel="nofollow">http://dotnetguts.blogspot.com/2008/12/reflection-in-c-list-of-class-name.html</a></p>
<p>And here for invoking a method: <a href="http://www.csharphelp.com/archives/archive200.html" rel="nofollow">http://www.csharphelp.com/archives/archive200.html</a></p>
<p>If you search some more the terms in those links you'll find much more info.</p>
http://stackoverflow.com/questions/1588003/c-convert-string-to-double-with-2-digit-after-decimal-separator/1588017#15880171Answer by rslite for [C#] Convert string to double with 2 digit after decimal separatorrslite2009-10-19T10:48:25Z2009-10-19T10:48:25Z<pre><code>Math.Round(number, 1)
</code></pre>
<p><strong>Edit</strong> I got the wrong question - the rounding problems are inherent to a floating point type (float, double). You should use decimal for this.</p>
http://stackoverflow.com/questions/1587530/mixing-vb-net-with-c/1587567#15875670Answer by rslite for Mixing Vb.net with C#rslite2009-10-19T08:40:30Z2009-10-19T08:40:30Z<p>My main language is C# but I had to switch to VB.NET for a project. I just used a simple cheat sheet (like <a href="http://aspalliance.com/625" rel="nofollow">this</a>) to help me. Otherwise the syntax is not hard to understand and the available things are similar.</p>
http://stackoverflow.com/questions/1577117/do-update-in-sql-using-a-join/1577128#15771286Answer by rslite for Do UPDATE in SQL using a JOINrslite2009-10-16T09:41:52Z2009-10-16T09:41:52Z<p>It should work if you rewrite it similar to this:</p>
<pre><code>UPDATE Table1
SET Table1.SomeValue = T2.SomeValue
FROM Table2 AS T2
WHERE Table1.ID = T2.ID
</code></pre>
http://stackoverflow.com/questions/1572012/logic-in-stored-procedure/1572037#15720370Answer by rslite for Logic in stored procedurerslite2009-10-15T12:24:20Z2009-10-15T12:57:46Z<p>You need to declare a variable and select into it</p>
<pre><code>DECLARE @DisAvg DOUBLE, @DelAvg DOUBLE
SELECT @DisAvg = AVG(Dis) / 8, @DelAvg = AVG(Del) #PV
IF @DisAvg > 20 -- this is the bit I am having problems grokking
RETURN 1
ELSE
-- do longer calculation
</code></pre>
<p>Declare with the correct type of the Dis field.</p>
<p><strong>Edit</strong> - corrected the return value.</p>
http://stackoverflow.com/questions/1572045/string-or-binary-data-would-be-truncated-the-statement-has-been-terminated/1572060#15720600Answer by rslite for String or binary data would be truncated. The statement has been terminated.rslite2009-10-15T12:28:17Z2009-10-15T12:28:17Z<p>The string is longer than the size of the DB column so the resulting data doesn't fit inside.</p>
http://stackoverflow.com/questions/1571195/what-is-the-official-name-of-a-class-that-must-be-inherited-from-to-instantiate/1571200#157120013Answer by rslite for What is the official name of a class that must be inherited from to instantiate?rslite2009-10-15T09:16:45Z2009-10-15T09:16:45Z<p>Abstract class.</p>
http://stackoverflow.com/questions/1570966/xpath-find-specific-link-in-page/1570987#15709871Answer by rslite for xpath find specific link in pagerslite2009-10-15T08:18:19Z2009-10-15T08:18:19Z<p>You need to use something like this (since <em>href</em> is an attribute of <em>a</em>):</p>
<pre><code>$links = $xpath->query("//a[span/text()='Send to a friend']/@href");
</code></pre>
http://stackoverflow.com/questions/1570648/mysql-table-layout-for-perfomance-multiple-query-vs-one-single-big-query/1570675#15706750Answer by rslite for MySQL: Table Layout for perfomance (Multiple Query vs One single big query)rslite2009-10-15T06:58:45Z2009-10-15T08:15:54Z<p>If you use the first scenario you get the problem of increased space use (for all the duplicate province, country, continent) and if you need to change the name of a city/country you need to change it in all rows where it's used. </p>
<p>For convenience I would use the second scenario. I don't think there will be big performance differences between the two scenarios (in the first scenario you only touch one table, but read back more data from disk, in the second scenario you read less data from the disk, but from multiple tables). It really depends on what kind of data you have there.</p>
<p><strong>Edit</strong>: To explain my point above: if you keep all data in a large table then you need to actually read all the rows from the disk, even if much of the data read is the same (namely the city, province, country, continent). Even if the SQL caches data as it can it won't help here since it can't know that data from other rows is the same.</p>
<p>If you normalize the database and read from the restaurant table you will get ID's for the cities. Now if you have the same ID on multiple rows the SQL server will cache the data read for the city and won't hit the disk again, so it will be an increase in speed. This will be offset by the need to access a new table, but with correct indexing on the city ID that shouldn't be too much.</p>
<p>That's why I'm saying that with large databases the performance difference is not easy to assess and you'll be better off having a properly normalized DB.</p>
<p>And yes, if you use a normalized DB (second scenario) you can change the city name in one place since there will be a single row for a city. The same will work for the others (province, country, continent).</p>
http://stackoverflow.com/questions/1570575/c-onpaint-mousemove-high-cpu-usage/1570592#15705922Answer by rslite for C# OnPaint mousemove high cpu usagerslite2009-10-15T06:19:11Z2009-10-15T06:19:11Z<p>You can use a buffer image on which to draw when something is changed and in the Paint method just copy the image on the screen. Should be pretty fast. Also you can use the clip region to copy only the part that needs updating. This should reduce CPU usage.</p>
<p>You can also use an IsDirty flag to know when to update the buffer image (i.e. fully redraw it) if needed.</p>
http://stackoverflow.com/questions/1570512/does-int-parse-uses-boxing-unboxing-or-type-casting-in-c/1570517#15705172Answer by rslite for Does int.Parse uses boxing/unboxing or type casting in C# ?rslite2009-10-15T05:55:28Z2009-10-15T06:12:34Z<p>I don't believe there's any unboxing there. I presume the code uses an int variable and returns it, thus no boxing/unboxing.</p>
<p><strong>Edit</strong>: I agree with <em>280Z28</em>. I just took a look at the code and it's pretty complex. The final value is not boxed as I imagined, but there are some lengthy preprocessing steps to get there so indeed there wouldn't be much change in perfomance even if it were boxed.</p>
<p>BTW, if you didn't know, you can look at the code yourself using <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a>.</p>
http://stackoverflow.com/questions/1566204/how-to-put-viewdata-attribute-in-to-property-of-asp-tag/1566219#15662190Answer by rslite for How to put viewdata attribute in to property of asp tagrslite2009-10-14T13:26:54Z2009-10-14T13:39:10Z<p>Something like this should work:</p>
<pre><code><asp:SiteMapPath
SiteMapProvider='<%# ViewState["CurrentSiteMapProvider"] %>'
ID="SiteMapPath" runat="server"/>
</code></pre>
<p>You need a DataBind somewhere in the page. Also note that you need to use apostrophes not quotes around the data binding expression.</p>
<p><strong>Edit</strong>: I assume that by ViewData you mean ViewState. If not just adjust what's inside the <%# and %>.</p>
http://stackoverflow.com/questions/1566084/is-it-possible-to-restart-a-pc-using-pure-net-and-without-using-p-invoke/1566103#15661033Answer by rslite for Is it possible to restart a PC using "pure" .NET and *without* using p/invoke?rslite2009-10-14T13:04:34Z2009-10-14T13:04:34Z<p>You need to call ExitWindowsEx which is only available through DllImport</p>
http://stackoverflow.com/questions/1565200/asp-net-aspx-properties-persisted/1565221#15652211Answer by rslite for ASP.Net aspx properties persistedrslite2009-10-14T09:33:43Z2009-10-14T09:33:43Z<p>I would do it like this:</p>
<pre><code> protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
TableName = Request.QueryString["tableName"];
}
public string TableName
{
get { return ViewState["tableName"] as string; }
set { ViewState["tableName"] = value; }
}
</code></pre>
<p>I don't like using Request["tableName"] alone since it has to search in more places. Usually I know where I'm sending the parameter.</p>
<p>Also DataTable is a type, so it's best to not use it as a property name.</p>
http://stackoverflow.com/questions/1564953/c-looping-without-using-looping-statements-or-recursion/1565032#15650324Answer by rslite for C: Looping without using looping statements or recursionrslite2009-10-14T08:37:38Z2009-10-14T08:43:34Z<p>If you know the upper limit of N you can try something like this ;)</p>
<pre><code>void func(int N)
{
char *data = " 1\n 2\n 3\n 4\n 5\n 6\n 7\n 8\n 9\n10\n11\n12\n";
if (N > 0 && N < 12)
printf("%.*s", N*3, data);
else
printf("Not enough data. Need to reticulate some more splines\n");
}
</code></pre>
<p>Joke aside, I don't really see how you can do it without recursion or all the instructions you mentioned there. Which makes me more curious about the solution.</p>
<p><strong>Edit</strong>: Just noticed I proposed the same solution as <em>grombeestje</em> :)</p>
http://stackoverflow.com/questions/1560322/efficient-way-to-read-index-file-in-net/1560365#15603650Answer by rslite for Efficient way to read index file in .NETrslite2009-10-13T13:46:03Z2009-10-13T13:46:03Z<p>System.IO.BinaryReader has a ReadUInt32 method that reads an unsigned int. It also has different methods for reading binary files.</p>
http://stackoverflow.com/questions/1559971/how-to-logout-from-my-winapplication-in-net/1560019#15600190Answer by rslite for How to logout from my winApplication in .NETrslite2009-10-13T12:50:23Z2009-10-13T12:50:23Z<p>What I would do is to hide the main window and display the login form. After the new login just check if the main form exists and show it with the new data (for the new user) or just close it and open a new one.</p>
<p>Another solution would be maybe to have a controller method that displays the forms. For example have a loop that displays the login form, then the main form. When the main form is closed the login form will be displayed again.</p>
http://stackoverflow.com/questions/1559803/how-can-i-write-portable-windows-applications/1559841#1559841-1Answer by rslite for How can I write portable Windows applications?rslite2009-10-13T12:15:02Z2009-10-13T12:15:02Z<p>Both c# and Java require runtime libraries that have to be installed separately from the application.</p>
<p>You could write a standalone application using Delphi for example.</p>
http://stackoverflow.com/questions/1559542/detecting-if-the-microphone-is-on/1559573#15595732Answer by rslite for Detecting if the microphone is onrslite2009-10-13T11:11:57Z2009-10-13T11:11:57Z<p>This is not tested in any way, but I would try to read some samples and see if there is any variation. If the mike is on then you should get different values from the ambient sounds. If the mike is off you should get a 0. Again this is just how I imagine things should work - I don't know if they actually work that way.</p>
http://stackoverflow.com/questions/1559312/asp-net-gettype-and-fully-qualified-class-names/1559345#15593450Answer by rslite for asp.net, gettype() and fully qualified class namesrslite2009-10-13T10:19:29Z2009-10-13T10:19:29Z<p>When you have a page with a code behind you actually have two classes. One is from the code behind which gets inherited by the class for the page. That's why you get that name. Try this and see if it works:</p>
<pre><code>string _myType = this.GetType().BaseType.FullName.Replace(".", "_");
</code></pre>
http://stackoverflow.com/questions/1559248/how-to-make-fiddler-listen-to-all-ips/1559330#15593300Answer by rslite for How to make Fiddler listen to all IPsrslite2009-10-13T10:16:41Z2009-10-13T10:16:41Z<p>I don't know if that's possible. Can't you install fiddler directly on the server?</p>
http://stackoverflow.com/questions/1553244/how-to-get-a-time-for-the-dates/1553297#15532972Answer by rslite for How to get a time for the dates?rslite2009-10-12T08:00:19Z2009-10-12T13:53:13Z<p>Try something like:</p>
<pre><code>SELECT T1.ID, T1.Date, MIN(T1.Time) As Intime, MAX(T2.Time) AS Outtime
FROM Table1 T1
JOIN Table1 T2 ON T1.ID=T2.ID AND T1.Date=T2.Date
WHERE T1.Function = 'A' AND T2.Function='D'
GROUP BY T1.ID, T1.Date
</code></pre>
<p><strong>Edit</strong>: Regarding your comment you just need to change the condition for table T1 with the function for the minimum (see the MIN(T1.Time) above) and the condition for table T2 with the function for the maximum (see MAX(T2.Time) above), so it should be:</p>
<pre><code>SELECT T1.ID, T1.Date, MIN(T1.Time) As Intime, MAX(T2.Time) AS Outtime
FROM Table1 T1
JOIN Table1 T2 ON T1.ID=T2.ID AND T1.Date=T2.Date
WHERE T1.Function = 'C' AND T2.Function='D'
GROUP BY T1.ID, T1.Date
</code></pre>
<p>I hope I understood correctly from the comment what you need.</p>
<p><strong>Edit 2</strong>: OK, I got it now. You need to do the same self join two more times like this:</p>
<pre><code>SELECT
T1.ID, T1.Date,
MIN(T1.Time) AS Intime1,
MAX(T2.Time) AS Outtime1,
MIN(T3.Time) AS Intime2,
MAX(T4.Time) AS Outtime2
FROM Table1 T1
JOIN Table1 T2
ON T1.ID=T2.ID AND T1.Date=T2.Date
JOIN Table1 T3
ON T1.ID=T3.ID AND T1.Date=T3.Date
JOIN Table1 T4
ON T1.ID=T4.ID AND T1.Date=T4.Date
WHERE
T1.Func = 'A'
AND T2.Func='B'
AND T3.Func='C'
AND T4.Func='D'
GROUP BY
T1.ID, T1.Date
</code></pre>
<p><strong>Edit 3</strong>: To account for possible missing values try the next query. The only value that needs to be present is that for the function 'A'. The rest can be absent:</p>
<pre><code>SELECT
T1.ID, T1.Date,
MIN(T1.Time) AS Intime1,
MAX(T2.Time) AS Outtime1,
MIN(T3.Time) AS Intime2,
MAX(T4.Time) AS Outtime2
FROM Table1 T1
LEFT JOIN Table1 T2
ON T1.ID=T2.ID AND T1.Date=T2.Date AND T2.Func = 'B'
LEFT JOIN Table1 T3
ON T1.ID=T3.ID AND T1.Date=T3.Date AND T3.Func = 'C'
LEFT JOIN Table1 T4
ON T1.ID=T4.ID AND T1.Date=T4.Date AND T4.Func = 'D'
WHERE
T1.Func = 'A'
GROUP BY
T1.ID, T1.Date
</code></pre>
http://stackoverflow.com/questions/1553908/javascript-document-write-replace-png-with-gif/1553935#15539353Answer by rslite for Javascript document.write() - Replace PNG with GIF?!rslite2009-10-12T11:00:23Z2009-10-12T11:00:23Z<p>Have you tried jQuery's <a href="http://jquery.andreaseberhard.de/pngFix/" rel="nofollow">pngFix</a>? It makes the PNG transparent for IE 6 and you don't need to maintain two sets of images (PNG and GIF).</p>
<p>Using it doesn't require much javascript knowledge, so it wouldn't hurt to take a look at it.</p>
http://stackoverflow.com/questions/1553704/round-to-nearest-25-javascript/1553710#155371012Answer by rslite for round to nearest .25 javascriptrslite2009-10-12T10:01:27Z2009-10-12T10:01:27Z<p>Multiply by 4, round to integer, divide by 4 and format with two decimals.</p>
<p><strong>Edit</strong> Any reason for the downvotes? At least leave a comment to know what should be improved.</p>
http://stackoverflow.com/questions/1553125/extract-first-valid-line-of-string-from-byte-array/1553164#15531641Answer by rslite for Extract first valid line of string from byte arrayrslite2009-10-12T07:22:48Z2009-10-12T07:22:48Z<p>Q2: The method you use seems reasonable enough to work.</p>
<p>Q1: Can't think of something better than the algorithm that you are using</p>
<p>Q3: I believe it will be enough to test for \r and \n. The others are too exotic for usual text files.</p>
http://stackoverflow.com/questions/1643276/how-to-interact-with-mainframe-from-asp-net-web-pages-cComment by rslite on how to interact with mainframe from asp.net web pages (c#)rslite2009-10-29T12:16:17Z2009-10-29T12:16:17ZYou need to be more specific to get a meaningful answer. First of all how can you communicate with the mainframe? What protocol? Basically any protocol should be doable from C#, but you might need to implement the required interface. This interface can also take care of the authentication.http://stackoverflow.com/questions/1624149/django-send-output-continually/1624334#1624334Comment by rslite on Django - Send Output Continuallyrslite2009-10-26T12:31:31Z2009-10-26T12:31:31ZThis is the 'correct' method, but it takes time, and I just need a quick-n-dirty solution for now. Turns out one of the links that you provided contained the answer that I needed.http://stackoverflow.com/questions/1081340/how-do-you-do-something-after-you-render-the-view-django/1082905#1082905Comment by rslite on How do you do something after you render the view? (Django)rslite2009-10-26T12:25:30Z2009-10-26T12:25:30ZWhen there's a finally clause the return out of the function only happens <i>after</i> the code in finally is executed, so this won't work as intended.http://stackoverflow.com/questions/1624120/convert-a-subnet-mask-into-binary-octets-in-vb-netComment by rslite on Convert a subnet mask into binary (octets) in vb.netrslite2009-10-26T10:48:10Z2009-10-26T10:48:10ZDo you convert each byte separately and concatenate the results?http://stackoverflow.com/questions/1594414/css-not-working-with-php-scriptComment by rslite on CSS not working with PHP script:rslite2009-10-20T12:59:52Z2009-10-20T12:59:52ZSame question as Dominic, then if that is OK check with Firefox's FireBug addon if the CSS is actually loaded and applied to the elements.http://stackoverflow.com/questions/1572012/logic-in-stored-procedure/1572037#1572037Comment by rslite on Logic in stored procedurerslite2009-10-15T12:59:48Z2009-10-15T12:59:48ZYep, you're right. I corrected the code example. I just copied the pseudo-code and missed that.http://stackoverflow.com/questions/1570575/c-onpaint-mousemove-high-cpu-usageComment by rslite on C# OnPaint mousemove high cpu usagerslite2009-10-15T06:50:47Z2009-10-15T06:50:47ZI just tested with a simple project to be sure and the Paint is not called by mouse move unless I call Invalidate in OnMouseMove (as others have mentioned here). Are you sure there isn't some other condition in code that makes the calls to invalidate when they shouldn't be called? Try to add some logging code to log the calls to invalidate and mouse move and see if they are called as you intend to.http://stackoverflow.com/questions/1570458/if-i-only-sanitize-get-and-post-data-will-i-be-safe-from-injection/1570472#1570472Comment by rslite on If I only sanitize GET and POST data, will I be safe from injection?rslite2009-10-15T05:53:44Z2009-10-15T05:53:44ZAlso sanitizing is not just for SQL, you need to have HTML and JS in mind if you output it on a page.http://stackoverflow.com/questions/1566204/how-to-put-viewdata-attribute-in-to-property-of-asp-tag/1566219#1566219Comment by rslite on How to put viewdata attribute in to property of asp tagrslite2009-10-14T14:04:45Z2009-10-14T14:04:45ZOK, I answered this more from an ASP.NET point of view. I don't have experience with MVC, but I thought it would work in the same way. Can you replace that with a property and see if it can be read in the page?http://stackoverflow.com/questions/1565200/asp-net-aspx-properties-persistedComment by rslite on ASP.Net aspx properties persistedrslite2009-10-14T12:56:36Z2009-10-14T12:56:36ZIt's not an actual DataTable, it's a string (probably with the table name), which is why I recommended to change the name.http://stackoverflow.com/questions/1559803/how-can-i-write-portable-windows-applications/1559841#1559841Comment by rslite on How can I write portable Windows applications?rslite2009-10-13T14:10:51Z2009-10-13T14:10:51ZWell, what do you do with C# without the .NET Framework? The main point is to provide options for the OP and not nitpick.http://stackoverflow.com/questions/1560322/efficient-way-to-read-index-file-in-netComment by rslite on Efficient way to read index file in .NETrslite2009-10-13T13:49:54Z2009-10-13T13:49:54ZHow are the words stored in the dictionary?http://stackoverflow.com/questions/1559971/how-to-logout-from-my-winapplication-in-net/1560019#1560019Comment by rslite on How to logout from my winApplication in .NETrslite2009-10-13T13:36:22Z2009-10-13T13:36:22ZYes, something like that and the main form will be closed when the user logs outhttp://stackoverflow.com/questions/1559228/regular-expression-text-between-colons/1559250#1559250Comment by rslite on Regular expression - Text between colonsrslite2009-10-13T10:14:06Z2009-10-13T10:14:06Z? means non-greedy (i.e. match as little as possible - default is match as much as possible). If not used and the page contains two <h1> tags it will get the <h1> from the first and the </h1> from the last.http://stackoverflow.com/questions/1553244/how-to-get-a-time-for-the-datesComment by rslite on How to get a time for the dates?rslite2009-10-12T13:55:15Z2009-10-12T13:55:15ZCheck the new edit to my answer