User Jason - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T13:03:47Zhttp://stackoverflow.com/feeds/user/91632http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1798377/how-to-get-functionality-of-hidesaccessorywhenediting2How to get functionality of hidesAccessoryWhenEditingJason2009-11-25T16:59:40Z2009-11-25T17:02:05Z
<p>Since <code>hidesAccessoryWhenEditing</code> is depricated in the iPhone 3.0 SDK, what is the replacement? How do you get the same functionality?</p>
http://stackoverflow.com/questions/1784178/selecting-point-in-time-when-change-was-made/1784185#17841852Answer by Jason for selecting point in time when change was madeJason2009-11-23T16:14:14Z2009-11-23T21:08:52Z<pre><code>select ID, Name, Status, Date
from tableName
where ID in (
select min(ID)
from tableName
where Status = 'Quit'
)
</code></pre>
<p>This will get the first record that has the status of 'Quit' for each person. It is not necessarily the chronologically first record though. If that is what you're are looking for let me know. Also, if so, can you be sure there won't be any duplicated names; this could be problematic if there are two different John's or Joey's.</p>
http://stackoverflow.com/questions/1772668/1000-users-a-day-for-10-minutes-equal-what-concurrent-load/1772692#17726926Answer by Jason for 1000 users a day for 10 minutes equal what concurrent load?Jason2009-11-20T19:21:13Z2009-11-20T19:21:13Z<p>1000 users X 10 minutes = 10,000 user minutes</p>
<p>10,000 user minutes / 1440 minutes in a day = 6.944 average # of concurrent users</p>
<p>If you are looking for better estimates of concurrent users, I would suggest putting <a href="http://www.google.com/analytics/" rel="nofollow">google analytics</a> on your site. It would give you an accurate reading of highs, lows, and averages for your site. </p>
http://stackoverflow.com/questions/1771397/jquery-on-the-fly-url-shortener1jQuery on the fly URL shortenerJason2009-11-20T15:52:38Z2009-11-20T19:02:09Z
<p>I'm looking for an on the fly URL shortener much like how tweetdeck works. I have found many jQuery and general javascript plugins that take a url and run it through a shortening service such as bit.ly when a button is pressed. However, I have not been able to find one that does it on the fly. My first question is does this already exist someplace? Secondly, if it doesn't, then what would be the best way to recognize a URL that needs to be shortened inside a textbox? My thoughts:</p>
<ol>
<li>On onKeyUp of that text area run through the text looking for http</li>
<li>If found grab the whole URL (how do I determine the end? could be period, comma, space, etc...)</li>
<li>Make sure the URL isn't already a bit.ly URL</li>
<li>Validate the URL (make a request and make sure the http response is not an error, does bit.ly already do this?)</li>
<li>If valid, send the url to bit.ly's API and get the response</li>
<li>Replace the long URL with the short URL in the text area.</li>
</ol>
<p>Thoughts?</p>
http://stackoverflow.com/questions/1756748/best-coldfusion-library-for-openid3Best Coldfusion Library for OpenIDJason2009-11-18T15:24:09Z2009-11-18T20:59:55Z
<p>I am getting ready to start a project that requires using OpenID within Coldfusion 8. I have found a number of different options and was wondering what has worked the best, get's the most support, stays up to date, etc... </p>
<ul>
<li><a href="http://openid.riaforge.org/index.cfm" rel="nofollow">OpenID CFC</a></li>
<li><a href="http://www.indiankey.com/cfopenid/" rel="nofollow">CFOpenID</a></li>
<li><a href="http://cfkitopenid.riaforge.org/" rel="nofollow">CFKit OpenID</a></li>
</ul>
http://stackoverflow.com/questions/1758143/web-service-is-expecting-a-dataset-object-how-can-i-provide-that-via-coldfusion/1758197#1758197-1Answer by Jason for Web service is expecting a DataSet object, how can I provide that via ColdFusion or in raw XML?Jason2009-11-18T18:47:59Z2009-11-18T18:47:59Z<p>Could you use JSON? </p>
<p><a href="http://json.org/" rel="nofollow">http://json.org/</a></p>
http://stackoverflow.com/questions/1704030/building-excel-files-with-c2Building Excel Files with C#Jason2009-11-09T21:38:32Z2009-11-17T19:48:28Z
<p>I need to create an excel file via C#. I have read a few places that creating an XML document is the easiest way to do this? I need to have multiple named tabs and be able to specify that particular cells are text, date time, numeric, etc... Any suggestions or good examples?</p>
http://stackoverflow.com/questions/1689900/coldfusion-xmlformat-not-converting-all-characters3Coldfusion XMLFormat() not converting all charactersJason2009-11-06T19:44:01Z2009-11-11T21:35:30Z
<p>I am using XMLFormat() to encode some text for an XML document. However, when I go to read the XML file I created I get an invalid character error. Why does XMLFormat() not properly encode all characters?</p>
<p>I'm running CF8.</p>
http://stackoverflow.com/questions/1233608/how-can-i-create-a-variable-sized-uitableviewcell3How can I create a variable sized UITableViewCell?Jason2009-08-05T14:26:28Z2009-11-10T13:30:37Z
<p>I can't seem to get the text to actually span multiple lines. The heights look correct. What am I missing?</p>
<pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:@"StatusCell"] autorelease];
CGRect frame = cell.contentView.bounds;
UILabel *myLabel = [[UILabel alloc] initWithFrame:frame];
myLabel.text = [[person.updates objectAtIndex:indexPath.row] valueForKey:@"text"];
[cell.contentView addSubview:myLabel];
[myLabel release];
return cell;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
NSString *text = [[person.updates objectAtIndex:indexPath.row] valueForKey:@"text"];
UIFont *font = [UIFont systemFontOfSize:[UIFont systemFontSize]];
CGSize withinSize = CGSizeMake(tableView.frame.size.width, 1000);
CGSize size = [text sizeWithFont:font constrainedToSize:withinSize lineBreakMode:UILineBreakModeWordWrap];
return size.height + 20;
}
</code></pre>
<p>Also, what am I missing that makes the labels appear longer than the table cell?
<img src="http://i31.tinypic.com/15chnjd.gif" alt="alt text" /></p>
http://stackoverflow.com/questions/1675147/coldfusion-xml-formatting-a-string-returned-from-api-call/1676071#16760711Answer by Jason for Coldfusion - XML formatting a string returned from API callJason2009-11-04T19:32:36Z2009-11-04T19:32:36Z<p>This seems to be a pretty good function to remove extended characters and replace them with their HTML equivalent. </p>
<p><a href="http://www.petefreitag.com/item/202.cfm" rel="nofollow">http://www.petefreitag.com/item/202.cfm</a></p>
http://stackoverflow.com/questions/1639361/uibutton-inside-uitableviewcontroller1UIButton inside UITableViewControllerJason2009-10-28T18:59:19Z2009-10-28T19:57:14Z
<p>I have a <code>UIButton</code> that is created inside of each table cell. I want to hook up a touch event like so:</p>
<pre><code>[imageButton addTarget:self
action:@selector(startVote:)
forControlEvents:UIControlEventTouchUpInside];
</code></pre>
<p>I want to pass data about the current row (the id of the object for that row) to the startVote method. Is there a method that I am missing to do this or am I breaking some best practice. This seems like a very normal thing to do?</p>
http://stackoverflow.com/questions/1596231/casting-in-objective-c0Casting in objective-cJason2009-10-20T17:47:19Z2009-10-20T21:00:55Z
<p>I have a dictionary object that I am pulling data out of. The field is supposed to be a string field but sometime all that it contains is a number. I get the info using:</p>
<pre><code>NSString *post = [[temp objectAtIndex:i] valueForKey:@"POSTDESCRIPTION"];
</code></pre>
<p>So it is going into a string object. However, when I try to assign that to a cell's text via:</p>
<pre><code>cell.textLabel.text = post;
</code></pre>
<p>I get a the following error:</p>
<pre><code>'NSInvalidArgumentException', reason: '*** -[NSDecimalNumber isEqualToString:]: unrecognized selector sent to instance 0x4106a80'
2009-10-20 13:33:46.563
</code></pre>
<p>I have tried casting it with the following ways to no avail:</p>
<pre><code>NSString *post = [[[temp objectAtIndex:i] valueForKey:@"POSTDESCRIPTION"] stringValue];
NSString *post = (NSString *)[[temp objectAtIndex:i] valueForKey:@"POSTDESCRIPTION"];
cell.textLabel.text = [post stringValue];
cell.textLabel.text = (NSSting *)post;
</code></pre>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/1590294/uitableviewcontroller-problems1UITableViewController problemsJason2009-10-19T18:26:26Z2009-10-20T15:37:17Z
<p>I have a nib that contains two TableViews. The table views are of the same class that I have created that is a subclass of a UITableViewController. I believe that everything is hooked up correctly. However, when I set the UITableView to the UITableViewController then run </p>
<pre><code>[uitableviewcontrollervariablename reloadData];
</code></pre>
<p>I first get a warning that the class may not respond to reloadData. I thought all UITableViewControllers had a reloadData class? </p>
<p>I am trying to hook up these items incorrectly?</p>
<p><strong>Update with code:</strong>
TopicViewController.h</p>
<pre><code>@interface TopicViewController : UIViewController {
NSInteger topicID;
Topic *topic;
IBOutlet ThoughtTableViewController *featured;
}
@property (retain) Topic *topic;
@property (readonly) NSInteger topicID;
@property (retain) IBOutlet ThoughtTableViewController *featured;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil ID:(NSInteger)ID;
@end
</code></pre>
<p>TopicViewController.m</p>
<pre><code>@implementation TopicViewController
@synthesize topic;
@synthesize topicID;
@synthesize featured;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil ID:(NSInteger)ID {
if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
topicID = ID;
}
return self;
}
- (void)dealloc {
[topic release];
[super dealloc];
}
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
topic = [[Topic alloc] initWithID:topicID];
NSArray *thoughts = [topic getFeaturedThoughts];
featured = [[ThoughtTableViewController alloc] initWithStyle:UITableViewStylePlain thoughts:thoughts];
[self.featured.tableView reloadData];
}
@end
</code></pre>
http://stackoverflow.com/questions/1126919/how-can-i-speed-up-batch-processing-job-in-coldfusion3How can I speed up batch processing job in Coldfusion?Jason2009-07-14T17:43:07Z2009-10-19T18:39:31Z
<p>Every once in awhile I am fed a large data file that my client uploads and that needs to be processed through CMFL. The problem is that if I put the processing on a CF page, then it runs into a timeout issue after 120 seconds. I was able to move the processing code to a CFC where it seems to not have the timeout issue. However, sometime during the processing, it causes ColdFusion to crash and has to restarted. There are a number of database queries (5 or more, mixture of updates and selects) required for each line (8,000+) of the file I go through as well as other logic provided by me in the form of CFML. </p>
<p>My question is what would be the best way to go through this file. One caveat, I am not able to move the file to the database server and process it entirely with the DB. However, would it be more efficient to pass each line to a stored procedure that took care of everything? It would still be a lot of calls to the database, but nothing compared to what I have now. Also, what would be the best way to provide feedback to the user about how much of the file has been processed?</p>
<p>Edit:
I'm running CF 6.1</p>
http://stackoverflow.com/questions/1572653/valueforkey-only-returns-memory-address-and-not-actually-value0valueForKey only returns memory address and not actually valueJason2009-10-15T14:16:12Z2009-10-15T15:17:58Z
<pre><code> NSDictionary *topic = [spaces objectAtIndex:i];
NSInteger topicid = [topic valueForKey:@"TOPICID"];
</code></pre>
<p>when I run this and print out topic I get the following:</p>
<pre><code>Printing description of topic:
<CFDictionary 0xdb2a70 [0x30307a00]>{type = mutable, count = 2, capacity = 12, pairs = (
10 : <CFString 0xdb5300 [0x30307a00]>{contents = "TOPICID"} = 29
12 : <CFString 0xdb53a0 [0x30307a00]>{contents = "TOPICNAME"} = <CFString 0xdb5360 [0x30307a00]>{contents = "zzzzzzzz"}
)}
</code></pre>
<p>However, when I look at topicid, the value is always a memory address. What am I doing wrong?</p>
http://stackoverflow.com/questions/1567827/how-do-i-consume-a-web-service-in-objective-c1How do I consume a web service in objective c?Jason2009-10-14T17:36:34Z2009-10-14T21:27:20Z
<p>I have a web service developed in coldfusion that I am trying to consume on the iphone. The web service returns JSON which should be fairly simple to read. However, I have been unable to find a good simple example of an iphone app calling a web service and using the data. Are there any good tutorials or examples out there that I am just missing?</p>
http://stackoverflow.com/questions/1401278/why-is-this-line-leaking-memory3Why is this line leaking memory?Jason2009-09-09T18:26:12Z2009-10-13T17:43:08Z
<p>Any ideas why the line below would be leaking memory?</p>
<pre><code>cell.imageView.image = [UIImage imageWithData:[NSData dataWithContentsOfURL:person.imageURL]];
</code></pre>
<p>within the cellForRowAtIndexPath method:</p>
<pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"PersonCell"];
if (cell == nil){
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:@"PersonCell"] autorelease];
}
Person *person = [[Person alloc] initWithUserName:[people objectAtIndex:indexPath.row]];
cell.imageView.image = [UIImage imageWithData:[NSData dataWithContentsOfURL:person.imageURL]];
cell.textLabel.text = [people objectAtIndex:indexPath.row];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
[person release];
return cell;
}
</code></pre>
<p>And here is the relevant method from person.m</p>
<pre><code>- (NSURL*) imageURL
{
return [NSURL URLWithString:[userInfo valueForKey:@"profile_image_url"]];
}
</code></pre>
<p>EDIT: added init method:</p>
<pre><code>- (id)initWithUserName:(NSString *)user{
userName = [user copy];
userInfo = [[TwitterHelper fetchInfoForUsername:userName] retain];
updates = [[TwitterHelper fetchTimelineForUsername:userName] retain];
return self;
}
</code></pre>
http://stackoverflow.com/questions/1554646/where-can-i-find-custom-uitabbarsystemitem-icons3Where can I find custom UITabBarSystemItem icons?Jason2009-10-12T13:39:23Z2009-10-12T16:11:08Z
<p>Is there a resource out there some place that has custom UITabBarSystemItem icons that others can use. I know you get some from Apple to start, but I would imagine there are a lot more that are very common. I don't see a reason for each person to recreate the wheel for things like home, settings, etc... </p>
http://stackoverflow.com/questions/1554954/help-needed-using-apple-keychain0Help needed using Apple Keychain.Jason2009-10-12T14:38:57Z2009-10-12T15:58:16Z
<p>I am using trying to utilize some code found <a href="http://github.com/ldandersen/scifihifi-iphone/tree/master/security" rel="nofollow">here</a> to store and retrieve username and password. However, when I add the class (SFHFKeychainUtils) I get the following errors:</p>
<pre><code> "_kSecAttrAccount", referenced from:
_kSecAttrAccount$non_lazy_ptr in SFHFKeychainUtils.o
"_SecItemDelete", referenced from:
+[SFHFKeychainUtils deleteItemForUsername:andServiceName:error:] in SFHFKeychainUtils.o
"_kSecReturnAttributes", referenced from:
_kSecReturnAttributes$non_lazy_ptr in SFHFKeychainUtils.o
"_kSecClass", referenced from:
_kSecClass$non_lazy_ptr in SFHFKeychainUtils.o
"_kSecClassGenericPassword", referenced from:
_kSecClassGenericPassword$non_lazy_ptr in SFHFKeychainUtils.o
"_SecItemAdd", referenced from:
+[SFHFKeychainUtils storeUsername:andPassword:forServiceName:updateExisting:error:] in SFHFKeychainUtils.o
"_kSecAttrLabel", referenced from:
_kSecAttrLabel$non_lazy_ptr in SFHFKeychainUtils.o
"_SecItemUpdate", referenced from:
+[SFHFKeychainUtils storeUsername:andPassword:forServiceName:updateExisting:error:] in SFHFKeychainUtils.o
"_kSecAttrService", referenced from:
_kSecAttrService$non_lazy_ptr in SFHFKeychainUtils.o
"_kSecReturnData", referenced from:
_kSecReturnData$non_lazy_ptr in SFHFKeychainUtils.o
"_SecItemCopyMatching", referenced from:
+[SFHFKeychainUtils getPasswordForUsername:andServiceName:error:] in SFHFKeychainUtils.o
+[SFHFKeychainUtils getPasswordForUsername:andServiceName:error:] in SFHFKeychainUtils.o
"_kSecValueData", referenced from:
_kSecValueData$non_lazy_ptr in SFHFKeychainUtils.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
</code></pre>
<p>Any ideas on what I'm leaving out? When I click the errors, it doesn't take me to any place in the code?</p>
http://stackoverflow.com/questions/1538031/what-is-the-best-practice-to-store-username-and-password-on-the-iphone5What is the best practice to store username and password on the iPhone?Jason2009-10-08T14:06:11Z2009-10-08T15:03:08Z
<p>Is there a best practice way to store username and password on the iPhone? I am looking for something that is obviously secure but will also keep the info between app updates.</p>
http://stackoverflow.com/questions/927526/find-size-of-multiple-databases-in-sql-server-20053Find size of multiple databases in SQL Server 2005Jason2009-05-29T18:46:50Z2009-09-23T12:24:41Z
<p>I was wondering if there is a sql statement to get the current size of all the databases on your server instead of right clicking and going to properties for each one. </p>
http://stackoverflow.com/questions/1070354/how-do-i-get-the-current-date-in-cocoa1How do I get the current date in CocoaJason2009-07-01T17:25:18Z2009-09-22T19:26:15Z
<p>I'm getting started developing for the iPhone and as such I am looking at different tutorials online as well as trying some different things out myself. Currently, I'm trying to create a countdown until midnight. To get the number of hour, minutes, and seconds, I do the following (which I found somewhere):</p>
<pre><code>NSDate* now = [NSDate date];
int hour = 23 - [[now dateWithCalendarFormat:nil timeZone:nil] hourOfDay];
int min = 59 - [[now dateWithCalendarFormat:nil timeZone:nil] minuteOfHour];
int sec = 59 - [[now dateWithCalendarFormat:nil timeZone:nil] secondOfMinute];
countdownLabel.text = [NSString stringWithFormat:@"%02d:%02d:%02d", hour, min,sec];
</code></pre>
<p>However, each place I use <code>-dateWithCalendarFormat:timeZone:</code> I get the following error:</p>
<pre><code>warning: 'NSDate' may not respond to '-dateWithCalendarFormat:timeZone:'
(Messages without a matching method signature will be assumed to return 'id' and accept '...' as arguments.)
warning: no '-hourOfDay' method found
error: invalid operands to binary - (have 'int' and 'id')
</code></pre>
<p>This seems like something very simple. What am I missing?</p>
<p>Also, I've noticed at different places and at different times the asterisk (*) is located either right after the time <code>NSDate* now</code> or right before the variable <code>NSDate *now</code>. What is the difference in the two and why would you use one versus the other? </p>
http://stackoverflow.com/questions/1127513/how-to-help-users-get-a-better-browsing-experience2How to help users get a better browsing experience?Jason2009-07-14T19:35:02Z2009-09-20T19:43:52Z
<p>As I found out today, it looks like <a href="http://www.techcrunch.com/2009/07/14/youtube-will-be-next-to-kiss-ie6-support-goodbye/" rel="nofollow">YouTube is going to stop supporting IE6</a> pretty soon. </p>
<p>This begs the question, should we, as applications builders, be the ones that are helping our users to get a better Internet experience?</p>
<p>Should we, like Google, provide messages to users with outdated browsers? </p>
<p>Should we be explaining to them what the advantages are to upgrading?</p>
<p>I understand we cannot force them to do anything and it would be tough to decide what makes something out of date. However, it seems that this would be a two-fold win. We get to develop better applications for newer browsers and we don't have to spend so much time making new and exciting things work in older crappy browsers.</p>
<p>Are there any other big name sites already doing this?</p>
http://stackoverflow.com/questions/1446015/cant-find-the-example-projects-from-stanford-cs193p1Can't find the example projects from Stanford cs193pJason2009-09-18T17:57:49Z2009-09-18T18:23:13Z
<p>I am looking for the Flickr multithreaded example application that is used in lecture 10 "Performance and Threading". He does a few things that I would like to look at. The particular files I'm looking for are ImageLoadingOperation.h and MyTableViewController.m? Does anybody know if they exist somewhere out there and I just missed it? If they don't exist, does anybody know where some good examples of using NSInvocationOperation and creating a class to do loading of images in a threaded manner?</p>
http://stackoverflow.com/questions/1432291/clearing-the-cache-in-coldfusion-production-server/1433430#14334301Answer by Jason for Clearing the Cache in Coldfusion Production serverJason2009-09-16T14:42:06Z2009-09-16T14:42:06Z<p>I would suggest doing it in development and seeing if anything adverse happens. That is what a good development (or better yet QA) environment is for.</p>
http://stackoverflow.com/questions/1418878/element-recordcount-is-undefined-in-yyreslt/1421444#14214442Answer by Jason for Element RECORDCOUNT is undefined in "yyReslt"Jason2009-09-14T13:08:17Z2009-09-14T14:46:03Z<p>Are there any conditionals around the cfquery? Are you sure it is being ran? You should turn on debugging for your IP address to make sure the query is running. </p>
<p>Also, you would get a different error if the connection timed out.</p>
http://stackoverflow.com/questions/1359331/why-does-coldfusion-not-send-any-email-if-only-one-of-them-is-invalid1Why does Coldfusion not send any email if only one of them is invalid?Jason2009-08-31T20:45:37Z2009-09-01T16:06:58Z
<p>I have a cfmail sending out to approxiamately 8 people (dynamically). One of these addresses is incorrect and therefore the whole email is not sent out. Is there any settings in the coldfusion administrator or in the cfmail tag where this can be changed so it will send to the 7 correct people and only fail for the one person. I'm using CF8.</p>
http://stackoverflow.com/questions/756127/building-pdf-files-with-c14Building PDF Files with C#Jason2009-04-16T13:30:13Z2009-08-25T08:12:40Z
<p>Does anyone have experience using the following libraries (or others) to build PDF files in C#? Which have you found to be the easiest and most straightforward? What I would like to do is push some HTML into a library and have it spit out a PDF. Any help would be appreciated.</p>
<ul>
<li><a href="http://sourceforge.net/projects/itextsharp/" rel="nofollow">iTextSharp</a></li>
<li><a href="http://www.quickpdflibrary.com/" rel="nofollow">QuickPDF Library</a></li>
<li><a href="http://www.dynamicpdf.com/" rel="nofollow">DynamicPDF</a></li>
<li><a href="http://www.tallcomponents.com/" rel="nofollow">TallPDF</a></li>
<li><a href="http://www.html-to-pdf.net/" rel="nofollow">ExpertPDF</a></li>
<li><a href="http://www.websupergoo.com/abcpdf-1.htm/" rel="nofollow">ABCpdf</a></li>
<li><a href="http://www.activepdf.com/products/serverproducts/webgrabber/" rel="nofollow">activePDF Webgrabber</a></li>
</ul>
http://stackoverflow.com/questions/1260754/why-isnt-the-default-for-cflocation-addtoken-equal-to-no5Why isn't the default for cflocation addtoken equal to no?Jason2009-08-11T14:31:52Z2009-08-19T17:16:54Z
<p>Is there any good reason why the default for this tag would be yes? It seems to be that it should almost always be no. I am missing something? </p>
http://stackoverflow.com/questions/1294523/is-there-an-objective-c-library-to-talk-with-a-cas-server0Is there an objective-C library to talk with a CAS serverJason2009-08-18T15:12:26Z2009-08-18T15:12:26Z
<p>Is there a library already created to talk with an CAS server via objective-c? I know there are many supported <a href="http://www.jasig.org/cas/client-integration/other-clients" rel="nofollow">clients</a> but have yet to find anything I can use on the iPhone.</p>
http://stackoverflow.com/questions/1784178/selecting-point-in-time-when-change-was-made/1784185#1784185Comment by Jason on selecting point in time when change was madeJason2009-11-23T20:44:20Z2009-11-23T20:44:20Zthe one with the earliest date?http://stackoverflow.com/questions/1784178/selecting-point-in-time-when-change-was-made/1784185#1784185Comment by Jason on selecting point in time when change was madeJason2009-11-23T16:50:16Z2009-11-23T16:50:16ZThe dates don't match up? Do you want the date they last listed as working or the date that goes along with when they quit? In your results you have john's date as the quit date, and joey's date as the record before they quit (not even the latest date chronologically). Please explain further what you would like.http://stackoverflow.com/questions/1771397/jquery-on-the-fly-url-shortenerComment by Jason on jQuery on the fly URL shortenerJason2009-11-20T20:52:53Z2009-11-20T20:52:53Zearcar where are you finding the min lengths for different services?http://stackoverflow.com/questions/1772668/1000-users-a-day-for-10-minutes-equal-what-concurrent-load/1772692#1772692Comment by Jason on 1000 users a day for 10 minutes equal what concurrent load?Jason2009-11-20T19:35:55Z2009-11-20T19:35:55ZSo it's usage is worldwide, 24/7 ? If so, then I think you would have <i>less</i> highs and lows and as such the number would be closer to 7 as the math dictates. However, I would still suggest using google analytics to get some better more concrete numbers. Also, if the user group is only in one area of the world then you would have say, 16 hour day X 60 min = 960 min/day
then 10,000 / 960 = 10.41 concurrent usershttp://stackoverflow.com/questions/1772668/1000-users-a-day-for-10-minutes-equal-what-concurrent-load/1772692#1772692Comment by Jason on 1000 users a day for 10 minutes equal what concurrent load?Jason2009-11-20T19:24:09Z2009-11-20T19:24:09Zagreed, but with the information given there is not a whole lot more to go on.http://stackoverflow.com/questions/1771397/jquery-on-the-fly-url-shortener/1771534#1771534Comment by Jason on jQuery on the fly URL shortenerJason2009-11-20T19:06:49Z2009-11-20T19:06:49Zthe post has a max length and shortening on the fly gives them more characters to make their posthttp://stackoverflow.com/questions/1771397/jquery-on-the-fly-url-shortener/1772598#1772598Comment by Jason on jQuery on the fly URL shortenerJason2009-11-20T19:04:37Z2009-11-20T19:04:37Zthe problem is that they can only have X number of characters in their post and shortening their URL on the fly gives them extra charactershttp://stackoverflow.com/questions/1756748/best-coldfusion-library-for-openid/1759044#1759044Comment by Jason on Best Coldfusion Library for OpenIDJason2009-11-19T16:19:31Z2009-11-19T16:19:31ZAfter adding the project and running it as a test, I select to log in to Google. After authenticating with Google, I get sent to a page on Google that says "The page you requested is invalid." Any ideas?http://stackoverflow.com/questions/1756748/best-coldfusion-library-for-openid/1759044#1759044Comment by Jason on Best Coldfusion Library for OpenIDJason2009-11-19T16:01:41Z2009-11-19T16:01:41ZI see where I can download an example project. However, is there some kind of walk through someplace that explains what needs to be changed/updated as looking through the code it isn't very intuitive.http://stackoverflow.com/questions/1749665/cfquery-oracle-stored-procedureComment by Jason on cfquery oracle stored procedureJason2009-11-17T15:56:00Z2009-11-17T15:56:00ZCould you post your <cfquery>? It's hard to determine the issue without the code.http://stackoverflow.com/questions/1740829/strange-mysql-coldfusion-problemComment by Jason on Strange mySQL Coldfusion ProblemJason2009-11-16T15:00:56Z2009-11-16T15:00:56ZI would agree, that error is very cryptichttp://stackoverflow.com/questions/1689900/coldfusion-xmlformat-not-converting-all-charactersComment by Jason on Coldfusion XMLFormat() not converting all charactersJason2009-11-06T21:06:06Z2009-11-06T21:06:06Zwhen I convert the "bad" character to unicode it becomes &#8217;http://stackoverflow.com/questions/1689900/coldfusion-xmlformat-not-converting-all-characters/1690262#1690262Comment by Jason on Coldfusion XMLFormat() not converting all charactersJason2009-11-06T20:58:05Z2009-11-06T20:58:05ZI'm trying to use cfheader and cfcontent to serve the xml document as an actual xml document.http://stackoverflow.com/questions/1029707/iphone-how-to-determine-in-which-cell-a-button-was-pressed-in-a-custom-uitablev/1029748#1029748Comment by Jason on iPhone - How to determine in which cell a button was pressed in a custom UITableViewCellJason2009-11-03T15:58:22Z2009-11-03T15:58:22ZYes, that is the best method.http://stackoverflow.com/questions/1639361/uibutton-inside-uitableviewcontroller/1639454#1639454Comment by Jason on UIButton inside UITableViewControllerJason2009-10-28T19:23:33Z2009-10-28T19:23:33ZThe row will not be selected. When the button is tapped, the row does not get selected.