User Midhat - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T08:36:14Zhttp://stackoverflow.com/feeds/user/9425http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/743465/radupload-in-formview-in-radajaxpanel0RadUpload in FormView in RadAjaxPanelMidhat2009-04-13T09:41:10Z2009-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-file3How can I save a very large MATLAB sparse matrix to a text file?Midhat2008-10-20T09:17:04Z2009-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#2399501Answer by Midhat for How can I save a very large MATLAB sparse matrix to a text file?Midhat2008-10-27T13:54:21Z2009-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#18890750Answer by Midhat for Function approximationMidhat2009-12-11T16:09:43Z2009-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-hosting8Free Python hostingMidhat2008-10-21T06:31:18Z2009-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-safari0Validation of viewstate MAC failed in SafariMidhat2009-05-28T14:07:48Z2009-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-ssms0Add "Select top 1000" command to toolbar in SSMSMidhat2009-04-21T04:33:46Z2009-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-using2Find application root URL without using ~Midhat2009-04-29T11:52:06Z2009-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-engine0Many to many relationship in java google ap engineMidhat2009-09-03T16:53:38Z2009-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-java1self join in google app engine (java)Midhat2009-09-01T18:37:20Z2009-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<Greeting> children;
public Greeting getParent() {
return parent;
}
public void setParent(Greeting parent) {
this.parent = parent;
}
public List<Greeting> getChildren() {
return children;
}
public void setChildren(List<Greeting> 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#13685050Answer by Midhat for self join in google app engine (java)Midhat2009-09-02T15:47:51Z2009-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-logging0Elmah backup exception loggingMidhat2009-05-04T03:49:53Z2009-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-plot1Find class probabilities in matlab PNN and make ROC plotMidhat2008-11-13T15:50:55Z2009-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#12641290Answer by Midhat for Creating music library database that is easily updatableMidhat2009-08-12T03:52:32Z2009-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-do2What does this javascript doMidhat2009-08-05T04:58:07Z2009-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-cookies1ASP.Net Session State for Long Persisting Auth CookiesMidhat2009-07-31T07:10:22Z2009-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-trust1Send Email on GMail SMTP under medium trustMidhat2009-05-11T12:39:32Z2009-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><SecurityClass Name="SmtpPermission" Description="System.Net.Mail.SmtpPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
</code></pre>
<p>and</p>
<pre><code><IPermission class="SmtpPermission" version="1" Access="Connect"/>
</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#11863621Answer by Midhat for Need UML diagram and planning helpMidhat2009-07-27T04:00:11Z2009-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#11863370Answer by Midhat for How can I capture all mouse events in a JFrame/Swing?Midhat2009-07-27T03:51:37Z2009-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-context0control not available in current contextMidhat2009-06-18T06:56:49Z2009-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#11762160Answer by Midhat for control not available in current contextMidhat2009-07-24T07:23:07Z2009-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-request1find iphone device id from web requestMidhat2009-07-24T07:07:41Z2009-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#11697966Answer by Midhat for Java TCP socket: data transfer is slowMidhat2009-07-23T05:41:18Z2009-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#11697900Answer by Midhat for How to make local server working after wamp installation?Midhat2009-07-23T05:38:38Z2009-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-files1Looking for a class in large dbml filesMidhat2009-07-22T09:44:11Z2009-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-regions0C# outlining. braces or regionsMidhat2009-07-21T04:02:27Z2009-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-platform1Which is the best RCP platformMidhat2008-10-07T07:21:50Z2009-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-radgrid0Accessing all elements of a GridEditableItem in RadGridMidhat2009-04-14T10:29:20Z2009-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-agent0Java User AgentMidhat2009-07-02T03:40:46Z2009-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-field1Transparent PNG not working in SQL Server Image fieldMidhat2009-05-28T09:28:33Z2009-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#239950Comment by Midhat on How can I save a very large MATLAB sparse matrix to a text file?Midhat2009-12-15T16:57:40Z2009-12-15T16:57:40Zprobably 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#1252916Comment by Midhat on Big O Notation for an AlgorithmMidhat2009-08-10T12:05:18Z2009-08-10T12:05:18Zlol@ 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#1032589Comment by Midhat on How do you do page performance tests?Midhat2009-08-10T03:23:38Z2009-08-10T03:23:38Z"don't use tables for overall layout" - why?http://stackoverflow.com/questions/1252900/big-o-notation-for-an-algorithm/1252916#1252916Comment by Midhat on Big O Notation for an AlgorithmMidhat2009-08-10T03:21:52Z2009-08-10T03:21:52Zhey 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#168231Comment by Midhat on Java Development on a Mac - Xcode, Eclipse, or NetbeansMidhat2009-08-05T04:02:58Z2009-08-05T04:02:58ZMy 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 backhttp://stackoverflow.com/questions/1164170/looking-for-a-class-in-large-dbml-files/1164209#1164209Comment by Midhat on Looking for a class in large dbml filesMidhat2009-07-22T11:00:55Z2009-07-22T11:00:55Zthanks. thats neathttp://stackoverflow.com/questions/1107997/how-to-disable-the-back-button-after-session-has-destroyed/1108018#1108018Comment by Midhat on How to disable the back button after Session has destroyed?Midhat2009-07-10T06:48:45Z2009-07-10T06:48:45Z@rats. you are mostly right, but in my experience, safari makes a fresh request on backhttp://stackoverflow.com/questions/1011156/control-not-available-in-current-context/1011176#1011176Comment by Midhat on control not available in current contextMidhat2009-06-18T07:07:37Z2009-06-18T07:07:37ZThe file was already in the project. its just that a new control was added outside vshttp://stackoverflow.com/questions/994430/compare-an-object-to-nullComment by Midhat on compare an object to null!!Midhat2009-06-15T04:00:25Z2009-06-15T04:00:25Zplus. if and else is not called a loop. its a conditionhttp://stackoverflow.com/questions/944752/windows-can-console-output-inadvertently-cause-a-system-beep/944767#944767Comment by Midhat on Windows - Can console output inadvertently cause a system beep?Midhat2009-06-04T03:51:04Z2009-06-04T03:51:04ZI wouldnt do that. The speaker is your first tool to diagnose hardware problems. when the computer just wont turn onhttp://stackoverflow.com/questions/896662/bind-xmldatasource-to-http-handler/896708#896708Comment by Midhat on Bind XMLDataSource to HTTP handlerMidhat2009-05-22T10:36:27Z2009-05-22T10:36:27ZI 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 Propertyhttp://stackoverflow.com/questions/896662/bind-xmldatasource-to-http-handler/896708#896708Comment by Midhat on Bind XMLDataSource to HTTP handlerMidhat2009-05-22T07:56:49Z2009-05-22T07:56:49ZI 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 HttpHandlerhttp://stackoverflow.com/questions/866921/static-extension-methods/866932#866932Comment by Midhat on Static extension methodsMidhat2009-05-15T05:10:08Z2009-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<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 booleanhttp://stackoverflow.com/questions/851056/should-i-try-to-publish-a-book-or-write-a-blog/851114#851114Comment by Midhat on Should I try to publish a book or write a blog?Midhat2009-05-12T05:27:15Z2009-05-12T05:27:15ZI dont see anything to the right <i>evil grin</i>http://stackoverflow.com/questions/847912/send-email-on-gmail-smtp-under-medium-trust/847993#847993Comment by Midhat on Send Email on GMail SMTP under medium trustMidhat2009-05-11T17:55:00Z2009-05-11T17:55:00Zand the bridging link you mentioned is interesting, but this would have helped me if I intended to receive email. I want to send it