User Midhat - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T08:36:14Z http://stackoverflow.com/feeds/user/9425 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/743465/radupload-in-formview-in-radajaxpanel 0 RadUpload in FormView in RadAjaxPanel Midhat 2009-04-13T09:41:10Z 2009-12-16T20:00:05Z <p>I have a RadUpload in the edit template of a FormView. My desired behaviour is </p> <ul> <li>Formview should open in ReadOnly Mode</li> <li>On clicking the update button, a postback should occur</li> </ul> <p>So the desired transition scheme is ReadOnly->Edit should be Ajaxified Edit->Readonly should be postback.</p> <p>I have tried using <a href="http://www.telerik.com/community/forums/aspnet-ajax/upload/radupload-inside-ajaxified-formview.aspx" rel="nofollow">this</a> post, but I cannot access the update button in my script (as the formview opens in readonly mode).</p> <p>Any idea how can i get my desired functionality</p> http://stackoverflow.com/questions/217852/how-can-i-save-a-very-large-matlab-sparse-matrix-to-a-text-file 3 How can I save a very large MATLAB sparse matrix to a text file? Midhat 2008-10-20T09:17:04Z 2009-12-11T22:52:43Z <p>I have a 30000x14000 sparse matrix in <a href="http://en.wikipedia.org/wiki/MATLAB" rel="nofollow">MATLAB</a>, which I need to use in another program. Calling save won't write this as ASCII (not supported). Calling full() on this monster results in an <code>Out of Memory</code> error. How do I export it?</p> <p>I use MATLAB 7.</p> http://stackoverflow.com/questions/217852/how-can-i-save-a-very-large-matlab-sparse-matrix-to-a-text-file/239950#239950 1 Answer by Midhat for How can I save a very large MATLAB sparse matrix to a text file? Midhat 2008-10-27T13:54:21Z 2009-12-11T22:52:43Z <p>I saved it as text using Java within MATLAB. This is the coolest thing I have ever seen in a scripting environment. </p> <p>MATLAB Code:</p> <pre><code> pw=java.io.PrintWriter(java.io.FileWriter('c:\\retail.txt')); line=num2str(0:size(data,2)-1); pw.println(line); for index=1:length(data) disp(index); line=num2str(full(data(index,:))); pw.println(line); end pw.flush(); pw.close(); </code></pre> <p>Here <code>data</code> is an extremely large sparse matrix.</p> http://stackoverflow.com/questions/1888368/function-approximation/1889075#1889075 0 Answer by Midhat for Function approximation Midhat 2009-12-11T16:09:43Z 2009-12-11T16:09:43Z <p>If you have access to matlab, you can parallelize your code pretty fast and pretty easily. Even it can make simple linear for loops parallell with its parfor loop</p> http://stackoverflow.com/questions/220971/free-python-hosting 8 Free Python hosting Midhat 2008-10-21T06:31:18Z 2009-11-09T01:22:37Z <p>Is there a free working python host on which I can live test a django app?</p> <p>Google app engine is not an option.</p> http://stackoverflow.com/questions/921028/validation-of-viewstate-mac-failed-in-safari 0 Validation of viewstate MAC failed in Safari Midhat 2009-05-28T14:07:48Z 2009-10-05T02:00:03Z <p>Hi</p> <p>I have a web app using forms authentication. When I perform the following steps</p> <ol> <li>Let the login cookie expire</li> <li>Click on a link that requires a logged in user</li> <li>The user is redirected to the login page</li> <li>Click the browser button</li> <li>The user is redirected to the login page again</li> <li>Log in using a valid username/password</li> </ol> <p>I get this exception Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that configuration specifies the same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster.</p> <p>This case appears only in safari (windows and mac). The fundamental difference between safari and other browsers is that when we click the back button in step 4, safari shows the login page again, while the other browsers show the previous page the user was working on.</p> <p>Please help in this regard</p> http://stackoverflow.com/questions/771048/add-select-top-1000-command-to-toolbar-in-ssms 0 Add "Select top 1000" command to toolbar in SSMS Midhat 2009-04-21T04:33:46Z 2009-09-11T00:00:01Z <p>I am using SQL server management studio (2008) quite a lot these days. If it had a "Select top 1000" command in the toolbar,(or a shortcut key) it would make my life a lot easier. Is there any way i can do it. I tried looking in the customize dialog, but cant find that command there.</p> http://stackoverflow.com/questions/802001/find-application-root-url-without-using 2 Find application root URL without using ~ Midhat 2009-04-29T11:52:06Z 2009-09-03T21:29:36Z <p>Hi</p> <p>I need to construct the URL of a page in a String, to send it an email (as part of an email verification system). If i use the ~ symbol to denote the app root, it is taken literally.</p> <p>The app will be deployed on a server on three different sites (on different ports) and each site can be accessed via 2 different URLs (one for LAn and one for internet).</p> <p>So hardcoding the URL is out of question. I want to construct the url to verify.aspx in my application</p> <p>Please help</p> http://stackoverflow.com/questions/1374659/many-to-many-relationship-in-java-google-ap-engine 0 Many to many relationship in java google ap engine Midhat 2009-09-03T16:53:38Z 2009-09-03T17:07:12Z <p>how would i go about creating a many-many relationship among data objects in google app engine (using jdo)</p> <p>The app engine page talks about 1-many and 1-1 but not many-many. Any code example will be highly appreciated</p> http://stackoverflow.com/questions/1363959/self-join-in-google-app-engine-java 1 self join in google app engine (java) Midhat 2009-09-01T18:37:20Z 2009-09-02T15:47:51Z <p>Hi</p> <p>I have modified the guestbook example shipped with google app engine (java) to include a parent-child relationship using some sort of a 'self join'.</p> <p>Now my greeting.java file looks like this</p> <pre><code> package guestbook; import java.util.Date; import java.util.List; import javax.jdo.annotations.IdGeneratorStrategy; import javax.jdo.annotations.IdentityType; import javax.jdo.annotations.PersistenceCapable; import javax.jdo.annotations.Persistent; import javax.jdo.annotations.PrimaryKey; import com.google.appengine.api.datastore.Key; import com.google.appengine.api.users.User; @PersistenceCapable(identityType = IdentityType.APPLICATION) public class Greeting { @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) private Key id; @Persistent private User author; @Persistent private String content; @Persistent private Date date; @Persistent private Greeting parent; @Persistent(mappedBy="parent") private List&lt;Greeting&gt; children; public Greeting getParent() { return parent; } public void setParent(Greeting parent) { this.parent = parent; } public List&lt;Greeting&gt; getChildren() { return children; } public void setChildren(List&lt;Greeting&gt; children) { this.children = children; } public Greeting(User author, String content, Date date) { this.author = author; this.content = content; this.date = date; } public Key getId() { return id; } public User getAuthor() { return author; } public String getContent() { return content; } public Date getDate() { return date; } public void setAuthor(User author) { this.author = author; } public void setContent(String content) { this.content = content; } public void setDate(Date date) { this.date = date; } } </code></pre> <p>Notice the addition of the parent and child fields, and changing the primary key type to com.google.appengine.api.datastore.Key (as shown in <a href="http://code.google.com/appengine/docs/java/datastore/relationships.html#Owned%5FOne%5Fto%5FMany%5FRelationships" rel="nofollow">http://code.google.com/appengine/docs/java/datastore/relationships.html#Owned%5FOne%5Fto%5FMany%5FRelationships</a>)</p> <p>Now it wont save the data to the datastore. I fail to understand why. I have tried deleting the local datastore and index file(as said somewhere on the web) but it wont work. no exceptions, nothing.</p> <p>Can someone look into it and please help</p> http://stackoverflow.com/questions/1363959/self-join-in-google-app-engine-java/1368505#1368505 0 Answer by Midhat for self join in google app engine (java) Midhat 2009-09-02T15:47:51Z 2009-09-02T15:47:51Z <p>Turns out this is a known issue in google app engine</p> <p><a href="http://code.google.com/p/datanucleus-appengine/issues/detail?id=119" rel="nofollow">http://code.google.com/p/datanucleus-appengine/issues/detail?id=119</a></p> <p>Now i will need to change my data model to work with app engine</p> http://stackoverflow.com/questions/818725/elmah-backup-exception-logging 0 Elmah backup exception logging Midhat 2009-05-04T03:49:53Z 2009-08-28T02:44:20Z <p>Hi</p> <p>I have set up elmah to log exceptions on my SQL server. Is there any way to define a fallback mechanism if the SQL server fails. I would like elmah to start logging to xml files if the sql server is inaccessible. Any idea how to do that?</p> http://stackoverflow.com/questions/287309/find-class-probabilities-in-matlab-pnn-and-make-roc-plot 1 Find class probabilities in matlab PNN and make ROC plot Midhat 2008-11-13T15:50:55Z 2009-08-19T04:28:52Z <p>I have a Probablistic Neural Network classification experiment set up in matlab. I can get the classes for unseen data using the sim command. Is there any way i can get the probabilities for the classes that the classifier calculates. Also is there any direct way to plot the Reciever Operating Characterstic curve and calculate the Area Under the ROC for my classifier</p> http://stackoverflow.com/questions/1264095/creating-music-library-database-that-is-easily-updatable/1264129#1264129 0 Answer by Midhat for Creating music library database that is easily updatable Midhat 2009-08-12T03:52:32Z 2009-08-12T04:05:29Z <p>Identify some sort of "primary key" or unique identifier for every song. use that as the key in a dictionary data structure and set the song object as the value</p> <p>this way if you insert the same song again, it will be overwritten.</p> <p>For example in Java, we can use a HashMap. with filename as the key and song object as the value. So if we attempt to enter the same filename again, it will be ovewritten</p> http://stackoverflow.com/questions/1231269/what-does-this-javascript-do 2 What does this javascript do Midhat 2009-08-05T04:58:07Z 2009-08-05T07:59:29Z <p>window.$ = jQuery = $telerik.$;</p> <p>To the best of my understanding, there is an Object called $telerik. It has a function $. The function is assigned to the identifiers jQuery and window.$, so we can just use $(args) in our javascripts. Is it correct?</p> <p>It should mean that we can also use jQuery(args) to find an element.</p> http://stackoverflow.com/questions/1211095/asp-net-session-state-for-long-persisting-auth-cookies 1 ASP.Net Session State for Long Persisting Auth Cookies Midhat 2009-07-31T07:10:22Z 2009-07-31T07:40:04Z <p>Hi</p> <p>I have a requirement to persist the Persistent auth cokkies for a long period (1 month)</p> <p>I am also using quite a few session variables. Now I cannot set the session timeout to that long (it will kill the server). It is currently set to 30 mins.</p> <p>Suppose the user keeps their browser window open for a day, the auth cookie wont expire but the session would. And the application wont function. </p> <p>So any suggestion, workarounds or useful links for this problem?</p> http://stackoverflow.com/questions/847912/send-email-on-gmail-smtp-under-medium-trust 1 Send Email on GMail SMTP under medium trust Midhat 2009-05-11T12:39:32Z 2009-07-30T18:43:28Z <p>Hi</p> <p>I need to send an email from my app, which will be running under medium trust. My current email sending code that works fine under full trust throws SecurityException under medium trust</p> <pre><code>[SecurityException: Request for the permission of type 'System.Net.Mail.SmtpPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.] </code></pre> <p>Examining my machine.config and allied files reveal that my SMTP access is restricted to Connect. </p> <pre><code>&lt;SecurityClass Name="SmtpPermission" Description="System.Net.Mail.SmtpPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/&gt; </code></pre> <p>and</p> <pre><code>&lt;IPermission class="SmtpPermission" version="1" Access="Connect"/&gt; </code></pre> <p>According to MSDN, Connect allows request on port 25 only. But Gmail servers work on port 587. Any workarounds? suggestions?</p> http://stackoverflow.com/questions/1186341/need-uml-diagram-and-planning-help/1186362#1186362 1 Answer by Midhat for Need UML diagram and planning help Midhat 2009-07-27T04:00:11Z 2009-07-27T04:00:11Z <p>The diagrams are there just to make you understand what you are doing and keep you on track. I guess you already know that. In your case, i Believe a detailed use case will suffice, just to make sure you handle all the features and dont forget anything. (Reminder: Use case is not a diagram. it is text)</p> http://stackoverflow.com/questions/1186333/how-can-i-capture-all-mouse-events-in-a-jframe-swing/1186337#1186337 0 Answer by Midhat for How can I capture all mouse events in a JFrame/Swing? Midhat 2009-07-27T03:51:37Z 2009-07-27T03:51:37Z <p>Implement all mouse-related listeners in a class, and register that class as the handler for all mouse related events</p> <p>Mouse Related interfaces would be</p> <p>MouseListener MouseMotionListener MouseWheelListener</p> http://stackoverflow.com/questions/1011156/control-not-available-in-current-context 0 control not available in current context Midhat 2009-06-18T06:56:49Z 2009-07-24T07:23:07Z <p>Hi</p> <p>I Applied a patch to a asp.net page using the tortoise svn "Apply Patch" command. The patch was created using the "Create patch" command.</p> <p>The patch added a label control to the aspx page and some references to it in the codebehind. Now the solution just wont build unless I build the page seperately first. Sometimes even that wont work.</p> <p>The page is perfectly valid asp.net and c# code that build and runs often. The only difference is that the code is added outside visualstudio, in tortoisemerge.</p> <p>Any fixes</p> <p>Comment: The file was already in the project. its just that a new control was added outside vs</p> http://stackoverflow.com/questions/1011156/control-not-available-in-current-context/1176216#1176216 0 Answer by Midhat for control not available in current context Midhat 2009-07-24T07:23:07Z 2009-07-24T07:23:07Z <p>I cant explain why, but the problem was fixed after getting a fresh working copy from svn</p> http://stackoverflow.com/questions/1176160/find-iphone-device-id-from-web-request 1 find iphone device id from web request Midhat 2009-07-24T07:07:41Z 2009-07-24T07:13:22Z <p>Hi</p> <p>is it possible to find the device id on a web server if a page is viewed from the iphone/ipod touch browser</p> http://stackoverflow.com/questions/1169739/java-tcp-socket-data-transfer-is-slow/1169796#1169796 6 Answer by Midhat for Java TCP socket: data transfer is slow Midhat 2009-07-23T05:41:18Z 2009-07-23T05:41:18Z <p>Maybe you should try sending ur data in chunks(frames) instead of writing each byte seperately. And align ur frames with the tcp packet size for best performance</p> http://stackoverflow.com/questions/1169777/how-to-make-local-server-working-after-wamp-installation/1169790#1169790 0 Answer by Midhat for How to make local server working after wamp installation? Midhat 2009-07-23T05:38:38Z 2009-07-23T05:38:38Z <p>There can be a large number of possibilities for this error. for now, check to see if your project is using any php module that is not registered in php.ini. also check ur php.ini and httpd.conf (or whatever your apache config file is) )to see if all modules are configured correctly</p> http://stackoverflow.com/questions/1164170/looking-for-a-class-in-large-dbml-files 1 Looking for a class in large dbml files Midhat 2009-07-22T09:44:11Z 2009-07-22T09:54:23Z <p>Hi does someone know a quick way to find a class in large dbml files. We have a large data model and it takes a good 2-3 minutes to scroll and locate the required class. Zooming out makes it quite hard to see.</p> <p>There has to be a better way than manually looking around</p> http://stackoverflow.com/questions/1157243/c-outlining-braces-or-regions 0 C# outlining. braces or regions Midhat 2009-07-21T04:02:27Z 2009-07-21T04:31:03Z <p>Hi</p> <p>I am maintaining a large asp.net app.</p> <p>My objective is to identify the lines added in response to particular tickets. While it is possible using our SVN, I want to put it in the code. because these changes would look just odd to a first time reader of the code.</p> <p>So which outlining method is more suitable for this purpose</p> <pre><code>{ //response to ticket #xxxxx ... ... .. } </code></pre> <p>OR</p> <pre><code>#region response to ticket xxxxx .. ... .. #endregion </code></pre> <p>Or is there any other method more suited for this</p> http://stackoverflow.com/questions/177475/which-is-the-best-rcp-platform 1 Which is the best RCP platform Midhat 2008-10-07T07:21:50Z 2009-07-20T14:18:35Z <p>I am building a desktop application. Our analysis says it would be better built with a RCP. Should I use the eclipse or netbeans platform to build my application . Some of the factors to consider are</p> <ul> <li>Performance</li> <li>Look and Feel</li> <li>Popularity among target users (developers/testers)</li> <li>License (has to be some FOSS)</li> </ul> <p>The application will be having things like text editor, grid views, block diagrams and graph visualizations.</p> <p>I already have experience with netbeans development, but learning eclipse won't hurt. any other options would be welcome too.</p> http://stackoverflow.com/questions/747013/accessing-all-elements-of-a-grideditableitem-in-radgrid 0 Accessing all elements of a GridEditableItem in RadGrid Midhat 2009-04-14T10:29:20Z 2009-07-02T10:32:37Z <p>I am intercepting the update operation for a RadGrid. like this</p> <pre><code>e.Canceled = true; GridEditableItem item = e.Item as GridEditableItem; Hashtable dictionary = new Hashtable(); item.ExtractValues(dictionary); </code></pre> <p>This gives me the changed values in the HashTable. The problem is I want to access ALL the elements of the current row. How do i do that</p> http://stackoverflow.com/questions/1072356/java-user-agent 0 Java User Agent Midhat 2009-07-02T03:40:46Z 2009-07-02T04:02:23Z <p>Hi</p> <p>I have recently started seeing user agents like Java/1.6.0_14 (and variations) on my site</p> <p>What does this mean. Is it a browser or bot or what</p> http://stackoverflow.com/questions/919972/transparent-png-not-working-in-sql-server-image-field 1 Transparent PNG not working in SQL Server Image field Midhat 2009-05-28T09:28:33Z 2009-06-24T13:30:35Z <p>Hi</p> <p>I have tried uploading a transparent PNG image to a SQL server image field, and retrieving it using the DynamicData ImageHandler. The Transparent areas in the image appear white upon rendering. Please advise about any solutions</p> http://stackoverflow.com/questions/217852/how-can-i-save-a-very-large-matlab-sparse-matrix-to-a-text-file/239950#239950 Comment by Midhat on How can I save a very large MATLAB sparse matrix to a text file? Midhat 2009-12-15T16:57:40Z 2009-12-15T16:57:40Z probably because i knew better java than matlab, and it was a throw away code, so it didnt need to be beautiful. it just needed to work correctly :) http://stackoverflow.com/questions/1252900/big-o-notation-for-an-algorithm/1252916#1252916 Comment by Midhat on Big O Notation for an Algorithm Midhat 2009-08-10T12:05:18Z 2009-08-10T12:05:18Z lol@ dynamite. reminds me of the Jocks @ <a href="http://bit.ly/abtJ1" rel="nofollow">bit.ly/abtJ1</a> http://stackoverflow.com/questions/1032550/how-do-you-do-page-performance-tests/1032589#1032589 Comment by Midhat on How do you do page performance tests? Midhat 2009-08-10T03:23:38Z 2009-08-10T03:23:38Z &quot;don't use tables for overall layout&quot; - why? http://stackoverflow.com/questions/1252900/big-o-notation-for-an-algorithm/1252916#1252916 Comment by Midhat on Big O Notation for an Algorithm Midhat 2009-08-10T03:21:52Z 2009-08-10T03:21:52Z hey it is acutally a workable idea. use a calculator or a computer to count the number of iterations for small, large and extremely large n, then plot on a linear scale. http://stackoverflow.com/questions/167812/java-development-on-a-mac-xcode-eclipse-or-netbeans/168231#168231 Comment by Midhat on Java Development on a Mac - Xcode, Eclipse, or Netbeans Midhat 2009-08-05T04:02:58Z 2009-08-05T04:02:58Z My point exactly. Eclipse 3.4 and NB 6.1 came out in the same time period. I too was an eclipse fanboy till 3.3 and Netbeans before 6 was ugly and slow and pathetic. But with the buggy eclipse 3.4 and the awesome NB 6.1, i switched IDEs for good and Im not going back http://stackoverflow.com/questions/1164170/looking-for-a-class-in-large-dbml-files/1164209#1164209 Comment by Midhat on Looking for a class in large dbml files Midhat 2009-07-22T11:00:55Z 2009-07-22T11:00:55Z thanks. thats neat http://stackoverflow.com/questions/1107997/how-to-disable-the-back-button-after-session-has-destroyed/1108018#1108018 Comment by Midhat on How to disable the back button after Session has destroyed? Midhat 2009-07-10T06:48:45Z 2009-07-10T06:48:45Z @rats. you are mostly right, but in my experience, safari makes a fresh request on back http://stackoverflow.com/questions/1011156/control-not-available-in-current-context/1011176#1011176 Comment by Midhat on control not available in current context Midhat 2009-06-18T07:07:37Z 2009-06-18T07:07:37Z The file was already in the project. its just that a new control was added outside vs http://stackoverflow.com/questions/994430/compare-an-object-to-null Comment by Midhat on compare an object to null!! Midhat 2009-06-15T04:00:25Z 2009-06-15T04:00:25Z plus. if and else is not called a loop. its a condition http://stackoverflow.com/questions/944752/windows-can-console-output-inadvertently-cause-a-system-beep/944767#944767 Comment by Midhat on Windows - Can console output inadvertently cause a system beep? Midhat 2009-06-04T03:51:04Z 2009-06-04T03:51:04Z I wouldnt do that. The speaker is your first tool to diagnose hardware problems. when the computer just wont turn on http://stackoverflow.com/questions/896662/bind-xmldatasource-to-http-handler/896708#896708 Comment by Midhat on Bind XMLDataSource to HTTP handler Midhat 2009-05-22T10:36:27Z 2009-05-22T10:36:27Z I intended to use the XML as an input to a XMLDataSource. But now I think I would just use the Data property instead of DataFile Property http://stackoverflow.com/questions/896662/bind-xmldatasource-to-http-handler/896708#896708 Comment by Midhat on Bind XMLDataSource to HTTP handler Midhat 2009-05-22T07:56:49Z 2009-05-22T07:56:49Z I am using XMLTextWriter for XML generation. I cannot make a class because there will be other consumers of this data than ASP.Net. It has to be something that is accessible from the web, and hence the HttpHandler http://stackoverflow.com/questions/866921/static-extension-methods/866932#866932 Comment by Midhat on Static extension methods Midhat 2009-05-15T05:10:08Z 2009-05-15T05:10:08Z @whats the point A data bound control i am using calls Boolean.parse in a method, if the arg is not boolean. And My database column means false if value&lt;0 and true otherwise. And no I cant use a boolean column here. as numbers other than 0,1 are meaningful too, but dont make a difference in parsing to boolean http://stackoverflow.com/questions/851056/should-i-try-to-publish-a-book-or-write-a-blog/851114#851114 Comment by Midhat on Should I try to publish a book or write a blog? Midhat 2009-05-12T05:27:15Z 2009-05-12T05:27:15Z I dont see anything to the right <i>evil grin</i> http://stackoverflow.com/questions/847912/send-email-on-gmail-smtp-under-medium-trust/847993#847993 Comment by Midhat on Send Email on GMail SMTP under medium trust Midhat 2009-05-11T17:55:00Z 2009-05-11T17:55:00Z and the bridging link you mentioned is interesting, but this would have helped me if I intended to receive email. I want to send it