User bbrown - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T02:14:12Zhttp://stackoverflow.com/feeds/user/20595http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1350626/can-i-use-red-green-text-colors-to-provide-additional-information/1350635#13506350Answer by bbrown for Can i use red/green text colors to provide additional information?bbrown2009-08-29T06:18:55Z2009-08-29T06:18:55Z<p>Could you maybe use <strong>bold</strong>/not bold/<span style="color:silver">grayed out<span> instead? (Sorry couldn't make the text silver colored.)</p>
http://stackoverflow.com/questions/1224537/why-is-visual-sourcesafe-viewed-so-poorly/1224564#122456410Answer by bbrown for Why is Visual SourceSafe viewed so poorly?bbrown2009-08-03T20:51:45Z2009-08-03T20:51:45Z<p>The big one that I've experienced personally is <a href="http://www.developsense.com/testing/VSSDefects.html" rel="nofollow">database corruption</a>. It happens and it is painful. Aside from that, it's pretty slow compared to more modern SCMs.</p>
<p>If I were you, I'd recommend moving to at least TFS. The integration with VisualStudio is just as tight, it is much speedier, and the idiom is pretty much the same. I've had no problems with it in the 4 years I've been using it. Perforce is expensive and that's probably not something to toss around in an interview.</p>
http://stackoverflow.com/questions/839499/what-are-different-padding-modes-and-cipher-modes-in-iphone-for-aes-encryption/1204507#12045073Answer by bbrown for What are different padding modes and cipher modes in IPhone for AES encryption?bbrown2009-07-30T04:52:55Z2009-07-30T04:52:55Z<p>There are two padding modes--PKCS #7 and none--and two corresponding cipher modes--CBC and ECB. If you specify <code>kCCOptionPKCS7Padding</code> then you get CBC and if you specify <code>kCCOptionECBMode</code> then there's no padding and you get ECB. The default is CBC, according the <a href="http://www.opensource.apple.com/source/CommonCrypto/CommonCrypto-32207/CommonCrypto/CommonCryptor.h" rel="nofollow">CommonCrypto header</a>.</p>
http://stackoverflow.com/questions/1189518/clang-error-on-potential-null-dereference0Clang Error on "Potential null dereference."bbrown2009-07-27T17:28:13Z2009-07-27T17:56:21Z
<p>I keep getting Clang errors on the following type of code and I can't figure out why they're erroneous or how to resolve them to Clang's satisfaction:</p>
<pre><code>+ (NSString *)checkForLength:(NSString *)theString error:(NSError **)error
{
BOOL hasLength = ([theString length] > 0);
if (hasLength)
{
return theString;
}
else
{
*error = [NSError errorWithDomain:@"ErrorDomain" code:hasLength userInfo:nil];
return nil;
}
}
</code></pre>
<p>Leaving aside the utterly-contrived nature of the example (which Clang did object to so it's illustrative enough), Clang balks at the error assignment line with the following objection: <code>"Potential null dereference. According to coding standards in 'Creating and Returning NSError Objects' the parameter 'error' may be null"</code></p>
<p>I like having a pristine Clang report. I've read the cited document and I can't see a way to do what's expected; I checked some open-source Cocoa libraries and this seems to be a common idiom. Any ideas?</p>
http://stackoverflow.com/questions/1133724/having-trouble-decrypting-in-c-something-encrypted-on-iphone-using-rsa6Having trouble decrypting in C# something encrypted on iPhone using RSAbbrown2009-07-15T20:16:13Z2009-07-20T20:12:32Z
<p>I've spent two days on this so far and combed through every source at my disposal, so this is the last resort.</p>
<p>I have an X509 certificate whose public key I have stored in the iPhone's keychain (simulator only at this point). On the ASP.NET side, I've got the certificate in the cert store with a private key. When I encrypt a string on the iPhone and decrypt it on the server, I get a <code>CryptographicException</code> "Bad data." I tried the <code>Array.Reverse</code> suggested in the <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.rsacryptoserviceprovider.aspx" rel="nofollow"><code>RSACryptoServiceProvider</code></a> page on a longshot, but it did not help.</p>
<p>I have compared the base-64 strings on both sides and they're equal. I've compared the raw byte arrays after decoding and they too are equal. If I encrypt on the server using the public key, the byte array is different from the iPhone's version and readily decrypts using the private key. The raw plaintext string is 115 characters so it's within the 256-byte limitation of my 2048-bit key.</p>
<p>Here's the iPhone encryption method (pretty much verbatim from the <a href="http://developer.apple.com/iphone/library/samplecode/CryptoExercise/listing15.html" rel="nofollow">CryptoExercise sample app</a>'s <code>wrapSymmetricKey</code> method):</p>
<pre><code>+ (NSData *)encrypt:(NSString *)plainText usingKey:(SecKeyRef)key error:(NSError **)err
{
size_t cipherBufferSize = SecKeyGetBlockSize(key);
uint8_t *cipherBuffer = NULL;
cipherBuffer = malloc(cipherBufferSize * sizeof(uint8_t));
memset((void *)cipherBuffer, 0x0, cipherBufferSize);
NSData *plainTextBytes = [plainText dataUsingEncoding:NSUTF8StringEncoding];
OSStatus status = SecKeyEncrypt(key, kSecPaddingNone,
(const uint8_t *)[plainTextBytes bytes],
[plainTextBytes length], cipherBuffer,
&cipherBufferSize);
if (status == noErr)
{
NSData *encryptedBytes = [[[NSData alloc]
initWithBytes:(const void *)cipherBuffer
length:cipherBufferSize] autorelease];
if (cipherBuffer)
{
free(cipherBuffer);
}
NSLog(@"Encrypted text (%d bytes): %@",
[encryptedBytes length], [encryptedBytes description]);
return encryptedBytes;
}
else
{
*err = [NSError errorWithDomain:@"errorDomain" code:status userInfo:nil];
NSLog(@"encrypt:usingKey: Error: %d", status);
return nil;
}
}
</code></pre>
<p>And here's the server-side C# decryption method:</p>
<pre><code>private string Decrypt(string cipherText)
{
if (clientCert == null)
{
// Get certificate
var store = new X509Store(StoreName.My, StoreLocation.LocalMachine);
store.Open(OpenFlags.ReadOnly);
foreach (var certificate in store.Certificates)
{
if (certificate.GetNameInfo(X509NameType.SimpleName, false) == CERT)
{
clientCert = certificate;
break;
}
}
}
using (var rsa = (RSACryptoServiceProvider)clientCert.PrivateKey)
{
try
{
var encryptedBytes = Convert.FromBase64String(cipherText);
var decryptedBytes = rsa.Decrypt(encryptedBytes, false);
var plaintext = Encoding.UTF8.GetString(decryptedBytes);
return plaintext;
}
catch (CryptographicException e)
{
throw(new ApplicationException("Unable to decrypt payload.", e));
}
}
}
</code></pre>
<p>My suspicion was that there was some encoding problems between the platforms. <strike>I know that one is big-endian and the other is little-endian but I don't know enough to say which is which or how to overcome the difference.</strike> Mac OS X, Windows, and the iPhone are all little-endian so that's not the problem.</p>
<p><strike>New theory: if you set the OAEP padding Boolean to false, it defaults to PKCS#1 1.5 padding. <code>SecKey</code> only has <code>SecPadding</code> definitions of <code>PKCS1</code>, <code>PKCS1MD2</code>, <code>PKCS1MD5</code>, and <code>PKCS1SHA1</code>. Perhaps Microsoft's PKCS#1 1.5 != Apple's PKCS1 and so the padding is affecting the binary output of the encryption. I tried using <code>kSecPaddingPKCS1</code> with the <code>fOAEP</code> set to <code>false</code>and it still didn't work.</strike> Apparently, <code>kSecPaddingPKCS1</code> is <a href="http://lists.apple.com/archives/Apple-cdsa/2009/Jul/msg00027.html" rel="nofollow">equivalent</a> to PKCS#1 1.5. Back to the drawing board on theories…</p>
<p>Other newly-tried theories:</p>
<ol>
<li>Certificate on iPhone (.cer file) is not exactly the same as the PKCS#12 bundle on the server (.pfx file) and so it could never work. Installed .cer file in different cert store and server-encrypted string roundtripped just fine;
</li>
<li>Conversion to base-64 and act of POSTing to server resulted in oddness that wasn't present in same class roundtrip so I first tried some URLEncoding/Decoding and then posted raw binary from iPhone, verified that it was equal, and got same bad data;
</li>
<li>My original string was 125 bytes so I thought it might be truncating in UTF-8 (long shot) so I cropped it down to a 44-byte string with no result;
</li>
<li>Looked back over the System.Cryptography library to make sure I was using an appropriate class and discovered `RSAPKCS1KeyExchangeDeformatter`, became elated at new prospects, and dejected when it behaved exactly the same.
</li>
</ol>
<p><strong>Success!</strong></p>
<p>It turned out that I had some cruft in my Keychain on the iPhone Simulator that was muddying the waters, so to speak. I deleted the Keychain DB at <code>~/Library/Application Support/iPhone Simulator/User/Library/Keychains/keychain-2-debug.db</code> to cause it to be re-created and it worked fine. Thank you for all of your help. Figures it would have been something simple but non-obvious. (Two things I learned: 1) uninstalling the app from the simulator does not clear its Keychain entries and 2) start absolutely fresh periodically.)</p>
http://stackoverflow.com/questions/1118479/best-practice-to-detect-iphone-app-only-access-for-web-services/1122061#11220610Answer by bbrown for Best practice to detect iPhone app only access for web services?bbrown2009-07-13T21:05:56Z2009-07-13T21:05:56Z<p>I asked an Apple security engineer about this at WWDC and he said that there is no unassailable way to accomplish this. The best you can do is to make it not worth the effort involved.</p>
<p>I also asked him about possibly using push notifications as a means of doing this and he thought it was a very good idea. The basic idea is that the first access would trigger a push notification in your server that would be sent to the user's iPhone. Since your application is open, it would call into the <code>application:didReceiveRemoteNotification:</code> method and deliver a payload of your own choosing. If you make that payload a nonce, then your application can send the nonce on the next request and you've completed the circle.</p>
<p>You can store the UDID after that and discard any requests bearing unverified UDIDs. As far as brute-force guessing of necessary parameters, you should be implementing a rate-limiting algorithm no matter what.</p>
http://stackoverflow.com/questions/1095370/where-how-can-i-get-inspiration-to-continue-coding-after-doing-so-for-long-hour/1095412#10954120Answer by bbrown for Where / How can I get inspiration to continue coding after doing so for long hours?bbrown2009-07-07T23:44:20Z2009-07-07T23:44:20Z<p>Three words: Diet Mountain Dew</p>
http://stackoverflow.com/questions/1089327/what-programming-practice-that-you-once-liked-have-you-since-changed-your-mind-ab/1093597#109359717Answer by bbrown for What programming practice that you once liked have you since changed your mind about?bbrown2009-07-07T17:16:42Z2009-07-07T17:16:42Z<p>Commenting out code. I used to think that code was precious and that you can't just delete those beautiful gems that you crafted. I now delete any commented-out code I come across unless there's a TODO or NOTE attached because it's too perilous to leave it in. To wit, I've come across old classes with huge commented-out portions and it really confused me why they were there: were they recently commented out? is this a dev environment change? why does it do this unrelated block?</p>
<p>Seriously consider not commenting out code and just deleting it instead. If you need it, it's still in source control. YAGNI though.</p>
http://stackoverflow.com/questions/601074/objective-c-message-sent-to-deallocated-instance-0x5633b0/1089335#10893350Answer by bbrown for Objective-C "message sent to deallocated instance 0x5633b0"bbrown2009-07-06T21:38:18Z2009-07-06T21:38:18Z<p>In the debugger, type <code>info symbol 0x5633b0</code> and you'll get some indication as to what object it is. One other thing that might be helpful is <code>backtrace</code> which will give you a stack trace. All in all, <a href="http://cocoawithlove.com/2008/10/debugging-tips-for-objective-c.html" rel="nofollow">this blog entry</a> has some <strong>great</strong> tips.</p>
http://stackoverflow.com/questions/950769/how-to-refresh-uitableviewcell/1077053#10770530Answer by bbrown for How to refresh UITableViewCell?bbrown2009-07-02T22:46:22Z2009-07-02T22:46:22Z<p>In your custom UITableViewCell, call <code>[self setNeedsLayout];</code> and it should repaint your cell at the next loop. I use it for asynchronous image loading since I'm pulling the image from the Web and it works swell.</p>
http://stackoverflow.com/questions/1041809/refreshing-the-uitableview-from-uitableviewcell/1077013#10770130Answer by bbrown for Refreshing the UITableView from UITableViewCellbbrown2009-07-02T22:40:19Z2009-07-02T22:40:19Z<p>I did the exact thing that you're trying to do. The thing you're looking for is <code>needsLayout</code>. To wit (this is a notification observer on my UITableViewCell subclass):</p>
<pre><code>- (void)reloadImage:(NSNotification *)notification
{
UIImage *image = [[SSImageManager sharedImageManager] getImage:[[notification userInfo] objectForKey:@"imageUrl"];
[self setImage:image];
[self setNeedsLayout];
}
</code></pre>
<p>This will pop in your image without having to reload the entire table, which can get very expensive.</p>
http://stackoverflow.com/questions/1065839/unfamiliar-c-syntax-in-objective-c-context1Unfamiliar C syntax in Objective-C contextbbrown2009-06-30T20:23:59Z2009-07-01T04:39:11Z
<p>I am coming to Objective-C from C# without any intermediate knowledge of C. (Yes, yes, I will need to learn C at some point and I fully intend to.) In Apple's <a href="http://developer.apple.com/documentation/security/conceptual/CertKeyTrustProgGuide/iPhone%5FTasks/iPhone%5FTasks.html#//apple%5Fref/doc/uid/TP40001358-CH208-SW9" rel="nofollow">Certificate, Key, and Trust Services Programming Guide</a>, there is the following code:</p>
<pre><code>static const UInt8 publicKeyIdentifier[] = "com.apple.sample.publickey\0";
static const UInt8 privateKeyIdentifier[] = "com.apple.sample.privatekey\0";
</code></pre>
<p>I have an <code>NSString</code> that I would like to use as an identifier here and for the life of me I can't figure out how to get that into this data structure. Searching through Google has been fruitless also. I looked at the <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSString%5FClass/Reference/NSString.html" rel="nofollow">NSString Class Reference</a> and looked at the <code>UTF8String</code> and <code>getCharacters</code> methods but I couldn't get the product into the structure.</p>
<p>What's the simple, easy trick I'm missing?</p>
http://stackoverflow.com/questions/792097/import-rsa-keys-to-iphone-keychain/1035984#10359840Answer by bbrown for Import RSA keys to iPhone keychain?bbrown2009-06-24T00:54:31Z2009-06-24T00:54:31Z<p>I'm not sure if the code in <a href="https://devforums.apple.com/message/34539#34539" rel="nofollow">this Apple developer forum thread</a> works, but it seems like a direct answer to your question.</p>
http://stackoverflow.com/questions/864331/adding-rsa-keys-to-the-iphone-keychain/1035438#10354380Answer by bbrown for Adding RSA keys to the iPhone keychainbbrown2009-06-23T21:46:00Z2009-06-23T21:46:00Z<p>Are you generating them on the iPhone? If so, <a href="http://lists.apple.com/archives/apple-cdsa/2009/May/msg00051.html" rel="nofollow">this message</a> plus the <a href="http://developer.apple.com/documentation/security/conceptual/CertKeyTrustProgGuide/iPhone%5FTasks/iPhone%5FTasks.html#//apple%5Fref/doc/uid/TP40001358-CH208-SW9" rel="nofollow">example code</a> in the Certificate, Key, and Trust Services Programming Guide should steer you in the right direction. If not, I'm working on some code that should accomplish that--it's not quite there yet.</p>
http://stackoverflow.com/questions/190963/can-i-access-the-keychain-on-the-iphone/1020022#10200220Answer by bbrown for Can I access the keychain on the iPhone?bbrown2009-06-19T21:05:49Z2009-06-19T21:05:49Z<p>I really like <a href="http://github.com/ldandersen/scifihifi-iphone/tree/master" rel="nofollow">Buzz Anderson's Keychain abstraction layer</a> and I eagerly await <a href="http://mooseyard.com/projects/MYCrypto/" rel="nofollow">Jens Alfke's MYCrypto</a> to reach a usable state. The latter does a competent job of allowing use on Mac OS X and the iPhone using the same code, though its features only mimic a small subset of the Keychain's.</p>
http://stackoverflow.com/questions/544463/how-would-you-keep-secret-data-secret-in-an-iphone-application/1004541#10045412Answer by bbrown for How would you keep secret data secret in an iPhone application? bbrown2009-06-17T00:25:57Z2009-06-17T00:25:57Z<p>If you can bear to be iPhone OS 3.0-only, you may want to look at push notifications. I can't go into the specifics, but you can deliver a payload to Apple's servers along with the notification itself. When they accept the alert (or if your app is running), then some part of your code is called and the keychain item is stored. At this point, that is the only route to securely storing a secret on an iPhone that I can think of.</p>
http://stackoverflow.com/questions/941604/setting-uiimage-dimensions-on-uitableviewcell-image/941963#9419633Answer by bbrown for Setting UIImage dimensions on UITableViewCell imagebbrown2009-06-02T21:15:42Z2009-06-02T21:15:42Z<p>Here's what user "bcd" over at the official forums <a href="https://devforums.apple.com/message/75921#75921" rel="nofollow">posted</a> that ended up solving the problem (with a slight modification by myself to make it static for inclusion into a set of utility methods):</p>
<pre><code>+ (UIImage *)scale:(UIImage *)image toSize:(CGSize)size
{
UIGraphicsBeginImageContext(size);
[image drawInRect:CGRectMake(0, 0, size.width, size.height)];
UIImage *scaledImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return scaledImage;
}
</code></pre>
http://stackoverflow.com/questions/941604/setting-uiimage-dimensions-on-uitableviewcell-image0Setting UIImage dimensions on UITableViewCell imagebbrown2009-06-02T20:04:17Z2009-06-02T21:15:42Z
<p>I've got a standard <code>UITableViewCell</code> where I'm using the text and image properties to display a <code>favicon.ico</code> and a label. For the most part, this works really well since <code>UIImage</code> supports the ICO format. However, some sites (like <a href="http://www.amazon.com/favicon.ico" rel="nofollow">Amazon.com</a> say) have <code>favicon.ico</code>s that make use of the ICO format's ability to store multiple sizes in the same file. Amazon stores four different sizes, all the way up to 48x48.</p>
<p>This results in most images being 16x16 except for a few that come in at 32x32 or 48x48 and make everything look terrible. I have searched here, the official forum, the documentation, and elsewhere without success. I have tried everything that I could think of to constrain the image size. The only thing that worked was an undocumented method, which I'm not about to use. This is my first app and my first experience with Cocoa (came from C#).</p>
<p>In case I wasn't clear in what I'm looking for, ideally the advice would center around setting the dimensions of the <code>UIImage</code> so that the 48x48 version would scale down to 16x16 or a method to tell <code>UIImage</code> to use the 16x16 version present in the ICO file. I don't necessarily need code: just a suggestion of an approach would do me fine.</p>
<p>Does anyone have any suggestions? (I asked in the official forum <a href="https://devforums.apple.com/message/75874#75874" rel="nofollow">as well</a> because I've sunk more than a day into this already. If a solution is posted there, I'll put it here as well.)</p>
http://stackoverflow.com/questions/215718/how-do-i-reset-revert-a-specific-file-to-a-specific-revision-using-git/917126#9171263Answer by bbrown for How do I reset/revert a specific file to a specific revision using Git?bbrown2009-05-27T17:52:22Z2009-05-27T17:52:22Z<p>I had the same issue just now and I found <a href="http://stackoverflow.com/questions/725749/how-would-you-go-about-reverting-a-single-file-to-previous-commit-state-using-git/727725#727725">this answer</a> easiest to understand (<code>commit-ref</code> is the SHA value of the change in the log you want to go back to):</p>
<pre><code>git checkout [commit-ref] [filename]
</code></pre>
<p>This will put that old version in your working directory and from there you can commit it if you want.</p>
http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/890625#8906251Answer by bbrown for What are best practices that you use when writing Objective-C and Cocoa?bbrown2009-05-20T22:46:02Z2009-05-20T22:46:02Z<p>The Apple-provided samples I saw treated the App delegate as a global data store, a data manager of sorts. That's wrongheaded. Create a singleton and maybe instantiate it in the App delegate, but stay away from using the App delegate as anything more than application-level event handling. I heartily second the recommendations in <a href="http://cocoawithlove.com/2008/11/singletons-appdelegates-and-top-level.html" rel="nofollow">this blog entry</a>. <a href="http://stackoverflow.com/questions/338734/iphone-proper-usage-of-application-delegate">This thread</a> tipped me off.</p>
http://stackoverflow.com/questions/371638/asynchronous-vs-synchronous-vs-threading-in-an-iphone-app/890228#8902282Answer by bbrown for Asynchronous vs Synchronous vs Threading in an iPhone Appbbrown2009-05-20T20:59:41Z2009-05-20T20:59:41Z<p>An official response is that you should <a href="https://devforums.apple.com/message/14845#14845" rel="nofollow">almost always go asynchronous</a> and that <a href="https://devforums.apple.com/message/37677#37677" rel="nofollow">synchronous is bad</a>. I found <a href="http://allseeing-i.com/ASIHTTPRequest/" rel="nofollow">ASIHTTPRequest</a> makes asynchronous requests easy-peasy.</p>
http://stackoverflow.com/questions/812243/problem-using-tel-url-to-initiate-a-call/855769#8557691Answer by bbrown for problem using tel: URL to initiate a callbbrown2009-05-13T02:20:59Z2009-05-13T02:20:59Z<p>I just ran into this when trying to add a "Call" button to a <code>UIAlertView</code>. I had the following code to handle the call:</p>
<pre><code>- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
if (buttonIndex != 0)
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:1-602-555-1212"]];
}
}
</code></pre>
<p>It wouldn't open anything, just like you. I even tried a regular <code>http</code> URL. It turned out I had forgotten to set the <code>delegate</code> to <code>self</code>. That's probably your problem also.</p>
http://stackoverflow.com/questions/846286/atomic-asynchronous-http-file-post-with-sensible-feedback/851267#8512671Answer by bbrown for Atomic, asynchronous HTTP file POST with sensible feedback?bbrown2009-05-12T05:30:49Z2009-05-12T05:30:49Z<p>You may want to look at the <a href="http://allseeing-i.com/ASIHTTPRequest/How-to-use" rel="nofollow">ASIHTTPRequest</a> framework. I haven't used it for uploading but it looks like it has more feedback and the usage is pretty straightforward.</p>
http://stackoverflow.com/questions/778611/how-do-you-avoid-redundancy-in-documentation-comments/800043#8000430Answer by bbrown for How do you avoid redundancy in documentation comments?bbrown2009-04-28T22:09:21Z2009-04-28T22:09:21Z<p>You can make it useful:</p>
<pre><code>/// <summary>
/// Gets the user's personal information.
/// </summary>
/// <remarks>
/// We need this data transfer object in order to bridge Backend.SubsystemA
/// and Backend.SubsystemB. The standard <see cref="PersonalInfo"/> won't
/// work.
/// </remarks>
/// <param name="userId">Integer representing the user's ID.</param>
/// <returns>
/// <see cref="PersonalInfoDTO"/> representing the user, or <c>null</c>
/// if not available.
/// </returns>
public PersonalInfoDTO GetPersonalInfoDTO(int userId) {...}
</code></pre>
<p>For me, <code>summary</code> is the high-level "what is the purpose of this method" information, <code>remarks</code> is for further explanation, and <code>see</code> is where you can make it easy to move around your documentation. Each of those adds value.</p>
<p>I actually love documentation comments thanks to <a href="http://haacked.com/archive/2006/07/19/ResharperCanPreviewXMLCommentsAsHTML.aspx" rel="nofollow">ReSharper</a>. I've re-mapped the QuickDoc command to <code>CTRL+SHIFT+Q</code>.</p>
http://stackoverflow.com/questions/730076/using-class-as-key-in-nsdictionary/782735#7827351Answer by bbrown for Using class as key in NSDictionary.bbrown2009-04-23T17:18:51Z2009-04-23T17:18:51Z<p>I just had a similar situation crop up with the exact same error message:</p>
<pre><code>[tempDictionary setObject:someDictionary forKey:someClass];
</code></pre>
<p>All I did was implement the <code>NSCopying</code> protocol in <code>someClass</code>:</p>
<pre><code>- (id)copyWithZone:(NSZone *)zone
{
id copy = [[[self class] allocWithZone:zone] init];
[copy setId:[self id]];
[copy setTitle:[self title]];
return copy;
}
</code></pre>
<p>I think what was happening was that a copy of <code>someClass</code> was being made in order to be used as the key, but since my object didn't know how to copy itself (deriving from <code>NSObject</code> it didn't have a <code>copyWithZone</code> in the superclass) it balked.</p>
<p>One thing I've found with my approach is that it's use an object as a key. Unless I already have the object instantiated, I'm constantly calling <code>allKeys</code> or just otherwise enumerating over the dictionary.</p>
<p>[After writing this, I see that you want to store the class as such as the key. I'm leaving this out there because I would have saved a lot of time if I had found my answer when I was searching SO. I didn't find anything like this then.]</p>
http://stackoverflow.com/questions/727551/design-ideas-for-serving-up-high-frequency-data/727582#7275820Answer by bbrown for design ideas for serving up high-frequency databbrown2009-04-07T21:03:33Z2009-04-07T21:03:33Z<p>I'm not sure why you're down on a database for this. I've done real-time statistics on tables with 10s of millions of rows. Further, you could batch up the readings periodically to turn hundreds of thousands of rows into hundreds of rows of compiled data--depending on your needs obviously.</p>
<p>As for in-memory persistence and key-value pair access, you may want to look at <a href="http://groups.google.com/group/memcachedb/browse%5Fthread/thread/f5456f51f3df3d8d" rel="nofollow">memcachedb</a>. It's based on memcached and offers excellent performance.</p>
<p>Also, after thinking about it more, you could easily run the thing as a hashtable in memory and then periodically serialize it out to the file system for persistence.</p>
http://stackoverflow.com/questions/727516/what-does-the-unary-plus-operator-do/727557#7275578Answer by bbrown for What does the unary plus operator do?bbrown2009-04-07T20:56:28Z2009-04-07T20:56:28Z<p>I've seen it used for clarity, to emphasize the positive value as distinct from a negative value:</p>
<pre><code>shift(+1);
shift(-1);
</code></pre>
<p>But that's a pretty weak use. The answer is definitely overloading.</p>
http://stackoverflow.com/questions/596271/deserialization-problem-with-datacontractjsonserializer1Deserialization problem with DataContractJsonSerializerbbrown2009-02-27T19:32:31Z2009-03-01T11:24:57Z
<p>I've got the following piece of JSON:</p>
<pre><code>[{
"name": "numToRetrieve",
"value": "3",
"label": "Number of items to retrieve:",
"items": {
"1": "1",
"3": "3",
"5": "5"
},
"rules": {
"range": "1-2"
}
},
{
"name": "showFoo",
"value": "on",
"label": "Show foo?"
},
{
"name": "title",
"value": "Foo",
"label": "Foo:"
}]
</code></pre>
<p>All in one line version (suitable for a string literal):</p>
<pre><code>[{\"name\":\"numToRetrieve\",\"value\":\"3\",\"label\":\"Number of items to retrieve:\",\"items\":{\"1\":\"1\",\"3\":\"3\",\"5\":\"5\"},\"rules\":{\"range\":\"1-2\"}},{\"name\":\"showFoo\",\"value\":\"on\",\"label\":\"Show foo?\"},{\"name\":\"title\",\"value\":\"Foo\",\"label\":\"Foo:\"}]
</code></pre>
<p>In the above example, <code>name</code>, <code>value</code>, and <code>label</code> are required but <code>items</code> and <code>rules</code> are optional.</p>
<p>Here's the class I'm trying to deserialize into:</p>
<pre><code>using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
namespace foofoo
{
[DataContract]
public sealed class FooDef
{
[DataMember(Name = "name", IsRequired = true)]
public string Name { get; set; }
[DataMember(Name = "value", IsRequired = true)]
public string Value { get; set; }
[DataMember(Name = "label", IsRequired = true)]
public string Label { get; set; }
[DataMember(Name = "items", IsRequired = false)]
public Dictionary<string, string> Items { get; set; }
[DataMember(Name = "rules", IsRequired = false)]
public Dictionary<string, string> Rules { get; set; }
}
}
</code></pre>
<p>Here's the code I use to deserialize:</p>
<pre><code>var json = new DataContractJsonSerializer(typeof(List<FooDef>));
var bar = "[{\"name\":\"numToRetrieve\",\"value\":\"3\",\"label\":\"Number of items to retrieve:\",\"items\":{\"1\":\"1\",\"3\":\"3\",\"5\":\"5\"},\"rules\":{\"range\":\"1-2\"}},{\"name\":\"showFoo\",\"value\":\"on\",\"label\":\"Show foo?\"},{\"name\":\"title\",\"value\":\"Foo\",\"label\":\"Foo:\"}]";
var stream = new MemoryStream(Encoding.UTF8.GetBytes(bar));
var foo = json.ReadObject(stream);
stream.Close();
</code></pre>
<p>Everything goes reasonably well except that <code>items</code> and <code>rules</code> are empty for the first <code>FooDef</code> pass. I have tried everything under the sun to try and get them populated: custom classes, <code>NameValueCollection</code>, <code>KeyValuePair<string, string></code>, <code>List</code> of both of the latter, and every other collection that seemed to apply. [EDIT: I forgot to try <code>Hashtable</code>, which seemed like an obvious candidate. Didn't work.]</p>
<p>The problem, as I see it, is that the key piece under <code>items</code> and <code>rules</code> is open-ended. That is, it's not always going to be called <code>range</code> or <code>3</code>. Any advice or ideas?</p>
http://stackoverflow.com/questions/597609/which-add-in-for-visual-studio-do-you-often-use/597629#5976290Answer by bbrown for Which add-in for Visual Studio do you often use?bbrown2009-02-28T06:24:18Z2009-02-28T06:24:18Z<p><a href="http://www.roland-weigelt.de/ghostdoc/" rel="nofollow">GhostDoc</a> because I love writing documentation comments. I'll second (and third and fourth) ReSharper.</p>
http://stackoverflow.com/questions/475077/developer-hiring-policies-and-practices/597156#5971560Answer by bbrown for Developer hiring policies and practicesbbrown2009-02-28T00:09:40Z2009-02-28T00:09:40Z<p>I've interviewed plenty of people. Every time we've settled, it's come back to bite us so I am extremely hesitant to rush into a relationship like that.</p>
<p>jcollum's <a href="#475125" rel="nofollow">answer</a> above is excellent. (I don't have the rep to comment or I'd do so there.) As for how to go about selecting for that practically, I think that challenging the interviewee with something demonstrably false would go a long way to seeing how they react. For example, if the person has to write some code, pick a piece of it to criticize but attack it for the wrong reasons. Does the person get defensive? Is he diplomatic? Is a vein popping in his head? You can explain or gracefully back down pretty quickly but that first flash will provide great insight.</p>
http://stackoverflow.com/questions/544463/how-would-you-keep-secret-data-secret-in-an-iphone-application/1004541#1004541Comment by bbrown on How would you keep secret data secret in an iPhone application? bbrown2009-11-10T16:46:08Z2009-11-10T16:46:08ZWhat you are saying would be entirely accurate were it not for the fact that the notification sent between Apple and the iPhone is over a secure connection. So it <i>is</i> encrypted. Look in the Push Notification Programming Guide...http://stackoverflow.com/questions/1089327/what-programming-practice-that-you-once-liked-have-you-since-changed-your-mind-ab/1093597#1093597Comment by bbrown on What programming practice that you once liked have you since changed your mind about?bbrown2009-07-31T17:42:35Z2009-07-31T17:42:35ZThat's a fair tradeoff.http://stackoverflow.com/questions/511268/whats-the-best-way-to-save-user-data-emailpassword-into-your-app/511410#511410Comment by bbrown on What's the best way to save User data (email+password) into your app?bbrown2009-07-30T04:56:37Z2009-07-30T04:56:37ZJust be aware that the Keychain uses Triple-DES, in case that matters.http://stackoverflow.com/questions/353361/how-secure-are-the-app-settings-on-the-iphone/353457#353457Comment by bbrown on How secure are the app settings on the iPhone?bbrown2009-07-30T04:55:37Z2009-07-30T04:55:37ZJust be aware that the Keychain is encrypted using Triple-DES.http://stackoverflow.com/questions/1189518/clang-error-on-potential-null-dereference/1189606#1189606Comment by bbrown on Clang Error on "Potential null dereference."bbrown2009-07-27T22:38:29Z2009-07-27T22:38:29ZIf I could've marked two answers, I would have. Thanks for explaining the context in which it might happen!http://stackoverflow.com/questions/1189518/clang-error-on-potential-null-dereference/1189570#1189570Comment by bbrown on Clang Error on "Potential null dereference."bbrown2009-07-27T22:37:53Z2009-07-27T22:37:53ZUgh, I can't believe I missed that. Thanks!http://stackoverflow.com/questions/1078001/clang-giving-errors-complaining-about-defective-header-file-uilocalizedindexedcol/1096983#1096983Comment by bbrown on CLANG giving errors complaining about defective header file UILocalizedIndexedCollation.hbbrown2009-07-21T21:24:03Z2009-07-21T21:24:03ZThis fixed everything for me. Thanks!http://stackoverflow.com/questions/1155267/iphone-simulator-build-errors-when-using-synthesized-instance-variables/1155296#1155296Comment by bbrown on iPhone Simulator: build errors when using synthesized instance variablesbbrown2009-07-20T20:14:41Z2009-07-20T20:14:41ZI missed a part of your question. Sorry.http://stackoverflow.com/questions/1133724/having-trouble-decrypting-in-c-something-encrypted-on-iphone-using-rsa/1145644#1145644Comment by bbrown on Having trouble decrypting in C# something encrypted on iPhone using RSAbbrown2009-07-20T20:13:25Z2009-07-20T20:13:25ZI'm giving you the answer credit because you urged a fresh start.http://stackoverflow.com/questions/1133724/having-trouble-decrypting-in-c-something-encrypted-on-iphone-using-rsa/1152751#1152751Comment by bbrown on Having trouble decrypting in C# something encrypted on iPhone using RSAbbrown2009-07-20T19:08:44Z2009-07-20T19:08:44ZAs Jon Grant suggested, I will inspect the public key bits themselves but the fact is that the iPhone is reading a X509 certificate bundled with the app (not generated on the phone itself) and I find it incredible that the phone would read the public key in differently. I'll settle this by checking the bytes, but I'm going to be awfully surprised if that's the case.http://stackoverflow.com/questions/1155267/iphone-simulator-build-errors-when-using-synthesized-instance-variables/1155296#1155296Comment by bbrown on iPhone Simulator: build errors when using synthesized instance variablesbbrown2009-07-20T19:03:43Z2009-07-20T19:03:43ZThere could be something else at work here (the <i>compatible ivar</i> part of the error message is suggestive), so a snippet would do wonders for answering your question.http://stackoverflow.com/questions/1133724/having-trouble-decrypting-in-c-something-encrypted-on-iphone-using-rsa/1145644#1145644Comment by bbrown on Having trouble decrypting in C# something encrypted on iPhone using RSAbbrown2009-07-17T22:03:12Z2009-07-17T22:03:12Zbut I'm pretty sure that I shouldn't be surprised that the same public key might generate different output for the same input on different passes. That is the purpose of the PKCS#1 padding, something an Apple engineer confirmed: <a href="http://lists.apple.com/archives/apple-cdsa/2009/Jul/msg00032.html" rel="nofollow">lists.apple.com/archives/apple-cdsa/…</a>http://stackoverflow.com/questions/1133724/having-trouble-decrypting-in-c-something-encrypted-on-iphone-using-rsa/1145644#1145644Comment by bbrown on Having trouble decrypting in C# something encrypted on iPhone using RSAbbrown2009-07-17T22:02:10Z2009-07-17T22:02:10ZThanks for your response! I can find nowhere in the .NET or Cocoa libraries where you can set an IV for RSA encryption or decryption. I thought IV applied only to symmetric algorithms.
I too would not presume to think that either 1 or 2 are possible, but I also cannot fathom that an X509 certificate's public key would be interpreted differently on the two platforms. But I took the cert from the phone and plopped it into the server and it was successful there so I don't know what to think.
I will look into the public key details within each platform to make sure that they're the same, <cont>http://stackoverflow.com/questions/1133724/having-trouble-decrypting-in-c-something-encrypted-on-iphone-using-rsaComment by bbrown on Having trouble decrypting in C# something encrypted on iPhone using RSAbbrown2009-07-17T20:31:21Z2009-07-17T20:31:21ZTime for a bounty!http://stackoverflow.com/questions/1133724/having-trouble-decrypting-in-c-something-encrypted-on-iphone-using-rsa/1144557#1144557Comment by bbrown on Having trouble decrypting in C# something encrypted on iPhone using RSAbbrown2009-07-17T20:28:47Z2009-07-17T20:28:47Z That was my bad. In the code sample above, there's a private instance variable called "clientCert" that is of type X509Certificate2. I failed to include it in the listing. Sorry about that...