User Benjamin Ortuzar - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T22:38:47Z http://stackoverflow.com/feeds/user/71560 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1785079/visual-studio-project-comparison/1785097#1785097 2 Answer by Benjamin Ortuzar for Visual Studio Project Comparison Benjamin Ortuzar 2009-11-23T18:38:24Z 2009-11-23T18:46:00Z <p>The best windows tool available to compare files is <a href="http://www.scootersoftware.com/moreinfo.php" rel="nofollow">Beyond Compare</a> Its commercial but you can get a 30 day trial. There is a Linux version too.</p> http://stackoverflow.com/questions/1582606/iphone-rotating-flipped-view-when-rotating-visible-view 0 iphone: rotating flipped view when rotating visible view. Benjamin Ortuzar 2009-10-17T16:32:48Z 2009-10-17T20:24:46Z <p>Hi guys,</p> <p>I have a resizing issue when rotating a view controller that has two views which I switch between using the flip animation. The problem appears if i do the following steps:</p> <ol> <li>Rotate the device when viewing the tableview.</li> <li>Click the info button.</li> <li>Rotate the device (infoView appears stretched).</li> <li>Click on info button (tableview appears stretched)</li> </ol> <p>It appears that the view that is not added to the superview is not resizing correctly, since it was not part of the composite views when the device was rotated.. Is there any way to get this view auto resized correctly?</p> <p>Below is a code sample</p> <pre><code>- (void)viewDidLoad { [super viewDidLoad]; //background image backgroundImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"bg-app.png"]]; backgroundImageView.autoresizingMask = (UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight); [self.view addSubview: backgroundImageView]; [backgroundImageView release]; //infoView aboutImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"About.png"]]; aboutImageView.autoresizingMask = (UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight); //tableView self.tableView = [[[UITableView alloc ] initWithFrame:[[UIScreen mainScreen] bounds] style:UITableViewStylePlain] autorelease ]; //set the rowHeight once for performance reasons. self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone; self.tableView.rowHeight = 75; self.tableView.backgroundColor = [UIColor clearColor]; self.tableView.autoresizingMask = (UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight); self.tableView.delegate = self; self.tableView.dataSource = self; self.tableView.autoresizesSubviews = YES; //set the rowHeight once for performance reasons. [self.view addSubview: tableView]; //[tableView release]; [self.view setAutoresizingMask:UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth];//for resizing on rotation //info button UIButton * infoDarkButtonType = [[UIButton buttonWithType:UIButtonTypeInfoLight] retain]; infoDarkButtonType.frame = CGRectMake(0.0, 0.0, 25.0, 25.0); infoDarkButtonType.backgroundColor = [UIColor clearColor]; [infoDarkButtonType addTarget:self action:@selector(infoAction:) forControlEvents:UIControlEventTouchUpInside]; UIBarButtonItem *buttonInfo = [[UIBarButtonItem alloc] initWithCustomView:infoDarkButtonType]; self.navigationItem.rightBarButtonItem = buttonInfo; [infoDarkButtonType release]; self.navigationItem.rightBarButtonItem = buttonInfo; [buttonInfo release]; } // Override to allow orientations other than the default portrait orientation. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { // Return YES for supported orientations return YES; } - (void)infoAction:(id)sender{ NSLog(@"Clicked on the info button"); [UIView beginAnimations:nil context:nil]; [UIView setAnimationDuration:0.75]; /* Sub. duration here */ UIView *superview; if ((superview = [tableView superview])) { [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:superview cache:YES]; [tableView removeFromSuperview]; [superview addSubview:aboutImageView]; } else if ((superview = [aboutImageView superview])) { [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:superview cache:YES]; [aboutImageView removeFromSuperview]; [superview addSubview:tableView]; } [UIView commitAnimations]; } </code></pre> <p>Thanks</p> http://stackoverflow.com/questions/1530284/multiple-sql-server-connection-strings-in-app-config-file 1 Multiple SQL Server connection strings in app.config file Benjamin Ortuzar 2009-10-07T08:31:51Z 2009-10-07T08:52:24Z <p>Hi guys,</p> <p>I'm interested in displaying in a Windows Forms app a list of N radio buttons for the user to choose a target database server. I would like to add the SQL Server connection strings in the app.config file, so they are read by the app at runtime and rendered in the windows form as radio buttons. </p> <p>At first I thought of using a delimiter to separate the connections</p> <pre><code> &lt;appSettings&gt; &lt;add key="ConnectionString" value="connection1|user id=user;password=123;server=10.0.0.1;database=myDatabase;connection timeout=30|connection2|user id=user;password=123;server=10.0.0.2;database=myDatabase;connection timeout=30"/&gt; &lt;/appSettings&gt; </code></pre> <p>And then split the key value pairs.</p> <p>Is it possible to do this in a different way?</p> http://stackoverflow.com/questions/1333380/submitting-form-programmatically 4 submitting form programmatically Benjamin Ortuzar 2009-08-26T09:13:42Z 2009-09-17T08:29:43Z <p>Hi guys,</p> <p>Im trying to submit a specific form programatically, but I allways get the initial page back. I must be doing something wrong or missing something here. Im sending the session cookie and some POST data like viewState (that I parse from the initial request), and SessionID (this is the value i change in the form toget data from other years). But in the second request I allways get data for Session 899, instead of the one i request: 875.</p> <p>Here is the code used:, any help is greatly apreciated</p> <p>retrieveEdmIndexForSession(875);</p> <pre><code> protected string retrieveEdmIndexForSession(int sessionId) { CookieContainer cookies; HttpWebRequest oRequest; HttpWebResponse oResponse; Stream sw; StreamReader sr; string pageData; string PathRemote = @"http://edmi.parliament.uk/EDMi/EDMList.aspx"; /* * download the index page so we can get Cookies and ViewState from it. */ oRequest = (HttpWebRequest)WebRequest.Create(PathRemote); oRequest.Method = "GET"; oRequest.AllowAutoRedirect = true; oRequest.CookieContainer = new CookieContainer(); oRequest.Accept = "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"; oRequest.Referer = "http://edmi.parliament.uk/EDMi/EDMList.aspx"; oResponse =(HttpWebResponse) oRequest.GetResponse(); sr = new StreamReader(oResponse.GetResponseStream()); pageData = sr.ReadToEnd(); /* * extract view state from pageData. */ string viewState = this.ExtractViewState(pageData); /* * lets submit the form with the parameters we want */ oRequest = (HttpWebRequest)WebRequest.Create(PathRemote); oRequest.Method = "POST"; oRequest.AllowAutoRedirect = true; oRequest.ContentType = "application/x-www-form-urlencoded"; oRequest.CookieContainer = new CookieContainer(); oRequest.CookieContainer.Add(oResponse.Cookies); oRequest.Accept = "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"; oRequest.Referer = "http://edmi.parliament.uk/EDMi/EDMList.aspx"; string postdata = "__EVENTTARGET=&amp;__EVENTARGUMENT=&amp;__VIEWSTATE=" + viewState + "&amp;_MenuCtrl%3AddlSession=" + sessionId + "&amp;_MenuCtrl%3A_GoTo.x=57&amp;_MenuCtrl%3A_GoTo.y=14&amp;ddlStatus=1&amp;ddlSortedBy=1"; byte[] buffer = Encoding.UTF8.GetBytes(postdata); oRequest.ContentLength = buffer.Length; /* * Send post data into request stream first */ sw = oRequest.GetRequestStream(); sw.Write(buffer, 0, buffer.Length); sw.Flush(); sw.Close(); /* * Connect, send and get response */ oResponse = (HttpWebResponse)oRequest.GetResponse(); sr = new StreamReader(oResponse.GetResponseStream()); //OnLogUpdated(1, "\r\nStatus Code: " + oResponse.StatusCode); //OnLogUpdated(1, "\r\nServer: " + oResponse.Server); pageData = sr.ReadToEnd(); string result = getSessionId(pageData); //OnLogUpdated(1, "\r\nRestuls: [" + result + "]"); //OnLogUpdated(1, "\r\nPage: [" + pageData + "]"); return pageData; } private string ExtractViewState(string str) { string viewState = ""; string pattern = "(?&lt;=__VIEWSTATE\" value=\")(?&lt;val&gt;.*?)(?=\")"; Match match = Regex.Match(str, pattern); if (match.Success) { viewState = match.Groups["val"].Value; viewState = HttpUtility.UrlEncodeUnicode(viewState); } return viewState; } protected string getSessionId(string str) { string sessionId = string.Empty; str = str.Trim(); string pattern = @"&amp;SESSION=([^']+)'"; Match match = Regex.Match(str, pattern, RegexOptions.IgnoreCase); if (match.Success) { sessionId = match.Groups[1].ToString(); ; } return sessionId; } </code></pre> <p>This is the RAW Request being sent by the .NET script.</p> <blockquote> <p>POST /EDMi/EDMList.aspx HTTP/1.1 Content-Type: application/x-www-form-urlencoded Accept: text/html,application/xhtml+xml,application/xml;q=0.9,<em>/</em>;q=0.8 Referer: <a href="http://edmi.parliament.uk/EDMi/EDMList.aspx" rel="nofollow">http://edmi.parliament.uk/EDMi/EDMList.aspx</a> User-Agent: .NET Framework Client Host: edmi.parliament.uk Cookie: ASP.NET_SessionId=k55fqarvx2oszp2wxhtrol45 Content-Length: 2431 Expect: 100-continue</p> <p>__EVENTTARGET=&amp;__EVENTARGUMENT=&amp;__VIEWSTATE=dDwxMDgyNzIxNDQ2O3Q8O2w8aTwzPjs%2bO2w8dDw7bDxpPDE%2bO2k8Mz47aTw1PjtpPDExPjs%2bO2w8dDw7bDxpPDEzPjtpPDE3Pjs%2bO2w8dDx0PHA8cDxsPERhdGFWYWx1ZUZpZWxkO0RhdGFUZXh0RmllbGQ7PjtsPFNFU1NJT05JRDtJVEVNX1ZBTFVFOz4%2bOz47dDxpPDIwPjtAPDA4LTA5OzA3LTA4OzA2LTA3OzA1LTA2OzA0LTA1OzAzLTA0OzAyLTAzOzAxLTAyOzAwLTAxOzk5LTAwOzk4LTk5Ozk3LTk4Ozk2LTk3Ozk1LTk2Ozk0LTk1OzkzLTk0OzkyLTkzOzkxLTkyOzkwLTkxOzg5LTkwOz47QDw4OTk7ODkxOzg4NTs4NzU7ODczOzY4Mjs2ODE7NjgwOzY3OTs3MDM7NzAyOzcwMTs3MDA7Njk5OzY5ODs2OTc7Njk2OzY5NTs2OTQ7NjkzOz4%2bOz47Oz47dDxwPGw8VGV4dDs%2bO2w8TGlzdCBPZiBFYXJseSBEYXkgTW90aW9uczs%2bPjs7Pjs%2bPjt0PDtsPGk8MT47aTwzPjs%2bO2w8dDx0PDs7bDxpPDA%2bOz4%2bOzs%2bO3Q8dDw7O2w8aTwwPjs%2bPjs7Pjs%2bPjt0PDtsPGk8MT47aTwzPjs%2bO2w8dDw7bDxpPDE%2bO2k8Mz47aTw1PjtpPDc%2bOz47bDx0PHA8cDxsPENvbW1hbmRBcmd1bWVudDtDc3NDbGFzcztFbmFibGVkO18hU0I7PjtsPDA7UGFnZUZpcnN0RGlzYWJsZWQ7bzxmPjtpPDI%2bOz4%2bOz47Oz47dDxwPHA8bDxDb21tYW5kQXJndW1lbnQ7Q3NzQ2xhc3M7RW5hYmxlZDtfIVNCOz47bDwtMTtQYWdlUHJldkRpc2FibGVkO288Zj47aTwyPjs%2bPjs%2bOzs%2bO3Q8cDxwPGw8Q29tbWFuZEFyZ3VtZW50O0Nzc0NsYXNzO18hU0I7PjtsPDE7UGFnZU5leHRFbmFibGVkO2k8Mj47Pj47Pjs7Pjt0PHA8cDxsPENvbW1hbmRBcmd1bWVudDtDc3NDbGFzcztfIVNCOz47bDw0MjtQYWdlTGFzdEVuYWJsZWQ7aTwyPjs%2bPjs%2bOzs%2bOz4%2bO3Q8O2w8aTwxPjtpPDM%2bO2k8NT47aTw3Pjs%2bO2w8dDxwPHA8bDxUZXh0Oz47bDwyMTA5Oz4%2bOz47Oz47dDxwPHA8bDxUZXh0Oz47bDxFRE1zIGFuZCBBbWVuZG1lbnRzOz4%2bOz47Oz47dDxwPHA8bDxUZXh0Oz47bDwxOz4%2bOz47Oz47dDxwPHA8bDxUZXh0Oz47bDw1MDs%2bPjs%2bOzs%2bOz4%2bOz4%2bO3Q8O2w8aTwxPjtpPDM%2bOz47bDx0PDtsPGk8MT47aTwzPjtpPDU%2bO2k8Nz47PjtsPHQ8cDxwPGw8Q29tbWFuZEFyZ3VtZW50O0Nzc0NsYXNzO0VuYWJsZWQ7XyFTQjs%2bO2w8MDtQYWdlRmlyc3REaXNhYmxlZDtvPGY%2bO2k8Mj47Pj47Pjs7Pjt0PHA8cDxsPENvbW1hbmRBcmd1bWVudDtDc3NDbGFzcztFbmFibGVkO18hU0I7PjtsPC0xO1BhZ2VQcmV2RGlzYWJsZWQ7bzxmPjtpPDI%2bOz4%2bOz47Oz47dDxwPHA8bDxDb21tYW5kQXJndW1lbnQ7Q3NzQ2xhc3M7XyFTQjs%2bO2w8MTtQYWdlTmV4dEVuYWJsZWQ7aTwyPjs%2bPjs%2bOzs%2bO3Q8cDxwPGw8Q29tbWFuZEFyZ3VtZW50O0Nzc0NsYXNzO18hU0I7PjtsPDQyO1BhZ2VMYXN0RW5hYmxlZDtpPDI%2bOz4%2bOz47Oz47Pj47dDxwPHA8bDxWaXNpYmxlOz47bDxvPGY%2bOz4%2bOz47bDxpPDE%2bO2k8Mz47aTw1PjtpPDc%2bOz47bDx0PHA8cDxsPFRleHQ7PjtsPDIxMDk7Pj47Pjs7Pjt0PHA8cDxsPFRleHQ7PjtsPEVETXMgYW5kIEFtZW5kbWVudHM7Pj47Pjs7Pjt0PHA8cDxsPFRleHQ7PjtsPDE7Pj47Pjs7Pjt0PHA8cDxsPFRleHQ7PjtsPDUwOz4%2bOz47Oz47Pj47Pj47Pj47Pj47bDxfTWVudUN0cmw6X0dvVG87Pj5NHcFbPBNzNuwxs7sYLdUE2omkjw%3d%3d&amp;_MenuCtrl%3AddlSession=875&amp;_MenuCtrl%3A_GoTo.x=57&amp;_MenuCtrl%3A_GoTo.y=14&amp;ddlStatus=1&amp;ddlSortedBy=1</p> </blockquote> <p>This is the RAW request sent by IE:</p> <blockquote> <p>POST /EDMi/EDMList.aspx HTTP/1.1 Accept: image/gif, image/jpeg, image/pjpeg, image/pjpeg, application/x-shockwave-flash, application/xaml+xml, application/vnd.ms-xpsdocument, application/x-ms-xbap, application/x-ms-application, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, <em>/</em> Referer: <a href="http://edmi.parliament.uk/EDMi/EDMList.aspx" rel="nofollow">http://edmi.parliament.uk/EDMi/EDMList.aspx</a> Accept-Language: en-gb User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1; .NET CLR 3.0.04506.648; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) Content-Type: application/x-www-form-urlencoded Accept-Encoding: gzip, deflate Host: edmi.parliament.uk Content-Length: 2431 Connection: Keep-Alive Pragma: no-cache Cookie: WT_FPC=id=83.217.99.254-2364242496.30021299:lv=1249572414567:ss=1249572414567; ASP.NET_SessionId=vwxgo4rlex1j5m55l0bivrqo</p> <p>__EVENTTARGET=&amp;__EVENTARGUMENT=&amp;__VIEWSTATE=dDwxMDgyNzIxNDQ2O3Q8O2w8aTwzPjs%2BO2w8dDw7bDxpPDE%2BO2k8Mz47aTw1PjtpPDExPjs%2BO2w8dDw7bDxpPDEzPjtpPDE3Pjs%2BO2w8dDx0PHA8cDxsPERhdGFWYWx1ZUZpZWxkO0RhdGFUZXh0RmllbGQ7PjtsPFNFU1NJT05JRDtJVEVNX1ZBTFVFOz4%2BOz47dDxpPDIwPjtAPDA4LTA5OzA3LTA4OzA2LTA3OzA1LTA2OzA0LTA1OzAzLTA0OzAyLTAzOzAxLTAyOzAwLTAxOzk5LTAwOzk4LTk5Ozk3LTk4Ozk2LTk3Ozk1LTk2Ozk0LTk1OzkzLTk0OzkyLTkzOzkxLTkyOzkwLTkxOzg5LTkwOz47QDw4OTk7ODkxOzg4NTs4NzU7ODczOzY4Mjs2ODE7NjgwOzY3OTs3MDM7NzAyOzcwMTs3MDA7Njk5OzY5ODs2OTc7Njk2OzY5NTs2OTQ7NjkzOz4%2BOz47Oz47dDxwPGw8VGV4dDs%2BO2w8TGlzdCBPZiBFYXJseSBEYXkgTW90aW9uczs%2BPjs7Pjs%2BPjt0PDtsPGk8MT47aTwzPjs%2BO2w8dDx0PDs7bDxpPDA%2BOz4%2BOzs%2BO3Q8dDw7O2w8aTwwPjs%2BPjs7Pjs%2BPjt0PDtsPGk8MT47aTwzPjs%2BO2w8dDw7bDxpPDE%2BO2k8Mz47aTw1PjtpPDc%2BOz47bDx0PHA8cDxsPENvbW1hbmRBcmd1bWVudDtDc3NDbGFzcztFbmFibGVkO18hU0I7PjtsPDA7UGFnZUZpcnN0RGlzYWJsZWQ7bzxmPjtpPDI%2BOz4%2BOz47Oz47dDxwPHA8bDxDb21tYW5kQXJndW1lbnQ7Q3NzQ2xhc3M7RW5hYmxlZDtfIVNCOz47bDwtMTtQYWdlUHJldkRpc2FibGVkO288Zj47aTwyPjs%2BPjs%2BOzs%2BO3Q8cDxwPGw8Q29tbWFuZEFyZ3VtZW50O0Nzc0NsYXNzO18hU0I7PjtsPDE7UGFnZU5leHRFbmFibGVkO2k8Mj47Pj47Pjs7Pjt0PHA8cDxsPENvbW1hbmRBcmd1bWVudDtDc3NDbGFzcztfIVNCOz47bDw0MjtQYWdlTGFzdEVuYWJsZWQ7aTwyPjs%2BPjs%2BOzs%2BOz4%2BO3Q8O2w8aTwxPjtpPDM%2BO2k8NT47aTw3Pjs%2BO2w8dDxwPHA8bDxUZXh0Oz47bDwyMTA5Oz4%2BOz47Oz47dDxwPHA8bDxUZXh0Oz47bDxFRE1zIGFuZCBBbWVuZG1lbnRzOz4%2BOz47Oz47dDxwPHA8bDxUZXh0Oz47bDwxOz4%2BOz47Oz47dDxwPHA8bDxUZXh0Oz47bDw1MDs%2BPjs%2BOzs%2BOz4%2BOz4%2BO3Q8O2w8aTwxPjtpPDM%2BOz47bDx0PDtsPGk8MT47aTwzPjtpPDU%2BO2k8Nz47PjtsPHQ8cDxwPGw8Q29tbWFuZEFyZ3VtZW50O0Nzc0NsYXNzO0VuYWJsZWQ7XyFTQjs%2BO2w8MDtQYWdlRmlyc3REaXNhYmxlZDtvPGY%2BO2k8Mj47Pj47Pjs7Pjt0PHA8cDxsPENvbW1hbmRBcmd1bWVudDtDc3NDbGFzcztFbmFibGVkO18hU0I7PjtsPC0xO1BhZ2VQcmV2RGlzYWJsZWQ7bzxmPjtpPDI%2BOz4%2BOz47Oz47dDxwPHA8bDxDb21tYW5kQXJndW1lbnQ7Q3NzQ2xhc3M7XyFTQjs%2BO2w8MTtQYWdlTmV4dEVuYWJsZWQ7aTwyPjs%2BPjs%2BOzs%2BO3Q8cDxwPGw8Q29tbWFuZEFyZ3VtZW50O0Nzc0NsYXNzO18hU0I7PjtsPDQyO1BhZ2VMYXN0RW5hYmxlZDtpPDI%2BOz4%2BOz47Oz47Pj47dDxwPHA8bDxWaXNpYmxlOz47bDxvPGY%2BOz4%2BOz47bDxpPDE%2BO2k8Mz47aTw1PjtpPDc%2BOz47bDx0PHA8cDxsPFRleHQ7PjtsPDIxMDk7Pj47Pjs7Pjt0PHA8cDxsPFRleHQ7PjtsPEVETXMgYW5kIEFtZW5kbWVudHM7Pj47Pjs7Pjt0PHA8cDxsPFRleHQ7PjtsPDE7Pj47Pjs7Pjt0PHA8cDxsPFRleHQ7PjtsPDUwOz4%2BOz47Oz47Pj47Pj47Pj47Pj47bDxfTWVudUN0cmw6X0dvVG87Pj5NHcFbPBNzNuwxs7sYLdUE2omkjw%3D%3D&amp;_MenuCtrl%3AddlSession=885&amp;ddlStatus=0&amp;ddlSortedBy=1&amp;_MenuCtrl%3A_GoTo.x=37&amp;_MenuCtrl%3A_GoTo.y=12</p> </blockquote> <p>The IE Header seems to have an extra cookie(WT_FPC=id=83.217.99.254-2364242496.30021299:lv=1249572414567:ss=1249572414567;) witch appers to track visitors using cookies via the WebTrends Cookie Plug-In. Both POST Requests Return HTTP Status Code 302 and redirect to a GET request that returns status 200.</p> <p>Any ideas ?</p> http://stackoverflow.com/questions/1418680/regex-script-remove-easy/1418796#1418796 0 Answer by Benjamin Ortuzar for Regex script remove - Easy Benjamin Ortuzar 2009-09-13T20:39:15Z 2009-09-13T20:39:15Z <pre><code>replace(/&lt;script[^&gt;]*&gt;.*?&lt;\/script&gt;/igs, ''); </code></pre> <p>You missed a dot ;)</p> http://stackoverflow.com/questions/1417381/oop-php5-calling-class-a-from-class-b-or-making-the-horse-jump/1417434#1417434 0 Answer by Benjamin Ortuzar for OOP/PHP5: Calling Class A from Class B - or, Making the horse jump Benjamin Ortuzar 2009-09-13T10:42:35Z 2009-09-13T10:42:35Z <p>I would suggest reading about the factory and strategy pattern. You can read more about this from chapter one of this fantastic book. <a href="http://books.google.com/books?id=LjJcCnNf92kC&amp;pg=PA22&amp;dq=strategy+pattern+duck+fly&amp;ei=CcusSq3jEYO0zASd2PH5BA#v=onepage&amp;q=&amp;f=false" rel="nofollow">link text</a></p> <p>I would recomend you reading the whole book.</p> http://stackoverflow.com/questions/1333380/submitting-form-programmatically/1334198#1334198 0 Answer by Benjamin Ortuzar for submitting form programmatically Benjamin Ortuzar 2009-08-26T11:58:02Z 2009-08-26T11:58:02Z <p>Hi Gents, </p> <p>I have cracked it. It seems that the .NET server does not like me changing the Status and the Session at the same time. It works if i change the "ddlStatus" from:</p> <blockquote> <p>string postdata = "__EVENTTARGET=&amp;__EVENTARGUMENT=&amp;__VIEWSTATE=" + viewState + "&amp;_MenuCtrl%3AddlSession=" + sessionId + "&amp;_MenuCtrl%3A_GoTo.x=57&amp;_MenuCtrl%3A_GoTo.y=14&amp;ddlStatus=1&amp;ddlSortedBy=1";</p> </blockquote> <p>to this:</p> <blockquote> <p>string postdata = "__EVENTTARGET=&amp;__EVENTARGUMENT=&amp;__VIEWSTATE=" + viewState + "&amp;_MenuCtrl%3AddlSession=" + sessionId + "&amp;_MenuCtrl%3A_GoTo.x=57&amp;_MenuCtrl%3A_GoTo.y=14&amp;ddlStatus=0&amp;ddlSortedBy=1";</p> </blockquote> <p>I will have to change the ddlStatus in a second POST request, and so on for each change in the form. .NET seems to be very well educated, It can only take one sweet at a time.</p> <p>Thanks for all the help :)</p> http://stackoverflow.com/questions/844982/uipicker-swipes-not-responding 0 UIPicker swipes not responding Benjamin Ortuzar 2009-05-10T09:10:22Z 2009-06-19T21:37:24Z <p>Hi guys, UIPicker swipes where responding perfectly in the Iphone simulator with SDK 2.2, but i am now testing with a new version of the simulator, and swipes are not working. I went trough the documentation and i cant see any changes on the API. So im asumming that something is wrong and the SDK 2.2 is letting me get away with it.</p> <p>The Picker uses custom views to display an image and text beside it. The picker does change position correctly when you do a single tap on a row of the Picker. But if you try to swipe it does not respond (sometimes it moves a few millimeters). I thought the custom view for each row was not letting the picker detect the swipes, so i added self.userInteractionEnabled = NO in the custom view, but it hasn't made any difference.</p> <p>Your help would be appreciated,</p> <p>Thanks</p> http://stackoverflow.com/questions/722728/google-appengine-date-range-not-returning-correct-results 0 Google AppEngine: Date Range not returning correct results Benjamin Ortuzar 2009-04-06T19:03:21Z 2009-06-10T05:48:21Z <p>Im trying to search for some values within a date range for a specific type, but content for dates that exist in the database are not being returned by the query.</p> <p>Here is an extract of the python code:</p> <pre><code>deltaDays = timedelta(days= 20) endDate = datetime.date.today() startDate = endDate - deltaDays result = db.GqlQuery( "SELECT * FROM myData WHERE mytype = :1 AND pubdate &gt;= :2 and pubdate &lt;= :3", type, startDate, endDate ) class myData(db.Model): mytype = db.StringProperty(required=True) value = db.FloatProperty(required=True) pubdate = db.DateTimeProperty(required=True) </code></pre> <p>The GQL returns data, but some rows that I am expecting are missing:</p> <pre><code> 2009-03-18 00:00:00 (missing date in results: 2009-03-20 data exists in database) 2009-03-23 00:00:00 2009-03-24 00:00:00 2009-03-25 00:00:00 2009-03-26 00:00:00 (missing date in results: 2009-03-27 data exists in database) 2009-03-30 00:00:00 (missing date in results: 2009-03-31. data exists in database) 2009-04-01 00:00:00 2009-04-02 00:00:00 2009-04-03 00:00:00 2009-04-06 00:00:00 </code></pre> <p>I uploaded the data via de bulkload script. I just can think of the indexes being corrupted or something similar. This same query used to work for another table i had. But i had to replace it with new content from another source, and this new content is not responding to the query in the same way. The table has around 700.000 rows if that makes any difference.</p> <p>I have done more research ant it appears that its a bug in the appEngine DataStore. For more information about the bug check this link: <a href="http://code.google.com/p/googleappengine/issues/detail?id=901" rel="nofollow">http://code.google.com/p/googleappengine/issues/detail?id=901</a></p> <p>I have tried droping the index and recreating it with no luck.</p> <p>thanks</p> http://stackoverflow.com/questions/891437/including-file-in-php/892802#892802 0 Answer by Benjamin Ortuzar for Including file in PHP ? Benjamin Ortuzar 2009-05-21T12:56:20Z 2009-05-21T12:56:20Z <p>I would suggest using xdebug PHP extention to benchmark and profile your script. It will tell you how long each function took to execute. You can find more information on how to install it and what it can do here: <a href="http://www.xdebug.org/" rel="nofollow">http://www.xdebug.org/</a></p> http://stackoverflow.com/questions/867336/uiactivityindicator-problem-when-downloading-from-url/868059#868059 0 Answer by Benjamin Ortuzar for UIActivityIndicator problem when downloading from URL Benjamin Ortuzar 2009-05-15T11:04:11Z 2009-05-15T11:20:08Z <p>You need to put [indicator startAnimating] and [indicator stopAnimating]; in separate methods. I believe the animation does not kick in until the method reaches its end. So if you separate this into several methods this should work </p> <ul> <li>One method that starts your animation</li> <li>One method that downloads the file. </li> <li>One method that stops the animation.</li> </ul> <p>Another option is threading to acomplish this. More information <a href="http://stackoverflow.com/questions/441345/does-uiactivityindicator-require-manual-threading-on-iphone">here</a> </p> http://stackoverflow.com/questions/840509/svn-update-is-not-updating/840518#840518 12 Answer by Benjamin Ortuzar for svn update is not updating!! Benjamin Ortuzar 2009-05-08T15:54:03Z 2009-05-08T15:54:03Z <p>You should use SVN revert. This would revert the files in your working copy to their original state. For more information and examples check the svn book here: <a href="http://svnbook.red-bean.com/en/1.1/re25.html" rel="nofollow">http://svnbook.red-bean.com/en/1.1/re25.html</a></p> http://stackoverflow.com/questions/819633/uisegmentcontrol-problem/819642#819642 2 Answer by Benjamin Ortuzar for UISegmentControl problem Benjamin Ortuzar 2009-05-04T10:51:21Z 2009-05-04T10:51:21Z <p>try something like this:</p> <pre><code> -(void)segmentSelect:(id)sender{ UISegmentedControl* segmentedControl = sender; switch ([segmentedControl selectedSegmentIndex]) { case 0: NSLog(@"this is 0"); break; case 1: NSLog(@"this is 1"); //push the controller break; default: NSLog(@"this is unexpected"); } } </code></pre> http://stackoverflow.com/questions/788357/uipickerview-1st-row-selection-does-not-call-didselectrow/789633#789633 0 Answer by Benjamin Ortuzar for UIPickerView - 1st row selection does not call didSelectRow Benjamin Ortuzar 2009-04-25T20:06:54Z 2009-04-26T10:35:49Z <p>Instead of "pushing" the value of the picker each time you make a selection with this code: </p> <pre><code>- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component </code></pre> <p>you should "pull it" when the user clicks the button (or other event you are using) using something similar to:</p> <pre><code>- (void)myAction:(id)sender { NSInteger row = [myPicker selectedRowInComponent:0]; selectedText = [myArray objectAtIndex:0]; } </code></pre> <p>For clearing the text: The UITextField class provides a built-in button for clearing the current text. So if the user does not want that text he can discard it.</p> <pre><code>myTextField.clearButtonMode = UITextFieldViewModeAlways; </code></pre> <p>So in the script, will you check if the TextField has a value, if it does have a value u use the TextField, if it doesn't have a value, you pull the information from the Picker.</p> http://stackoverflow.com/questions/28551/tips-for-a-successful-appstore-submission/790576#790576 0 Answer by Benjamin Ortuzar for Tips for a successful AppStore submission? Benjamin Ortuzar 2009-04-26T09:49:28Z 2009-04-26T09:49:28Z <p>Don't use images in the tab bar items that resemble an iphone/ipod touch. They use to allow them, but now they are rejecting them. It seems that other apple hardware is not an issue. </p> http://stackoverflow.com/questions/790096/delay-loading-of-uiwebview-in-uitabbar-app/790509#790509 0 Answer by Benjamin Ortuzar for delay loading of UIWebView in UITabBar app Benjamin Ortuzar 2009-04-26T08:54:34Z 2009-04-26T08:54:34Z <p>Use viewDidAppear. This will be sent to the controller after the view fully appears and animations end.</p> http://stackoverflow.com/questions/742619/iphone-finding-coordinate-of-cgpath 0 iphone: finding coordinate of CGPath Benjamin Ortuzar 2009-04-12T23:15:29Z 2009-04-12T23:36:32Z <p>I have drawn an line graph (as an unclosed path) with 10 (x,y) points by using CGContextBeginPath, CGContextAddLineToPoint and CGContextMoveToPoint . I would like to be able to retrieve the vertical coordinate (y) of the path where the user have given input of the horizontal coordinate (x) by touching the screen, so I can display further information about the graph. Any ideas on what is the best way to achieve this?</p> <p>thanks</p> http://stackoverflow.com/questions/145651/cron-jobs-on-google-appengine/731873#731873 15 Answer by Benjamin Ortuzar for cron jobs on google appengine Benjamin Ortuzar 2009-04-08T21:10:43Z 2009-04-12T22:23:46Z <p>Google has officially enabled cron in the AppEngine, for more details check: Cron for Python: <a href="http://code.google.com/appengine/docs/python/config/cron.html" rel="nofollow">http://code.google.com/appengine/docs/python/config/cron.html</a> Cron for Java <a href="http://code.google.com/appengine/docs/java/config/cron.html" rel="nofollow">http://code.google.com/appengine/docs/java/config/cron.html</a></p> http://stackoverflow.com/questions/678133/tracking-changes-to-a-functional-design-document/678161#678161 0 Answer by Benjamin Ortuzar for Tracking changes to a (functional) design document Benjamin Ortuzar 2009-03-24T16:25:51Z 2009-03-24T16:25:51Z <p>Use Google Docs. Its free, web based, muti-user in real time, you can choose who has access to your documents, and keeps versioning. You can also upload all your word documents and it will transform them for you. For more information: <a href="http://www.google.com/google-d-s/intl/en/tour2.html" rel="nofollow">http://www.google.com/google-d-s/intl/en/tour2.html</a></p> http://stackoverflow.com/questions/676976/mysql-error/676995#676995 0 Answer by Benjamin Ortuzar for MYSQL ERROR Benjamin Ortuzar 2009-03-24T11:24:29Z 2009-03-24T11:24:29Z <p>You need to add the names of the fields you are inserting to</p> <pre><code>INSERT INTO blog_articles ('title', 'tags', 'category', 'blog', 'author', 'date') VALUES ('$title', '$tags', '$category', '$blog', '$author', '$date') </code></pre> <p>Also you should add some code to escape double or single quote in your text that could break the SQL query.</p> <p>use the PHP function mysql_real_escape_string()</p> <p>mysql_real_escape_string() calls MySQL's library function mysql_real_escape_string, which prepends backslashes to the following characters: \x00, \n, \r, \, ', " and \x1a. </p> <p>For more details: <a href="http://uk.php.net/mysql_real_escape_string" rel="nofollow">http://uk.php.net/mysql_real_escape_string</a></p> http://stackoverflow.com/questions/308081/is-it-possible-to-configure-a-uitableview-to-allow-multiple-selection/675215#675215 0 Answer by Benjamin Ortuzar for Is it possible to configure a UITableView to allow multiple-selection? Benjamin Ortuzar 2009-03-23T20:58:07Z 2009-03-23T20:58:07Z <p>Use the following code to set up the cell accesory types:</p> <pre><code> - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { UITableViewCell *thisCell = [tableView cellForRowAtIndexPath:indexPath]; if (thisCell.accessoryType == UITableViewCellAccessoryNone) { thisCell.accessoryType = UITableViewCellAccessoryCheckmark; }else{ thisCell.accessoryType = UITableViewCellAccessoryNone; } } - (UITableViewCellAccessoryType)tableView:(UITableView *)tableView accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath { //add your own code to set the cell accesory type. return UITableViewCellAccessoryNone; } </code></pre> http://stackoverflow.com/questions/150446/how-do-i-detect-when-someone-shakes-an-iphone/671623#671623 3 Answer by Benjamin Ortuzar for How do I detect when someone shakes an iPhone? Benjamin Ortuzar 2009-03-22T21:15:52Z 2009-03-22T21:15:52Z <p>This is the basic delegate code you need:</p> <pre><code>#define kAccelerationThreshold 2.2 #pragma mark - #pragma mark UIAccelerometerDelegate Methods - (void)accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration { if (fabsf(acceleration.x) &gt; kAccelerationThreshold || fabsf(acceleration.y) &gt; kAccelerationThreshold || fabsf(acceleration.z) &gt; kAccelerationThreshold) [self myShakeMethodGoesHere]; } </code></pre> <p>Also set the in the appropriate code in the Interface. i.e:</p> <p>@interface MyViewController : UIViewController [UIPickerViewDelegate, UIPickerViewDataSource, UIAccelerometerDelegate] (replace my square brakes for &lt; >, stackoverflow thinks they are html markup and is hidding them)</p> http://stackoverflow.com/questions/642438/how-can-i-remove-the-null-character-from-string 1 How can I remove the NULL character from string Benjamin Ortuzar 2009-03-13T12:23:37Z 2009-03-13T12:43:58Z <p>I have a PHP variable that contains a string which represents an XML structure. This string contains ilegal characters that dont let me build a new SimpleXMLElement object from the string. I dont have a way to ask the source of the content to modify their response, so I need to execute some cleaning on this string before I create a SimpleXMLElement object. </p> <p>I believe the character causing the problem is a &#x0; (0x00 (00) HEX) character, and its located within one of the Text Nodes of this string XML.</p> <p>What is the best way to remove this character or other characters that could break the SimpleXMLElement object.</p> http://stackoverflow.com/questions/1582606/iphone-rotating-flipped-view-when-rotating-visible-view/1582876#1582876 Comment by Benjamin Ortuzar on iphone: rotating flipped view when rotating visible view. Benjamin Ortuzar 2009-10-17T20:14:51Z 2009-10-17T20:14:51Z I tried that but it didn't work. http://stackoverflow.com/questions/1582606/iphone-rotating-flipped-view-when-rotating-visible-view/1582876#1582876 Comment by Benjamin Ortuzar on iphone: rotating flipped view when rotating visible view. Benjamin Ortuzar 2009-10-17T18:52:57Z 2009-10-17T18:52:57Z What code are you referring to? http://stackoverflow.com/questions/1530284/multiple-sql-server-connection-strings-in-app-config-file/1530305#1530305 Comment by Benjamin Ortuzar on Multiple SQL Server connection strings in app.config file Benjamin Ortuzar 2009-10-07T08:46:27Z 2009-10-07T08:46:27Z how do I loop trough the childs of the &quot;connectionStrings&quot; element to get all the key value pairs? http://stackoverflow.com/questions/1530284/multiple-sql-server-connection-strings-in-app-config-file/1530309#1530309 Comment by Benjamin Ortuzar on Multiple SQL Server connection strings in app.config file Benjamin Ortuzar 2009-10-07T08:45:45Z 2009-10-07T08:45:45Z how do I loop trough the childs of the &quot;connectionStrings&quot; element to get all the key value pairs. http://stackoverflow.com/questions/1417381/oop-php5-calling-class-a-from-class-b-or-making-the-horse-jump/1417434#1417434 Comment by Benjamin Ortuzar on OOP/PHP5: Calling Class A from Class B - or, Making the horse jump Benjamin Ortuzar 2009-09-14T08:05:38Z 2009-09-14T08:05:38Z Design Patterns by Head First, is a fantastic book that will show you all this patterns in an easy to understand, fun and practical way. I would suggest it to anyone trying to improve their OO principles and learn some usefull design patterns. http://stackoverflow.com/questions/1333380/submitting-form-programmatically/1342810#1342810 Comment by Benjamin Ortuzar on submitting form programmatically Benjamin Ortuzar 2009-08-28T11:07:41Z 2009-08-28T11:07:41Z I saw you writting some articles on the scren-scrapper.com blog. I might give it a try eventually. http://stackoverflow.com/questions/1333380/submitting-form-programmatically/1333790#1333790 Comment by Benjamin Ortuzar on submitting form programmatically Benjamin Ortuzar 2009-08-26T10:54:49Z 2009-08-26T10:54:49Z Pike65: I was just looking into this. I have set oRequest.ServicePoint.Expect100Continue = false; This removes the line from the header, but still my issue remains :( http://stackoverflow.com/questions/1333380/submitting-form-programmatically/1333773#1333773 Comment by Benjamin Ortuzar on submitting form programmatically Benjamin Ortuzar 2009-08-26T10:52:18Z 2009-08-26T10:52:18Z I have tried with different UserAgents with no success. This appears not to be the issue. http://stackoverflow.com/questions/1333380/submitting-form-programmatically Comment by Benjamin Ortuzar on submitting form programmatically Benjamin Ortuzar 2009-08-26T09:58:59Z 2009-08-26T09:58:59Z I have been trying to figre this out with Fiddler. I will update the post with the RAW data of the request. http://stackoverflow.com/questions/612964/is-there-a-way-to-debug-iphone-while-running-leaks/614712#614712 Comment by Benjamin Ortuzar on Is there a way to debug (iPhone) while running Leaks? Benjamin Ortuzar 2009-05-17T13:16:37Z 2009-05-17T13:16:37Z In Xcode try: Run -&gt; Start With Performance Tool -&gt; Leaks http://stackoverflow.com/questions/840509/svn-update-is-not-updating/840518#840518 Comment by Benjamin Ortuzar on svn update is not updating!! Benjamin Ortuzar 2009-05-09T09:59:11Z 2009-05-09T09:59:11Z i thought it would be a good idea, so people could improve the answer. But now that i read the FAQ, it wont give me any reputation :( And I dont seem to be able to undo it :( Every day is a school day :) http://stackoverflow.com/questions/819633/uisegmentcontrol-problem/819642#819642 Comment by Benjamin Ortuzar on UISegmentControl problem Benjamin Ortuzar 2009-05-05T09:30:38Z 2009-05-05T09:30:38Z Can u add to the question the code that contains the Segmented Control?, maybe we are looking in the wrong place. http://stackoverflow.com/questions/788357/uipickerview-1st-row-selection-does-not-call-didselectrow/789633#789633 Comment by Benjamin Ortuzar on UIPickerView - 1st row selection does not call didSelectRow Benjamin Ortuzar 2009-04-26T10:37:05Z 2009-04-26T10:37:05Z I updated the answer. http://stackoverflow.com/questions/788357/uipickerview-1st-row-selection-does-not-call-didselectrow/789633#789633 Comment by Benjamin Ortuzar on UIPickerView - 1st row selection does not call didSelectRow Benjamin Ortuzar 2009-04-26T08:42:24Z 2009-04-26T08:42:24Z The UITextField class also provides a built-in button for clearing the current text. So if the user does not want that text he can discard it. myTextField.clearButtonMode = UITextFieldViewModeAlways; http://stackoverflow.com/questions/722728/google-appengine-date-range-not-returning-correct-results/723372#723372 Comment by Benjamin Ortuzar on Google AppEngine: Date Range not returning correct results Benjamin Ortuzar 2009-04-08T12:42:16Z 2009-04-08T12:42:16Z Fantastic script, i will give it a try tonight. Do you have the HTML that grabs the new_last_key_str from the json and put's it back in the url for a refresh?